all repos — fluxbox @ d6e2f5d0ee329a90ca06916007467b19c8026c16

custom fork of the fluxbox windowmanager

cleaning
fluxgen fluxgen
commit

d6e2f5d0ee329a90ca06916007467b19c8026c16

parent

d6ed5970a8f91d42d75dc7106a4ba03e0da23f97

1 files changed, 11 insertions(+), 17 deletions(-)

jump to
M src/Rootmenu.hhsrc/Rootmenu.hh

@@ -1,3 +1,6 @@

+// Rootmenu.hh for fluxbox +// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org) +// // Rootmenu.hh for Blackbox - an X11 Window manager // Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net) //

@@ -22,32 +25,23 @@

#ifndef ROOTMENU_HH #define ROOTMENU_HH -// forward declarations -class Rootmenu; -class BScreen; - #include "Basemenu.hh" - -class Rootmenu : public Basemenu { -private: - BScreen *screen; - Window auto_group_window; - +class Rootmenu: public Basemenu { +public: + explicit Rootmenu(BScreen *scr); + void setAutoGroupWindow(Window window); + void show(); protected: virtual void itemSelected(int button, unsigned int index); - -public: - Rootmenu(BScreen *); - void setAutoGroupWindow(Window window); - - private: Window useAutoGroupWindow(); + Window auto_group_window; + }; -#endif // _ROOTMENU_HH_ +#endif // ROOTMENU_HH