Re: Popup window for alert

2009-03-18 Thread Jeffrey Barish
John Coppens wrote: > On Wed, 18 Mar 2009 16:55:35 -0600 > Jeffrey Barish wrote: > >> I would like a popup window with a black line on its border in which I >> can put a label to alert the user to a failure condition. A Dialog >> doesn't work because the appearance and disappearance of the wind

Re: Popup window for alert

2009-03-18 Thread Ardhan Madras
You can use GdkWindowTypeHint value to set window decoration, the gtk_window_set_type_hint(). If you want to the window is not deletable, use gtk_window_set_deletable(). For example: ... gtk_window_set_type_hint (window, GDK_WINDOW_TYPE_HINT_DIALOG); gtk_window_set_deletable (window, FALSE); ...

Re: Popup window for alert

2009-03-18 Thread John Coppens
On Wed, 18 Mar 2009 16:55:35 -0600 Jeffrey Barish wrote: > I would like a popup window with a black line on its border in which I > can put a label to alert the user to a failure condition. A Dialog > doesn't work because the appearance and disappearance of the window is > entirely under program

Re: popup window

2006-11-23 Thread Olexiy Avramchenko
On 11/23/06, sunzysjzri <[EMAIL PROTECTED]> wrote: > hi, guys > I write an application which has a button , when you click the button > popup a new window, i want to add a button in the popup window, which could > close the popup window. > when i run my application, gtk debuger said that t