Pixmap for a background

2006-01-13 Thread
Hello, I've been trying to set the background of a Notebook to a pixmap. I have been able to successfully accomplish this with a color by putting an eventbox as the background and calling gtk_widget_modify_bg, however, I can't find anything comparable for pixmaps. I've also tried this: GdkB

Re: Forcing first exposure

2006-01-13 Thread John Cupitt
On 1/13/06, Gravis Zero <[EMAIL PROTECTED]> wrote: > not exposed until after you load the file. needless to say i would like > to be able to load the image into the drawing area when loaded instead > of when it is exposed as it make the app look slugish or frozen. i have I would load the image i

Forcing first exposure

2006-01-13 Thread Gravis Zero
the (lengthy) bottom line- so i ask, how can force an expose signal to a widget(drawingarea) that has never been exposed? ive tried various things they mention in documentation like invalidating a region or sending "expose_event" via g_signal_emit_by_name() which all fail. the cl