[EMAIL PROTECTED] wrote:
> 
>         What are the signals that will be emitted for a pixmap widget
> when the window is shaded and then unshaded.
> 

You'll want something like this:
        gtk_signal_connect(GTK_OBJECT(YourDrawingArea), "expose_event",
(GtkSignalFunc)YourExposeEvent, NULL);

and don't forget about:
        gtk_signal_connect(GTK_OBJECT(YourDrawingArea),
"configure_event", (GtkSignalFunc)YourConfigureEvent, NULL);



-- 

Rick L. Vinyard, Jr.               http://www.cs.nmsu.edu/~rvinyard

_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to