summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-03-26 02:42:05 +0000
committersabetts <sabetts>2003-03-26 02:42:05 +0000
commit84ee56d66b889363903eddd81a8b2a07f180656f (patch)
tree6f7d51890ffbe521774f2a633e385d296458ba51 /src/input.h
parent71a80e9852ad1de0fb88174ca9242a8dddcde384 (diff)
downloadratpoison-84ee56d66b889363903eddd81a8b2a07f180656f.zip
* src/split.h (show_frame_message): new prototype
* src/split.c (show_frame_message): new function * src/main.c (init_screen): listen for key release events in the key_window and input_window. * src/input.c (read_key): new argument, gobble_rel. All callers updated. * src/actions.c (cmd_remove): only remove the current frame if it isn't the ONLY one. (cmd_remove): display a message informing the user if the frame cannot be removed. (cmd_resize): clean up resize loop. (cmd_resize): display a window indicating which frame is being resized.
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.h b/src/input.h
index 0544f37..631d4d4 100644
--- a/src/input.h
+++ b/src/input.h
@@ -26,7 +26,7 @@ char *keysym_to_string (KeySym keysym, unsigned int modifier);
int cook_keycode (XKeyEvent *ev, KeySym *keysym, unsigned int *mod, char *keysym_name, int len, int ignore_bad_mods);
char *get_input (char *prompt);
char *get_more_input (char *prompt, char *preinput);
-int read_key (KeySym *keysym, unsigned int *modifiers, char *keysym_name, int len);
+int read_key (KeySym *keysym, unsigned int *modifiers, char *keysym_name, int len, int gobble_rel);
unsigned int x11_mask_to_rp_mask (unsigned int mask);
unsigned int rp_mask_to_x11_mask (unsigned int mask);
void update_modifier_map ();