File: HsAllKeysyms.h

package info (click to toggle)
haskell-x11 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,372 kB
  • sloc: haskell: 761; ansic: 160; makefile: 2
file content (56 lines) | stat: -rwxr-xr-x 1,082 bytes parent folder | download | duplicates (8)
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
#ifndef HSALLKEYSYMS_H
#define HSALLKEYSYMS_H 1

#include "HsX11Config.h"

/* Defaults */
#if HAVE_X11_KEYSYM_H
#  include <X11/keysym.h>
#elif HAVE_X11_KEYSYMDEF_H
/* Everything in X.org by default */
#  define XK_MISCELLANY
#  define XK_XKB_KEYS
#  define XK_LATIN1
#  define XK_LATIN2
#  define XK_LATIN3
#  define XK_LATIN4
#  define XK_LATIN8
#  define XK_LATIN9
#  define XK_CAUCASUS
#  define XK_GREEK
#  define XK_KATAKANA
#  define XK_ARABIC
#  define XK_CYRILLIC
#  define XK_HEBREW
#  define XK_THAI
#  define XK_KOREAN
#  define XK_ARMENIAN
#  define XK_GEORGIAN
#  define XK_VIETNAMESE
#  define XK_CURRENCY
#  define XK_MATHEMATICAL
#  define XK_BRAILLE

#  include <X11/keysymdef.h>
#endif

/* Vendor specific */
#if HAVE_X11_DECKEYSYM_H
#  include <X11/DECkeysym.h>
#endif
#if HAVE_X11_SUNKEYSYM_H
#  include <X11/Sunkeysym.h>
#endif
#if HAVE_X11_AP_KEYSYM_H
#  include <X11/ap_keysym.h>
#endif
#if HAVE_X11_HPKEYSYM_H
#  include <X11/HPkeysym.h>
#endif
#if HAVE_X11_XF86KEYSYM_H
#  include <X11/XF86keysym.h>
#endif

#include <X11/X.h>

#endif /* HSALLKEYSYMS_H */