diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2004-01-18 18:59:34 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2004-01-18 18:59:34 +0000 |
commit | 10f0236ea9dbc515422a3a6adb8ff31d3324d8bc (patch) | |
tree | e3ff742ce69c1309840d9a5603f2bd6b93eb5c6e /src/gui/gtk | |
parent | 6d7afb96c1dab3004f28de0b92b2e6c27e72419b (diff) | |
download | weechat-10f0236ea9dbc515422a3a6adb8ff31d3324d8bc.zip |
Added info bar
Diffstat (limited to 'src/gui/gtk')
-rw-r--r-- | src/gui/gtk/gui-display.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/gui/gtk/gui-display.c b/src/gui/gtk/gui-display.c index b28f9e59f..c39f6ecb5 100644 --- a/src/gui/gtk/gui-display.c +++ b/src/gui/gtk/gui-display.c @@ -350,6 +350,35 @@ gui_redraw_window_status (t_gui_window *window) } /* + * gui_draw_window_infobar: draw infobar window + */ + +void +gui_draw_window_infobar (t_gui_window *window) +{ + /* TODO: manage splitted windows! */ + if (window != gui_current_window) + return; + + /* TODO: draw infobar window! */ +} + +/* + * gui_redraw_window_infobar: redraw infobar window + */ + +void +gui_redraw_window_infobar (t_gui_window *window) +{ + /* TODO: manage splitted windows! */ + if (window != gui_current_window) + return; + + /* TODO: first delete window content */ + gui_draw_window_infobar (window); +} + +/* * gui_draw_window_input: draw input window */ |