Even better fullscreen code on OS X that resize a window to fit a single screen in multi screen setups. It still will not position over the main menu bar.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4668 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2005-11-28 15:54:48 +00:00
parent 8cd25c4ecb
commit 3cae272e1f

View File

@ -69,8 +69,15 @@ void Fl_Window::fullscreen() {
border(0);
#endif
#ifdef __APPLE__
if (x()==Fl::x()) x(x()+1); // force it to call ResizeWindow()
resize(Fl::x(),Fl::y(),Fl::w(),Fl::h());
int sx, sy, sw, sh;
Fl::screen_xywh(sx, sy, sw, sh, x()+w()/2, y()+h()/2);
// if we are on the main screen, we will leave the system menu bar unobstructed
if (Fl::x()>=sx && Fl::y()>=sy && Fl::x()+Fl::w()<=sx+sw && Fl::y()+Fl::h()<=sy+sh) {
sx = Fl::x(); sy = Fl::y();
sw = Fl::w(); sh = Fl::h();
}
if (x()==sx) x(sx+1); // make sure that we actually execute the resize
resize(sx, sy, sw, sh);
#else
if (!x()) x(1); // force it to call XResizeWindow()
resize(0,0,Fl::w(),Fl::h());