Hi All,

I've been relatively embarrassed to ask this question for some time but it's 
gotten to the point my program can't go any further without addressing it.

I have a bunch of classes, each are a subclass of Fl_Double_Window

i.e. Say the two below for argument sake.

BookBrowser::BookBrowser(int x, int y, int w, int h, const char* 
title):Fl_Double_Window(x,y,w,h,title){

/// Code

}

PriceBrowser::PriceBrowser(int x, int y, int w, int h, const char* 
title):Fl_Double_Window(x,y,w,h,title){

/// Code

}

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.

Naturally this gets annoying fast if windows spawn multiple windows, suddenly 
the users taskbar is cluttered on their screen.

I am sure I am doing something very wrong and need to be corrected :)

(Aside: I raked through the fltk examples folder and found a few example 
programs that created new windows, but they also created new taskbar items.)


_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to