does any one know how to create a modal dialog that scrolls in from the top of the parent window (like the about window in glade 3.10). I'm using Glade 3.10 with python. I tried creating a dialog and a normal window, setting it's properties to modal and popup,... but that doesn't seem to do the trick, any ideas?

Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You have to set the dialog transient for the parent window.

link|improve this answer
Thanks for your reply, I tried setting the transient property of my dialog to my main window. Didn't work for me, however googling suggests that your solution is the right one, so i guess I'm doing something wrong. I created a gladefile, in which my main window resides. I also created a dialog inside this gladefile. I set the properties modal to yes for the dialog, window type to popup and "window transient for" to my main window. In a button click handler for my main window I call the dialog with show(). Dialog appears as a modal popup, but not with the scrolling effect; (I'm using gnome 3). – Tom Mayer Oct 27 '11 at 12:27
You may have to call the dialog with run(), I'm not sure. – ptomato Oct 27 '11 at 13:50
Same result, but then again, it should work they way you told me. Thanks for the answer. Guess it's misconfiguration on my side... – Tom Mayer Oct 27 '11 at 14:56
Are you sure you're compiling with gtk3? – ptomato Oct 27 '11 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.