Re: gtk_widget_show() not showing window

2007-09-03 Thread G. Paul Ziemba
[By the way, the bug report in question is http://bugzilla.gnome.org/show_bug.cgi?id=467776 ] I wrote: >>> gtk_widget_show_all(window); >>> gtk_widget_hide(window); >>> gtk_widget_show(window); >>> >>> gtk_main(); > > This test program is a minimal set of code that demonstrates > t

Re: gtk_widget_show() not showing window

2007-09-02 Thread James Scott Jr
Paul, I am not sure if you got an answer, so here is my expectation - am I am no expert. GTK _show/_hide api have an impact on the expose or painting function of gtk widgets. This effect is a consolidation of area needing repaint as a result of many factors. Thus a _show_all. _hide, and _show

Re: gtk_widget_show() not showing window

2007-08-27 Thread G. Paul Ziemba
>On Mon, 2007-08-27 at 19:00 +, G. Paul Ziemba wrote: >> gtk_widget_show_all(window); >> gtk_widget_hide(window); >> gtk_widget_show(window); >> >> gtk_main(); [EMAIL PROTECTED] (James Scott Jr) writes: >Try this instead. The gtk_widget_show_all() then gtk_widget_hide()

Re: gtk_widget_show() not showing window

2007-08-27 Thread James Scott Jr
Try this instead. The gtk_widget_show_all() then gtk_widget_hide() then gtk_widget_show() is the cause of your problem; unless you were thinking the window should blink once before appearing. James, #include > > static void > button_clicked_cb(GtkButton *button, gpointer data) >

gtk_widget_show() not showing window

2007-08-27 Thread G. Paul Ziemba
Greetings, gtk_widget_show() does not seem to be operating the way I expect; could one of the experts please tell me if something is wrong with this code or if something is wrong with gtk? When I run this small bit of code, the window appears briefly and then disappears immediately. The program d