Re: gtk_statusbar!

2006-06-30 Thread Fernando ApesteguĂ­a
As I previously said, you should call to gtk_main_iteration after you do a GUI change (update the gtk_statusbar, update a label, whatever...). If not, the GUI will be updated when the control is out of the callback (and you call to real_operation() from a callback) Try with the links I posted

Re: gtk_statusbar!

2006-06-29 Thread Fernando ApesteguĂ­a
That's because you are calling real_opration() from the button callback. So the event loop is not running and it can't update your GUI. You should call gtk_main_iteration while gtk_events_pending==true more at http://developer.gnome.org/doc/API/2.0/gtk/gtk-General.html#gtk-events-pending and

Re: gtk_statusbar

2006-05-09 Thread Iago Rubio
On Mon, 2006-05-08 at 16:48 +0200, [EMAIL PROTECTED] wrote: Hi!! I need to create a window with an status bar and an open dialog. Each time i select a file,i want to write into the status bar this two sentences: Opening filename... and then after the processing time File open How can i