A tiling window manager
1/*
2 * Function prototypes.
3 * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 * Place, Suite 330, Boston, MA 02111-1307 USA.
18 */
19
20#ifndef _SDORFEHS_INPUT_H
21#define _SDORFEHS_INPUT_H 1
22
23char *keysym_to_string(KeySym keysym, unsigned int modifier);
24int cook_keycode(XKeyEvent *ev, KeySym *keysym, unsigned int *mod,
25 char *keysym_name, int len, int ignore_bad_mods);
26char *get_input(char *prompt, int history_id, completion_fn fn);
27char *get_more_input(char *prompt, char *preinput, int history_id,
28 enum completion_styles style, completion_fn fn);
29void read_any_key(void);
30int read_single_key(KeySym *keysym, unsigned int *modifiers, char *keysym_name,
31 int len);
32int read_key(KeySym *keysym, unsigned int *modifiers, char *keysym_name, int len);
33unsigned int x11_mask_to_rp_mask(unsigned int mask);
34unsigned int rp_mask_to_x11_mask(unsigned int mask);
35void update_modifier_map(void);
36void grab_key(KeySym keysym, unsigned int modifiers, Window grab_window);
37
38void init_xkb(void);
39
40#endif /* ! _SDORFEHS_INPUT_H */