/usr/include/ggi/input/xwin.h is in libgii1-dev 1:1.0.2-4ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | /* $Id: xwin.h,v 1.3 2005/03/28 20:33:33 pekberg Exp $
******************************************************************************
Xwin inputlib - use an existing X window as a LibGII input source
Copyright (C) 1998 Marcus Sundberg [marcus@ggi-project.org]
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************
*/
#ifndef _GGI_INPUT_XWIN_H
#define _GGI_INPUT_XWIN_H
#include <X11/Xlib.h>
/* Returns non-zero if we should queue the expose event */
typedef int (gii_inputxwin_exposefunc)(void *arg, int x, int y, int w, int h);
typedef int (gii_inputxwin_resizefunc)(void *arg, int w, int h, gii_event *ev);
typedef int (gii_inputxwin_lockfunc)(void *arg);
typedef int (gii_inputxwin_unlockfunc)(void *arg);
typedef struct {
Display *disp; /* Display to use */
Window win; /* Window to use */
int ptralwaysrel; /* Pointer events are always relative */
int wait; /* Wait for SETPARAM event before being
usable */
gii_inputxwin_exposefunc *exposefunc; /* If this is non-null we call
the specified function to see if we should
send the expose event or not */
void *exposearg; /* This is the argument we pass to exposefunc*/
gii_inputxwin_resizefunc *resizefunc; /* If this is non-null we call
the specified function to fill in a suitable
event to send due to the resize if it returns
0. If it returns non-0, we don't queue any
event. */
void *resizearg; /* This is the argument we pass to resizefunc*/
gii_inputxwin_lockfunc *lockfunc; /* If this is non-null we call
the specified function to lock the polling
function */
void *lockarg; /* This is the argument we pass to lockfunc */
gii_inputxwin_unlockfunc *unlockfunc; /* If this is non-null we call
the specified function to unlock the polling
function */
void *unlockarg; /* This is the argument we pass to unlockfunc*/
} gii_inputxwin_arg;
/* Send this event to change parameters on the fly */
#define GII_CMDCODE_XWINSETPARAM (0x01 | GII_CMDFLAG_PRIVATE)
typedef struct {
Window win;
int ptralwaysrel;
Window parentwin;
} gii_xwin_cmddata_setparam;
#endif /* _GGI_INPUT_XWIN_H */
|