Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/X11
File: EventI.h
/***********************************************************
[0] Fix | Delete
[1] Fix | Delete
Copyright 1987, 1988, 1998 The Open Group
[2] Fix | Delete
[3] Fix | Delete
Permission to use, copy, modify, distribute, and sell this software and its
[4] Fix | Delete
documentation for any purpose is hereby granted without fee, provided that
[5] Fix | Delete
the above copyright notice appear in all copies and that both that
[6] Fix | Delete
copyright notice and this permission notice appear in supporting
[7] Fix | Delete
documentation.
[8] Fix | Delete
[9] Fix | Delete
The above copyright notice and this permission notice shall be included in
[10] Fix | Delete
all copies or substantial portions of the Software.
[11] Fix | Delete
[12] Fix | Delete
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
[13] Fix | Delete
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
[14] Fix | Delete
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
[15] Fix | Delete
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
[16] Fix | Delete
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
[17] Fix | Delete
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[18] Fix | Delete
[19] Fix | Delete
Except as contained in this notice, the name of The Open Group shall not be
[20] Fix | Delete
used in advertising or otherwise to promote the sale, use or other dealings
[21] Fix | Delete
in this Software without prior written authorization from The Open Group.
[22] Fix | Delete
[23] Fix | Delete
[24] Fix | Delete
Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
[25] Fix | Delete
[26] Fix | Delete
All Rights Reserved
[27] Fix | Delete
[28] Fix | Delete
Permission to use, copy, modify, and distribute this software and its
[29] Fix | Delete
documentation for any purpose and without fee is hereby granted,
[30] Fix | Delete
provided that the above copyright notice appear in all copies and that
[31] Fix | Delete
both that copyright notice and this permission notice appear in
[32] Fix | Delete
supporting documentation, and that the name of Digital not be
[33] Fix | Delete
used in advertising or publicity pertaining to distribution of the
[34] Fix | Delete
software without specific, written prior permission.
[35] Fix | Delete
[36] Fix | Delete
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
[37] Fix | Delete
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
[38] Fix | Delete
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
[39] Fix | Delete
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
[40] Fix | Delete
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
[41] Fix | Delete
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
[42] Fix | Delete
SOFTWARE.
[43] Fix | Delete
[44] Fix | Delete
******************************************************************/
[45] Fix | Delete
[46] Fix | Delete
/*
[47] Fix | Delete
* Event.h - exported types and functions for toolkit event handler
[48] Fix | Delete
*
[49] Fix | Delete
* Author: Charles Haynes
[50] Fix | Delete
* Digital Equipment Corporation
[51] Fix | Delete
* Western Software Laboratory
[52] Fix | Delete
* Date: Sun Dec 6 1987
[53] Fix | Delete
*/
[54] Fix | Delete
[55] Fix | Delete
#ifndef _Event_h_
[56] Fix | Delete
#define _Event_h_
[57] Fix | Delete
[58] Fix | Delete
typedef struct _XtGrabRec *XtGrabList;
[59] Fix | Delete
[60] Fix | Delete
#include "PassivGraI.h"
[61] Fix | Delete
[62] Fix | Delete
_XFUNCPROTOBEGIN
[63] Fix | Delete
[64] Fix | Delete
extern void _XtEventInitialize(
[65] Fix | Delete
void
[66] Fix | Delete
);
[67] Fix | Delete
[68] Fix | Delete
typedef struct _XtEventRec {
[69] Fix | Delete
XtEventTable next;
[70] Fix | Delete
EventMask mask; /* also select_data count for RecExt */
[71] Fix | Delete
XtEventHandler proc;
[72] Fix | Delete
XtPointer closure;
[73] Fix | Delete
unsigned int select:1;
[74] Fix | Delete
unsigned int has_type_specifier:1;
[75] Fix | Delete
unsigned int async:1; /* not used, here for Digital extension? */
[76] Fix | Delete
} XtEventRec;
[77] Fix | Delete
[78] Fix | Delete
typedef struct _XtGrabRec {
[79] Fix | Delete
XtGrabList next;
[80] Fix | Delete
Widget widget;
[81] Fix | Delete
unsigned int exclusive:1;
[82] Fix | Delete
unsigned int spring_loaded:1;
[83] Fix | Delete
}XtGrabRec;
[84] Fix | Delete
[85] Fix | Delete
typedef struct _BlockHookRec {
[86] Fix | Delete
struct _BlockHookRec* next;
[87] Fix | Delete
XtAppContext app;
[88] Fix | Delete
XtBlockHookProc proc;
[89] Fix | Delete
XtPointer closure;
[90] Fix | Delete
} BlockHookRec, *BlockHook;
[91] Fix | Delete
[92] Fix | Delete
extern void _XtFreeEventTable(
[93] Fix | Delete
XtEventTable* /* event_table */
[94] Fix | Delete
);
[95] Fix | Delete
[96] Fix | Delete
extern Boolean _XtOnGrabList(
[97] Fix | Delete
Widget /* widget */,
[98] Fix | Delete
XtGrabRec* /* grabList */
[99] Fix | Delete
);
[100] Fix | Delete
[101] Fix | Delete
extern void _XtRemoveAllInputs(
[102] Fix | Delete
XtAppContext /* app */
[103] Fix | Delete
);
[104] Fix | Delete
[105] Fix | Delete
extern void _XtRefreshMapping(
[106] Fix | Delete
XEvent* /* event */,
[107] Fix | Delete
_XtBoolean /* dispatch */
[108] Fix | Delete
);
[109] Fix | Delete
[110] Fix | Delete
extern void _XtSendFocusEvent(
[111] Fix | Delete
Widget /* child */,
[112] Fix | Delete
int /* type */);
[113] Fix | Delete
[114] Fix | Delete
extern EventMask _XtConvertTypeToMask(
[115] Fix | Delete
int /* eventType */
[116] Fix | Delete
);
[117] Fix | Delete
[118] Fix | Delete
/* EventUtil.c */
[119] Fix | Delete
extern Widget _XtFindRemapWidget(XEvent *event, Widget widget,
[120] Fix | Delete
EventMask mask, XtPerDisplayInput pdi);
[121] Fix | Delete
extern void _XtUngrabBadGrabs(XEvent *event, Widget widget,
[122] Fix | Delete
EventMask mask, XtPerDisplayInput pdi);
[123] Fix | Delete
extern void _XtFillAncestorList(Widget **listPtr, int *maxElemsPtr,
[124] Fix | Delete
int *numElemsPtr, Widget start,
[125] Fix | Delete
Widget breakWidget);
[126] Fix | Delete
[127] Fix | Delete
/* NextEvent.c */
[128] Fix | Delete
extern Boolean XtAppPeekEvent_SkipTimer;
[129] Fix | Delete
[130] Fix | Delete
_XFUNCPROTOEND
[131] Fix | Delete
[132] Fix | Delete
#endif /* _Event_h_ */
[133] Fix | Delete
[134] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function