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
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);
...
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
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