Re: Should GtkWidget::draw be RUN_LAST?



>  Two separate questions - should GtkWidget::draw be RUN_LAST,
>  and can we change it to that at this point.
[snippity snip]

This sounds like a good idea.

>  (Having a real virtualized paint method be used throughout
>   GTK+ would be big improvement actually, and has been
>   discussed for a long time. But that certainly isn't a 
>   pre-1.2 change)

What would this be used for?  Something like 

	widget::paint()
	{
		/* spew random garbage to the display */
	}

	widget::draw()
	{
		widget::paint();
	}

	widget::expose()
	{
		widget::paint();
	}

If that is the case, why do we need the three methods? :-)

  Federico



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]