wondow always on top level..

2004-12-10 Thread Antônio Gomes
Hello all. How can I create an gtk_window and keep it always on top level: the parent window will be active again only when the user close new child window created .. like *window = gtk_window_new(GTK_WINDOW_TOPLEVEL); but always with focus in (until close it) thanks in advance -- Antôn

Re: wondow always on top level..

2004-12-10 Thread Arnaldo de Moraes Pereira
Hi Antonio, I think you want the child window to be modal: gtk_window_set_modal (GTK_WINDOW (window), TRUE); Take care. On Fri, 10 Dec 2004 12:10:26 -0200 (BRST), Antônio Gomes <[EMAIL PROTECTED]> wrote: > Hello all. > > How can I create an gtk_window and keep it always on top level:

Re: wondow always on top level..

2004-12-10 Thread Sven Neumann
Hi, "Dermot McGahon" <[EMAIL PROTECTED]> writes: > How do you achieve always-on-top for a window which is the sole > window of an application? The application is a taskbar at the bottom > of the screen showing the time and other information. Not very nice but it should do the trick: gtk_window_s

Re: wondow always on top level..

2004-12-10 Thread Dermot McGahon
On Fri, 10 Dec 2004 14:07:21 -0200, Arnaldo de Moraes Pereira <[EMAIL PROTECTED]> wrote: How do you achieve always-on-top for a window which is the sole window of an application? The application is a taskbar at the bottom of the screen showing the time and other information. Dermot. -- Hi Anto