On 29.12.2008, at 02:54, Danny Parker wrote: > I've been looking into FLTK for a project a friend of mine and I are > working on and everything looks really good so far. However, I'm > using using Unbuntu Hardy Heron and I have problems with the Gnome > panels appearing over many fullscreen applications. > > This also appears to happen with the fullscreen demo in the FLTK > test folder. > > Does anyone know of a way around this when coding a fullscreen app > in FLTK?
The FLTK Fullscreen option is not meant to put the screen on the very top. For X11 (Ubuntu and other Linux/Unix OSs's), lifting the window on top over all other windows is a Window Manager function. You can send a request to the window manager to make your window the top-most, but it is up to the window manager to do it (or not). So, FLTK does not provide an "on top of everything" window, but you may be able to get one by adding a few X calls right after Fl_Window::show(). ---- http://robowerk.com/ _______________________________________________ fltk-dev mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-dev
