Re: [PHP-GTK] PHP GTK and Glade questions

[email protected] (Jake Cobb) Tue, 15 Apr 2008 10:41:41 -0400
Newsgroups php.gtk.general
Message-ID <[email protected]>
Anant Narayanan wrote:
>> 2) In my application there is a window where program settings will
>> be. Is there some kind of window which has no maximize and minimize
>> icons (only close icon) in the upper right corner? I would like to
>> window does not appear in windows status bar. I tried to set
>> "skip_taskbar_hint" and "skip_pager_hint" properties to true, but
>> window still appears in the status bar. Why?
>
> I think creating a GtkDialog and setting it as modal will not make it
> appear in the status bar, but I'm not sure :)
That is correct at least in Windows XP and KDE 3.5 (on X11, Linux). 
Don't forget to set your main window as the transient parent or the
modal dialog can get lost behind it while blocking most input to it:

$this->dlgSett->set_transient_for($this->wndMain);


-Jake Cobb