- s/sprintf/snprintf
[wmaker-crm.git] / src / keybind.h
bloba18df3ac5d42ec135800f137721a84f432315492
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997, 1998 Alfredo K. Kojima
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
24 /* anywhere */
25 #define WKBD_ROOTMENU 0
26 #define WKBD_WINDOWMENU 1
27 #define WKBD_WINDOWLIST 2
28 /* window */
29 #define WKBD_MINIATURIZE 3
30 #define WKBD_HIDE 4
31 #define WKBD_MAXIMIZE 5
32 #define WKBD_VMAXIMIZE 6
33 #define WKBD_HMAXIMIZE 7
34 #define WKBD_SELECT 8
35 /* Clip */
36 #define WKBD_CLIPLOWER 9
37 #define WKBD_CLIPRAISE 10
38 #define WKBD_CLIPRAISELOWER 11
39 /* window */
40 #define WKBD_RAISE 12
41 #define WKBD_LOWER 13
42 #define WKBD_RAISELOWER 14
43 #define WKBD_MOVERESIZE 15
44 #define WKBD_SHADE 16
45 /* window, menu */
46 #define WKBD_CLOSE 17
47 /* window */
48 #define WKBD_FOCUSNEXT 18
49 #define WKBD_FOCUSPREV 19
51 #define WKBD_WORKSPACE1 21
52 #define WKBD_WORKSPACE2 22
53 #define WKBD_WORKSPACE3 23
54 #define WKBD_WORKSPACE4 24
55 #define WKBD_WORKSPACE5 25
56 #define WKBD_WORKSPACE6 26
57 #define WKBD_WORKSPACE7 27
58 #define WKBD_WORKSPACE8 28
59 #define WKBD_WORKSPACE9 29
60 #define WKBD_WORKSPACE10 30
61 #define WKBD_NEXTWORKSPACE 31
62 #define WKBD_PREVWORKSPACE 32
63 #define WKBD_NEXTWSLAYER 33
64 #define WKBD_PREVWSLAYER 34
66 /* window shortcuts */
67 #define WKBD_WINDOW1 35
68 #define WKBD_WINDOW2 36
69 #define WKBD_WINDOW3 37
70 #define WKBD_WINDOW4 38
71 #define WKBD_WINDOW5 39
72 #define WKBD_WINDOW6 40
73 #define WKBD_WINDOW7 41
74 #define WKBD_WINDOW8 42
75 #define WKBD_WINDOW9 43
76 #define WKBD_WINDOW10 44
78 #define WKBD_SWITCH_SCREEN 45
80 #ifdef KEEP_XKB_LOCK_STATUS
81 # define WKBD_TOGGLE 46
82 # define WKBD_LAST 47
83 #else
84 # define WKBD_LAST 46
85 #endif /* KEEP_XKB_LOCK_STATUS */
88 typedef struct WShortKey {
89 unsigned int modifier;
90 KeyCode keycode;
91 } WShortKey;
93 void wKeyboardInitialize();