all repos — fluxbox @ aa96020afa7295e95629157206738c01aa408096

custom fork of the fluxbox windowmanager

added virtual clearWindow
fluxgen fluxgen
commit

aa96020afa7295e95629157206738c01aa408096

parent

32cfe10bc3a3ecf331374714d50524d62909bf7c

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M src/FbTk/Menu.hhsrc/FbTk/Menu.hh

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Menu.hh,v 1.9 2003/02/18 15:11:12 rathnor Exp $ +// $Id: Menu.hh,v 1.10 2003/02/23 00:59:13 fluxgen Exp $ #ifndef FBTK_MENU_HH #define FBTK_MENU_HH

@@ -111,6 +111,7 @@ /// show menu

virtual void show(); /// hide menu virtual void hide(); + virtual void clearWindow(); /*@}*/ /**

@@ -121,8 +122,8 @@ bool isTorn() const { return torn; }

bool isVisible() const { return visible; } int screenNumber() const { return m_screen_num; } Window window() const { return menu.window.window(); } - FbTk::FbWindow &fbwindow() { return menu.window; } - const FbTk::FbWindow &fbwindow() const { return menu.window; } + FbWindow &fbwindow() { return menu.window; } + const FbWindow &fbwindow() const { return menu.window; } const std::string &label() const { return menu.label; } int x() const { return menu.x; } int y() const { return menu.y; }