From 10f0236ea9dbc515422a3a6adb8ff31d3324d8bc Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 18 Jan 2004 18:59:34 +0000 Subject: Added info bar --- src/gui/gtk/gui-display.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src/gui/gtk') 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 @@ -349,6 +349,35 @@ gui_redraw_window_status (t_gui_window *window) gui_draw_window_status (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 */ -- cgit v1.2.3