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
38extern  FILE *          yyin;
39extern  char *          scanFile;
40extern  int             lineNum;
41extern  int             scanInt;
42extern  char *          scanIntStr;
43extern  int             scanIntClass;
44extern  char *          scanStr;
45extern  int             scanStrLine;
46
47extern  Display *       dpy;
48extern  int             xkbOpcode;
49extern  int             xkbEventCode;
50
51extern  XkbDescPtr      xkb;
52
53#define UnknownAction   0
54#define NoAction        1
55#define EchoAction      2
56#define PrintEvAction   3
57#define ShellAction     4
58#define SoundAction     5
59
60typedef struct _ActDef {
61        int             type;
62        char *          text;
63        unsigned        priv;
64} ActDefRec,*ActDefPtr;
65
66#define EventDef        0
67#define VariableDef     1
68
69typedef struct _CfgEntry {
70        unsigned char   entry_type;
71        unsigned char   event_type;
72        union {
73            char *      str;
74            Atom        atom;
75            unsigned    priv;
76        }                       name;
77        ActDefRec               action;
78        struct _CfgEntry *      next;
79} CfgEntryRec,*CfgEntryPtr;
80
81extern void InterpretConfigs(
82        CfgEntryPtr     /* cfgs */
83);
84
85extern const char *SubstituteEventArgs(
86    const char *        /* cmd */,
87    const XkbEvent *    /* ev */
88);
89
90extern void PrintXkbEvent(
91        FILE *          /* file */,
92        XkbEvent *      /* ev */
93);
94
95extern int setScanState ( const char * file, int line );
96extern int CFGParseFile ( FILE *file );
97
98extern int yylex(void);
99extern int yyparse(void);
100extern int yyerror(char *s);
101extern int yywrap(void);
102#endif /* XKBEVD_H */
103