aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-02-23 00:59:13 (GMT)
committerfluxgen <fluxgen>2003-02-23 00:59:13 (GMT)
commitaa96020afa7295e95629157206738c01aa408096 (patch)
tree4780efce7b5fa7095f9f348573ddc2609015f6fb
parent32cfe10bc3a3ecf331374714d50524d62909bf7c (diff)
downloadfluxbox-aa96020afa7295e95629157206738c01aa408096.zip
fluxbox-aa96020afa7295e95629157206738c01aa408096.tar.bz2
added virtual clearWindow
-rw-r--r--src/FbTk/Menu.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/FbTk/Menu.hh b/src/FbTk/Menu.hh
index 1326d1e..f808820 100644
--- a/src/FbTk/Menu.hh
+++ b/src/FbTk/Menu.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Menu.hh,v 1.9 2003/02/18 15:11:12 rathnor Exp $ 25// $Id: Menu.hh,v 1.10 2003/02/23 00:59:13 fluxgen Exp $
26 26
27#ifndef FBTK_MENU_HH 27#ifndef FBTK_MENU_HH
28#define FBTK_MENU_HH 28#define FBTK_MENU_HH
@@ -111,6 +111,7 @@ public:
111 virtual void show(); 111 virtual void show();
112 /// hide menu 112 /// hide menu
113 virtual void hide(); 113 virtual void hide();
114 virtual void clearWindow();
114 /*@}*/ 115 /*@}*/
115 116
116 /** 117 /**
@@ -121,8 +122,8 @@ public:
121 bool isVisible() const { return visible; } 122 bool isVisible() const { return visible; }
122 int screenNumber() const { return m_screen_num; } 123 int screenNumber() const { return m_screen_num; }
123 Window window() const { return menu.window.window(); } 124 Window window() const { return menu.window.window(); }
124 FbTk::FbWindow &fbwindow() { return menu.window; } 125 FbWindow &fbwindow() { return menu.window; }
125 const FbTk::FbWindow &fbwindow() const { return menu.window; } 126 const FbWindow &fbwindow() const { return menu.window; }
126 const std::string &label() const { return menu.label; } 127 const std::string &label() const { return menu.label; }
127 int x() const { return menu.x; } 128 int x() const { return menu.x; }
128 int y() const { return menu.y; } 129 int y() const { return menu.y; }