Re: how do you create popup window using glade3

2009-05-27 Thread frank zhu
Thanks Tadej , it's useful. Now I created a popup window and connected to the main window. I want to hide the popup window when the 'OK' button was clicked and I implement it using code g_signal_connect_swapped ( ... ); however, this way is a hybrid solution. Is there anyway to do it in glade? Th

Re: how do you create popup window using glade3

2009-05-19 Thread Tadej Borovšak
Hello. Both manually creating a dialog and using glade to do it are valid choices in this case. What you'll do depends on the complexity of the dialog (complex layout can be easier to create using glade). I wrote a simplistic blog post about dialogs in GTK+ which you may find useful. It displays

how do you create popup window using glade3

2009-05-19 Thread frank zhu
hi, I am new to GTK+ development and I used glade3 to create my application window which contains a menu. If a menu item is activated, I want to popup another window. I think the easiest way is to write a callback function to create it in C code, but is this the common way? or is it possible to cr