1998-10-20 00:46:58 +04:00
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3.2.3 2002/01/01 15:11:31 easysw Exp $"
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Fullscreen window support for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// Copyright 1998-2002 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2000-06-06 01:21:24 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
// Turning the border on/off by changing the motif_wm_hints property
|
|
|
|
// works on Irix 4DWM. Does not appear to work for any other window
|
|
|
|
// manager. Fullscreen still works on some window managers (fvwm is one)
|
|
|
|
// because they allow the border to be placed off-screen.
|
|
|
|
|
|
|
|
// Unfortunatly most X window managers ignore changes to the border
|
|
|
|
// and refuse to position the border off-screen, so attempting to make
|
|
|
|
// the window full screen will lose the size of the border off the
|
|
|
|
// bottom and right.
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/x.H>
|
|
|
|
|
|
|
|
void Fl_Window::border(int b) {
|
|
|
|
if (b) {
|
|
|
|
if (border()) return;
|
|
|
|
clear_flag(FL_NOBORDER);
|
|
|
|
} else {
|
|
|
|
if (!border()) return;
|
|
|
|
set_flag(FL_NOBORDER);
|
|
|
|
}
|
|
|
|
#ifdef WIN32
|
|
|
|
// not yet implemented, but it's possible
|
|
|
|
// for full fullscreen we have to make the window topmost as well
|
2001-11-27 20:44:08 +03:00
|
|
|
#elif defined(__APPLE__)
|
2001-12-18 14:00:09 +03:00
|
|
|
//++ Matt: I have not looked into this yet
|
1998-10-06 22:21:25 +04:00
|
|
|
#else
|
|
|
|
if (shown()) Fl_X::i(this)->sendxjunk();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Window::fullscreen() {
|
1998-11-08 17:36:56 +03:00
|
|
|
#ifndef WIN32
|
|
|
|
//this would clobber the fake wm, since it relies on the border flags to
|
|
|
|
//determine its thickness
|
1998-10-06 22:21:25 +04:00
|
|
|
border(0);
|
1998-11-08 17:36:56 +03:00
|
|
|
#endif
|
1998-10-06 22:21:25 +04:00
|
|
|
if (!x()) x(1); // force it to call XResizeWindow()
|
|
|
|
resize(0,0,Fl::w(),Fl::h());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Window::fullscreen_off(int X,int Y,int W,int H) {
|
|
|
|
// this order produces less blinking on IRIX:
|
|
|
|
resize(X,Y,W,H);
|
1998-11-08 17:36:56 +03:00
|
|
|
#ifndef WIN32
|
1998-10-06 22:21:25 +04:00
|
|
|
border(1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// End of "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3.2.3 2002/01/01 15:11:31 easysw Exp $".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|