diff options
author | sabetts <sabetts> | 2007-03-08 08:43:35 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2007-03-08 08:43:35 +0000 |
commit | 91f51337b0470f31e4dbca0b8a27345b9cfa52e8 (patch) | |
tree | 345ab3fe99dec5d93d21105776e0466758f06df9 /src/split.h | |
parent | c54d996f7a123eecbd4702414bd163a9f33327d0 (diff) | |
download | ratpoison-91f51337b0470f31e4dbca0b8a27345b9cfa52e8.zip |
* src/split.c (set_active_frame): call switch_frame hook
(show_frame_indicator): only show frame indicator
(set_active_frame): new arg force_indicator. all callers updated.
(show_frame_indicator): new arg force. all callers updated.
* src/main.c (init_defaults): init bar_in_padding
* src/globals.c (rp_switch_screen_hook): new hook
* src/data.h (struct rp_defaults): new slot, bar_in_padding
* src/bar.c (bar_x): honour bar_in_padding setting
(bar_y): likewise
* src/actions.c (init_set_vars): add barinpadding
(set_barinpadding): new function
* src/globals.h: new global rp_switch_screen_hook
Diffstat (limited to 'src/split.h')
-rw-r--r-- | src/split.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/split.h b/src/split.h index 2dc4fcf..8332037 100644 --- a/src/split.h +++ b/src/split.h @@ -40,10 +40,10 @@ rp_frame *find_frame_prev (rp_frame *frame); rp_window *current_window (void); void init_frame_lists (void); void init_frame_list (rp_screen *screen); -void set_active_frame (rp_frame *frame); +void set_active_frame (rp_frame *frame, int force_indicator); void exchange_with_frame (rp_screen *s, rp_frame *cur, rp_frame *frame); void blank_frame (rp_frame *frame); -void show_frame_indicator (void); +void show_frame_indicator (int force); void hide_frame_indicator (void); void show_frame_message (char *msg); |