1999-02-03 11:43:35 +03:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1999-02-03 11:43:35 +03:00
|
|
|
//
|
|
|
|
// Grab/release code for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2010-11-29 00:06:39 +03:00
|
|
|
// Copyright 1998-2010 by Bill Spitzak and others.
|
1999-02-03 11:43:35 +03: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.
|
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1999-02-03 11:43:35 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/x.H>
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// "Grab" is done while menu systems are up. This has several effects:
|
|
|
|
// Events are all sent to the "grab window", which does not even
|
2001-11-22 18:35:02 +03:00
|
|
|
// have to be displayed (and in the case of Fl_Menu.cxx it isn't).
|
1999-02-03 11:43:35 +03:00
|
|
|
// The system is also told to "grab" events and send them to this app.
|
|
|
|
// This also modifies how Fl_Window::show() works, on X it turns on
|
|
|
|
// override_redirect, it does similar things on WIN32.
|
|
|
|
|
1999-04-10 12:09:39 +04:00
|
|
|
extern void fl_fix_focus(); // in Fl.cxx
|
1999-02-03 11:43:35 +03:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
// We have to keep track of whether we have captured the mouse, since
|
|
|
|
// MSWindows shows little respect for this... Grep for fl_capture to
|
|
|
|
// see where and how this is used.
|
|
|
|
extern HWND fl_capture;
|
|
|
|
#endif
|
|
|
|
|
2001-12-20 08:27:14 +03:00
|
|
|
#ifdef __APPLE__
|
2009-12-07 01:21:55 +03:00
|
|
|
extern void MACsetkeywindow(void *nsw);
|
|
|
|
extern void *fl_capture;
|
2001-12-20 08:27:14 +03:00
|
|
|
#endif
|
|
|
|
|
2002-08-09 07:17:30 +04:00
|
|
|
void Fl::grab(Fl_Window* win) {
|
|
|
|
if (win) {
|
1999-02-03 11:43:35 +03:00
|
|
|
if (!grab_) {
|
|
|
|
#ifdef WIN32
|
|
|
|
SetActiveWindow(fl_capture = fl_xid(first_window()));
|
|
|
|
SetCapture(fl_capture);
|
2001-11-27 20:44:08 +03:00
|
|
|
#elif defined(__APPLE__)
|
2010-03-29 14:35:00 +04:00
|
|
|
fl_capture = Fl_X::i(first_window())->xid;
|
|
|
|
MACsetkeywindow(fl_capture);
|
1999-02-03 11:43:35 +03:00
|
|
|
#else
|
|
|
|
XGrabPointer(fl_display,
|
|
|
|
fl_xid(first_window()),
|
|
|
|
1,
|
|
|
|
ButtonPressMask|ButtonReleaseMask|
|
|
|
|
ButtonMotionMask|PointerMotionMask,
|
|
|
|
GrabModeAsync,
|
|
|
|
GrabModeAsync,
|
|
|
|
None,
|
|
|
|
0,
|
|
|
|
fl_event_time);
|
|
|
|
XGrabKeyboard(fl_display,
|
|
|
|
fl_xid(first_window()),
|
|
|
|
1,
|
|
|
|
GrabModeAsync,
|
|
|
|
GrabModeAsync,
|
|
|
|
fl_event_time);
|
|
|
|
#endif
|
|
|
|
}
|
2002-08-09 07:17:30 +04:00
|
|
|
grab_ = win;
|
1999-02-03 11:43:35 +03:00
|
|
|
} else {
|
|
|
|
if (grab_) {
|
|
|
|
#ifdef WIN32
|
|
|
|
fl_capture = 0;
|
|
|
|
ReleaseCapture();
|
2001-11-27 20:44:08 +03:00
|
|
|
#elif defined(__APPLE__)
|
2001-12-20 08:27:14 +03:00
|
|
|
fl_capture = 0;
|
1999-02-03 11:43:35 +03:00
|
|
|
#else
|
|
|
|
XUngrabKeyboard(fl_display, fl_event_time);
|
|
|
|
XUngrabPointer(fl_display, fl_event_time);
|
|
|
|
// this flush is done in case the picked menu item goes into
|
|
|
|
// an infinite loop, so we don't leave the X server locked up:
|
|
|
|
XFlush(fl_display);
|
|
|
|
#endif
|
|
|
|
grab_ = 0;
|
1999-04-10 12:09:39 +04:00
|
|
|
fl_fix_focus();
|
1999-02-03 11:43:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1999-02-03 11:43:35 +03:00
|
|
|
//
|