c93880008dd074c33ff5682dc9f7f8c11cbbe195
[framework/uifw/xorg/util/x11-xkb-utils.git] / xkbevd / xkbevd.h
1 /************************************************************
2  Copyright (c) 1995 by Silicon Graphics Computer Systems, Inc.
3
4  Permission to use, copy, modify, and distribute this
5  software and its documentation for any purpose and without
6  fee is hereby granted, provided that the above copyright
7  notice appear in all copies and that both that copyright
8  notice and this permission notice appear in supporting
9  documentation, and that the name of Silicon Graphics not be
10  used in advertising or publicity pertaining to distribution
11  of the software without specific prior written permission.
12  Silicon Graphics makes no representation about the suitability
13  of this software for any purpose. It is provided "as is"
14  without any express or implied warranty.
15
16  SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18  AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19  GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20  DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22  OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITH
23  THE USE OR PERFORMANCE OF THIS SOFTWARE.
24
25  ********************************************************/
26
27 #ifndef XKBEVD_H
28 #define XKBEVD_H 1
29
30 #include <stdio.h>
31 #include <X11/Xlib.h>
32 #include <X11/XKBlib.h>
33 #include <X11/extensions/XKBfile.h>
34 #include <X11/extensions/XKBbells.h>
35
36 #include "utils.h"
37
38 extern  FILE *          yyin;
39 extern  char *          scanFile;
40 extern  int             lineNum;
41 extern  int             scanInt;
42 extern  char *          scanIntStr;
43 extern  int             scanIntClass;
44 extern  char *          scanStr;
45 extern  int             scanStrLine;
46
47 extern  Display *       dpy;
48 extern  int             xkbOpcode;
49 extern  int             xkbEventCode;
50 extern  Bool            detectableRepeat;
51
52 extern  XkbDescPtr      xkb;
53
54 #define UnknownAction   0
55 #define NoAction        1
56 #define EchoAction      2
57 #define PrintEvAction   3
58 #define ShellAction     4
59 #define SoundAction     5
60
61 typedef struct _ActDef {
62         int             type;
63         char *          text;
64         unsigned        priv;
65 } ActDefRec,*ActDefPtr;
66
67 #define EventDef        0
68 #define VariableDef     1
69
70 typedef struct _CfgEntry {
71         unsigned char   entry_type;
72         unsigned char   event_type;
73         union {
74             char *      str;
75             Atom        atom;
76             unsigned    priv;
77         }                       name;
78         ActDefRec               action;
79         struct _CfgEntry *      next;
80 } CfgEntryRec,*CfgEntryPtr;
81
82 extern void InterpretConfigs(
83         CfgEntryPtr     /* cfgs */
84 );
85
86 extern char *SubstituteEventArgs(
87     char *              /* cmd */,
88     XkbEvent *          /* ev */
89 );
90
91 extern void PrintXkbEvent(
92         FILE *          /* file */,
93         XkbEvent *      /* ev */
94 );
95
96 extern int setScanState ( char * file, int line );
97 extern int CFGParseFile ( FILE *file );
98
99 extern int yylex(void);
100 extern int yyparse(void);
101 extern int yyerror(char *s);
102 extern int yywrap(void);
103 #endif /* XKBEVD_H */