82 lines
3.4 KiB
C
82 lines
3.4 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*
|
|
* (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
|
|
* ALL RIGHTS RESERVED
|
|
*/
|
|
/*
|
|
* Motif Release 1.2
|
|
*/
|
|
/*
|
|
* (c) Copyright 1987, 1988, 1989, 1990 HEWLETT-PACKARD COMPANY */
|
|
|
|
|
|
extern void CheckButtonPressBuiltin (XButtonEvent *buttonEvent,
|
|
Context context, Context subContext,
|
|
int partContext, ClientData *pCD);
|
|
extern void CheckButtonReleaseBuiltin (XButtonEvent *buttonEvent,
|
|
Context context, Context subContext,
|
|
ClientData *pCD);
|
|
extern Window GetParentWindow (Window window);
|
|
extern WmScreenData *GetScreenForWindow (Window win);
|
|
extern Boolean HandleCButtonPress (ClientData *pCD, XButtonEvent *buttonEvent);
|
|
extern void HandleCButtonRelease (ClientData *pCD, XButtonEvent *buttonEvent);
|
|
extern void HandleCColormapNotify (ClientData *pCD,
|
|
XColormapEvent *colorEvent);
|
|
extern void HandleCConfigureRequest (ClientData *pCD,
|
|
XConfigureRequestEvent *configureRequest);
|
|
extern void HandleCEnterNotify (ClientData *pCD,
|
|
XEnterWindowEvent *enterEvent);
|
|
extern void HandleCLeaveNotify (ClientData *pCD,
|
|
XLeaveWindowEvent *leaveEvent);
|
|
extern Boolean HandleCFocusIn (ClientData *pCD,
|
|
XFocusChangeEvent *focusChangeEvent);
|
|
extern Boolean HandleCFocusOut (ClientData *pCD,
|
|
XFocusChangeEvent *focusChangeEvent);
|
|
extern Boolean HandleCKeyPress (ClientData *pCD, XKeyEvent *keyEvent);
|
|
extern void HandleClientMessage (ClientData *pCD,
|
|
XClientMessageEvent *clientEvent);
|
|
extern void HandleCMotionNotify (ClientData *pCD, XMotionEvent *motionEvent);
|
|
extern void HandleCPropertyNotify (ClientData *pCD,
|
|
XPropertyEvent *propertyEvent);
|
|
extern void HandleCShapeNotify (ClientData *pCD, XShapeEvent *shapeEvent);
|
|
extern Boolean HandleEventsOnClientWindow (ClientData *pCD, XEvent *pEvent);
|
|
extern Boolean HandleEventsOnSpecialWindows (XEvent *pEvent);
|
|
|
|
|
|
extern void SetupCButtonBindings (Window window, ButtonSpec *buttonSpecs);
|
|
extern Boolean WmDispatchClientEvent (XEvent *event);
|
|
extern void HandleIconBoxButtonPress (ClientData *pCD,
|
|
XButtonEvent *buttonEvent,
|
|
Context subContext);
|
|
extern void HandleIconButtonPress (ClientData *pCD, XButtonEvent *buttonEvent);
|
|
|
|
|
|
extern void ProcessButtonGrabOnClient (ClientData *pCD,
|
|
XButtonEvent *buttonEvent,
|
|
Boolean replayEvent);
|
|
extern void DetermineActiveScreen (XEvent *pEvent);
|
|
extern Boolean WmDispatchClientEvent (XEvent *event);
|
|
|
|
#define SetActiveScreen(psd) (ACTIVE_PSD=(psd), wmGD.queryScreen=False)
|