aboutsummaryrefslogtreecommitdiff
path: root/src/Rootmenu.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Rootmenu.hh')
-rw-r--r--src/Rootmenu.hh47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/Rootmenu.hh b/src/Rootmenu.hh
deleted file mode 100644
index 75df30d..0000000
--- a/src/Rootmenu.hh
+++ /dev/null
@@ -1,47 +0,0 @@
1// Rootmenu.hh for fluxbox
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org)
3//
4// Rootmenu.hh for Blackbox - an X11 Window manager
5// Copyright (c) 1997 - 2000 Brad Hughes (bhughes@tcac.net)
6//
7// Permission is hereby granted, free of charge, to any person obtaining a
8// copy of this software and associated documentation files (the "Software"),
9// to deal in the Software without restriction, including without limitation
10// the rights to use, copy, modify, merge, publish, distribute, sublicense,
11// and/or sell copies of the Software, and to permit persons to whom the
12// Software is furnished to do so, subject to the following conditions:
13//
14// The above copyright notice and this permission notice shall be included in
15// all copies or substantial portions of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE.
24
25#ifndef ROOTMENU_HH
26#define ROOTMENU_HH
27
28#include "Basemenu.hh"
29
30class Rootmenu: public Basemenu {
31public:
32 explicit Rootmenu(BScreen *scr);
33 void setAutoGroupWindow(Window window);
34 void show();
35
36protected:
37 virtual void itemSelected(int button, unsigned int index);
38
39private:
40 Window useAutoGroupWindow();
41 Window auto_group_window;
42
43};
44
45
46#endif // ROOTMENU_HH
47