> > BookBrowser::BookBrowser(int x, int y, int w, int h, const char*
> > title):Fl_Double_Window(x,y,w,h,title){
>
>       set_non_modal();
>
> > }
> > Then some other class (also a subclass of Fl_Double_Window) which
> > includes the headers bookbrowser.h and pricebrowser.h will instatiate
> > BookBrowser and PriceBrowser, but then once the window is shown/drawn
> > a new Windows OS taskbar item appears.
>
> Maybe set_non_modal() is what you want - it opens a subwindow but
> doesn't block event delivery like a "modal" window (e.g. used for input
> dialogs, which need to block the rest of the software, until input is
> done). You can open several non_modal windows and only the parent window
> will appear as taskbar item.

Exactly what I was looking for, thank you very much!
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to