Re: moving a window off screen

2006-12-20 Thread Niall Murphy
I want to have a window off screen and then slide it on as a notification. (hide will not do, nor will growing the window) In pygtk using the gtk.Window.move() method, i can move windows off screen with no problems. why only with gtk_window_move() does it not go off screen? thanks, niall On 12/

Re: moving a window off screen

2006-12-19 Thread Gian Mario Tagliaretti
2006/12/19, Niall Murphy <[EMAIL PROTECTED]>: > Could someone please tell me why this is? > Am i using the correct function or is the window manager stopping it or what? Most likely is the WM that takes care of always show your window. btw why you want to move the window offscreen? It is not suff

moving a window off screen

2006-12-19 Thread Niall Murphy
Hi all, I want to move a window off screen and then move it gradually onto the screen. When using the gtk_window_move() function with values greater than the current screen size the window will not move off-screen but remain with the full window visible. Could someone please tell me why this is?