aboutsummaryrefslogtreecommitdiff
path: root/src/FbMenu.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbMenu.hh')
-rw-r--r--src/FbMenu.hh49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/FbMenu.hh b/src/FbMenu.hh
new file mode 100644
index 0000000..e91002b
--- /dev/null
+++ b/src/FbMenu.hh
@@ -0,0 +1,49 @@
1// FbMenu.hh for Fluxbox Window Manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice shall be included in
12// all copies or substantial portions of the Software.
13//
14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE.
21
22// $Id: FbMenu.hh,v 1.2 2003/07/10 11:25:13 fluxgen Exp $
23
24#ifndef FBMENU_HH
25#define FBMENU_HH
26
27#include "Menu.hh"
28#include "XLayerItem.hh"
29#include <memory>
30
31class MenuTheme;
32class Shape;
33/// a layered and shaped menu
34class FbMenu:public FbTk::Menu {
35public:
36 FbMenu(MenuTheme &tm, int screen_num, FbTk::ImageControl &imgctrl,
37 FbTk::XLayer &layer);
38 ~FbMenu();
39 void clearWindow();
40 void raise() { m_layeritem.raise(); }
41 void lower() { m_layeritem.lower(); }
42 void reconfigure();
43private:
44 FbTk::XLayerItem m_layeritem;
45 std::auto_ptr<Shape> m_shape;
46};
47
48#endif // FBMENU_HH
49