From 574bf11742c40203a4433c0b69264014b10b5a96 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 12 Oct 2008 17:27:00 +0000 Subject: container widget --- src/ui/window.h | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'src/ui/window.h') diff --git a/src/ui/window.h b/src/ui/window.h index 919559f..2c0e2a5 100644 --- a/src/ui/window.h +++ b/src/ui/window.h @@ -16,33 +16,26 @@ class Window : public Widget { public: - Window(Window *parent=0); + Window(Widget *parent=0); ~Window(); virtual void draw_border(); /// set the label of the previous window void set_previous(Window *previous); + /// clear the label of the previous window void clear_previous(); + + /// showing a window sets focus + virtual void show(); inline const std::string &previous() const { return window_previous; } protected: - typedef std::list Windows; - Windows window_children; - - Windows::iterator find_window(Window *window); - - virtual void add_window(Window *window); - virtual void remove_window(Window *window); - - /// label of the previous window that got activated - /** This label is used to implement the 'menu previous' - * command - */ + std::string window_previous; }; -- cgit v1.2.3