Loic schrieb:

> I am in particular interested in a true full screen mode (without the
> startup bar under windows) which seems to be possible only in
> FLTK2.0.


For me the most easy solution works - resizing the window:

#include <windows.h>
pWindow->resize(0, 0,
        GetSystemMetrics(SM_CXSCREEN),
        GetSystemMetrics(SM_CYSCREEN));

I'm using GetSystemMetrics, because Fl::w()/ Fl::h() return the 
available desktop space without startup bar, but I want to cover the 
whole screen.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to