Add configure.ac
[gnt.git] / gntkeys.h
blob0f5a6cc5a1d1c7266f439e5f32f25470a33ab020
1 /**
2 * @file gntkeys.h Keys API
3 * @ingroup gnt
4 */
5 /*
6 * GNT - The GLib Ncurses Toolkit
8 * GNT is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution.
12 * This library is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
27 #ifndef GNT_KEYS_H
28 #define GNT_KEYS_H
30 #include <curses.h>
31 #include <term.h>
33 /**
34 * terminfo/termcap doesn't provide all the information that I want to use, eg.
35 * ctrl-up, ctrl-down etc. So I am going to hard-code some of the information
36 * for some popular $TERMs
38 extern char *gnt_key_cup;
39 extern char *gnt_key_cdown;
40 extern char *gnt_key_cleft;
41 extern char *gnt_key_cright;
43 #define SAFE(x) ((x) ? (x) : "")
45 #define GNT_KEY_POPUP SAFE(key_f16) /* Apparently */
47 /* Arrow keys */
48 #define GNT_KEY_LEFT SAFE(key_left)
49 #define GNT_KEY_RIGHT SAFE(key_right)
50 #define GNT_KEY_UP SAFE(key_up)
51 #define GNT_KEY_DOWN SAFE(key_down)
53 #define GNT_KEY_CTRL_UP SAFE(gnt_key_cup)
54 #define GNT_KEY_CTRL_DOWN SAFE(gnt_key_cdown)
55 #define GNT_KEY_CTRL_RIGHT SAFE(gnt_key_cright)
56 #define GNT_KEY_CTRL_LEFT SAFE(gnt_key_cleft)
58 #define GNT_KEY_PGUP SAFE(key_ppage)
59 #define GNT_KEY_PGDOWN SAFE(key_npage)
60 #define GNT_KEY_HOME SAFE(key_home)
61 #define GNT_KEY_END SAFE(key_end)
63 #define GNT_KEY_ENTER carriage_return
65 #define GNT_KEY_BACKSPACE SAFE(key_backspace)
66 #define GNT_KEY_DEL SAFE(key_dc)
67 #define GNT_KEY_INS SAFE(key_ic)
68 #define GNT_KEY_BACK_TAB SAFE(back_tab)
70 #define GNT_KEY_CTRL_A "\001"
71 #define GNT_KEY_CTRL_B "\002"
72 #define GNT_KEY_CTRL_D "\004"
73 #define GNT_KEY_CTRL_E "\005"
74 #define GNT_KEY_CTRL_F "\006"
75 #define GNT_KEY_CTRL_G "\007"
76 #define GNT_KEY_CTRL_H "\010"
77 #define GNT_KEY_CTRL_I "\011"
78 #define GNT_KEY_CTRL_J "\012"
79 #define GNT_KEY_CTRL_K "\013"
80 #define GNT_KEY_CTRL_L "\014"
81 #define GNT_KEY_CTRL_M "\012"
82 #define GNT_KEY_CTRL_N "\016"
83 #define GNT_KEY_CTRL_O "\017"
84 #define GNT_KEY_CTRL_P "\020"
85 #define GNT_KEY_CTRL_R "\022"
86 #define GNT_KEY_CTRL_T "\024"
87 #define GNT_KEY_CTRL_U "\025"
88 #define GNT_KEY_CTRL_V "\026"
89 #define GNT_KEY_CTRL_W "\027"
90 #define GNT_KEY_CTRL_X "\030"
91 #define GNT_KEY_CTRL_Y "\031"
93 #define GNT_KEY_F1 SAFE(key_f1)
94 #define GNT_KEY_F2 SAFE(key_f2)
95 #define GNT_KEY_F3 SAFE(key_f3)
96 #define GNT_KEY_F4 SAFE(key_f4)
97 #define GNT_KEY_F5 SAFE(key_f5)
98 #define GNT_KEY_F6 SAFE(key_f6)
99 #define GNT_KEY_F7 SAFE(key_f7)
100 #define GNT_KEY_F8 SAFE(key_f8)
101 #define GNT_KEY_F9 SAFE(key_f9)
102 #define GNT_KEY_F10 SAFE(key_f10)
103 #define GNT_KEY_F11 SAFE(key_f11)
104 #define GNT_KEY_F12 SAFE(key_f12)
107 * Initialize the keys.
109 void gnt_init_keys(void);
112 * Refine input text. This usually looks at what the terminal claims it is,
113 * and tries to change the text to work around some oft-broken terminfo entries.
115 * @param text The input text to refine.
117 void gnt_keys_refine(char *text);
120 * Translate a user-readable representation of an input to a machine-readable representation.
122 * @param name The user-readable representation of an input (eg.: c-t)
124 * @return A machine-readable representation of the input.
126 const char *gnt_key_translate(const char *name);
129 * Translate a machine-readable representation of an input to a user-readable representation.
131 * @param key The machine-readable representation of an input.
133 * @return A user-readable representation of the input (eg.: c-t).
135 const char *gnt_key_lookup(const char *key);
138 * Add a key combination to the internal key-tree.
140 * @param key The key to add
142 void gnt_keys_add_combination(const char *key);
145 * Remove a key combination from the internal key-tree.
147 * @param key The key to remove.
149 void gnt_keys_del_combination(const char *key);
152 * Find a combination from the given string.
154 * @param key The input string.
156 * @return The number of bytes in the combination that starts at the beginning
157 * of key (can be 0).
159 int gnt_keys_find_combination(const char *key);
161 /* A lot of commonly used variable names are defined in <term.h>.
162 * #undef them to make life easier for everyone. */
164 #undef columns
165 #undef lines
166 #undef buttons
167 #undef newline
169 #endif