Re: updating appearance of a dialog without gtk_dialog_run?

2005-03-19 Thread Ben Johnson
On Sat, Mar 19, 2005 at 11:42:23AM +0100, Jean Br?fort wrote: ... > gtk_main_loop returns. I occasionnaly use: > while (gtk_events_pending ()) > gtk_main_loop (); perfect. :) Thank you. ___ gtk-list mailing list gtk-list@gnome.org http://mail.gn

Re: updating appearance of a dialog without gtk_dialog_run?

2005-03-19 Thread Jean Bréfort
Le samedi 19 mars 2005 Ã 02:41 -0800, Ben Johnson a Ãcrit : > On Sat, Mar 19, 2005 at 10:56:42AM +0100, Jean Br?fort wrote: > ... > > call gtk_main_loop from your blocking operation. > > > > if I call gtk_main_loop() from within my blocking function, won't > gtk_main_loop() block and stop my func

Re: updating appearance of a dialog without gtk_dialog_run?

2005-03-19 Thread Ben Johnson
On Sat, Mar 19, 2005 at 10:56:42AM +0100, Jean Br?fort wrote: ... > call gtk_main_loop from your blocking operation. > if I call gtk_main_loop() from within my blocking function, won't gtk_main_loop() block and stop my function from doing anything useful? I'll have to make gtk_main_loop() return

Re: updating appearance of a dialog without gtk_dialog_run?

2005-03-19 Thread Jean Bréfort
Le samedi 19 mars 2005 Ã 01:51 -0800, Ben Johnson a Ãcrit : > Hey. > > I'm using a dialog to initiate a network action that blocks for a long > time. I want to update a label on the dialog immediately prior to > getting started with the network crap. normally I just update a label > with the gtk

updating appearance of a dialog without gtk_dialog_run?

2005-03-19 Thread Ben Johnson
Hey. I'm using a dialog to initiate a network action that blocks for a long time. I want to update a label on the dialog immediately prior to getting started with the network crap. normally I just update a label with the gtk_label_set_markup() function and see it happen on the screen. But, when