Re: [pygtk] Moving two windows at the same time

2008-12-04 Thread Daniel Hernández Bahr
AM (GMT-0500) Auto-Detected Subject: Re: [pygtk] Moving two windows at the same time Hi, When a window is moved it fires the "configure-event" signal (from gtk.Widget). You can connect to that signal and move your dialog to the window's new location. The downside is that "con

Re: [pygtk] Moving two windows at the same time

2008-12-04 Thread Walter Leibbrandt
Hi, When a window is moved it fires the "configure-event" signal (from gtk.Widget). You can connect to that signal and move your dialog to the window's new location. The downside is that "configure-event" isn't fired _while_ moving a window, only afterwards. http://pygtk.org/docs/pygtk/class-g

[pygtk] Moving two windows at the same time

2008-12-03 Thread Daniel Hernández Bahr
Hello everybody .. Is there any way in PyGtk to move two windows at the same time? The thing is, having a window and a modal dialog transient for that window, how can i (the program) move the dialog if the user moves de window, like binding them together .. ?? Cheers!! -- Daniel Hernánd