diff options
author | sabetts <sabetts> | 2004-04-18 21:48:42 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2004-04-18 21:48:42 +0000 |
commit | c9635a8c9e89c3900a210175f0d3f3cb3723931b (patch) | |
tree | 6dc9f91a58cd7df7f3cf0156e92f07b11cfcfd29 /src/globals.c | |
parent | 996b6ae9e981fbafc10f59427f6a6f9057b2273c (diff) | |
download | ratpoison-c9635a8c9e89c3900a210175f0d3f3cb3723931b.zip |
* src/manage.h (ungrab_keys_all_wins): new prototype
(grab_keys_all_wins): likewise
* src/manage.c (grab_top_level_keys): renamed from
grab_prefix_key (all callers updated). Grab all keys in the top level keymap.
(ungrab_top_level_keys): renamed from ungrab_prefix_key (all callers updated). ungrab
all keys in the top level keymap.
(ungrab_keys_all_wins): new function
(grab_keys_all_wins): likewise
* src/globals.c: (rp_key_hook): rename from
rp_prefix_hook. Dependant code updated.
(set_rp_window_focus): change 'prefix' hook to 'key' hook.
* src/events.c (handle_key): handle a top level key press.
(handle_key): new arguments ks, and mod.
(key_press): pass the keysym and modifier to handle_key
* src/conf.h (TOP_KEYMAP): new define
* src/actions.c (cmd_v_split, cmd_h_split): swap names.
(user_commands): bind split to cmd_v_split.
(initialize_default_keybindings): initialize the top level keymap
(cmd_definekey): update the keys grabbed when changing a key on
the top level keymap.
(cmd_escape): update the escape key in the top level map.
(cmd_delkmap): don't allow the deletion of the top level keymap.
Diffstat (limited to 'src/globals.c')
-rw-r--r-- | src/globals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/globals.c b/src/globals.c index c9c02cc..f23eb9c 100644 --- a/src/globals.c +++ b/src/globals.c @@ -72,7 +72,7 @@ struct numset *rp_frame_numset; /* The hook dictionary globals. */ -LIST_HEAD (rp_prefix_hook); +LIST_HEAD (rp_key_hook); LIST_HEAD (rp_switch_win_hook); LIST_HEAD (rp_switch_frame_hook); LIST_HEAD (rp_switch_group_hook); @@ -80,7 +80,7 @@ LIST_HEAD (rp_quit_hook); LIST_HEAD (rp_restart_hook); struct rp_hook_db_entry rp_hook_db[]= - {{"prefix", &rp_prefix_hook}, + {{"key", &rp_key_hook}, {"switchwin", &rp_switch_win_hook}, {"switchframe", &rp_switch_frame_hook}, {"switchgroup", &rp_switch_group_hook}, |