aboutsummaryrefslogtreecommitdiff
path: root/src/FbMenu.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-02-18 15:06:28 (GMT)
committerrathnor <rathnor>2003-02-18 15:06:28 (GMT)
commit9de08b90e82681d8b49b4b17251d83fd05a413cc (patch)
treed9084852664e7754b1ee38fbe7962e768324e56a /src/FbMenu.hh
parentead4aa8b5448a19b66a230c6a8c817f35ac4394e (diff)
downloadfluxbox-9de08b90e82681d8b49b4b17251d83fd05a413cc.zip
fluxbox-9de08b90e82681d8b49b4b17251d83fd05a413cc.tar.bz2
Rename LayeredMenu to FbMenu (Simon)
Diffstat (limited to 'src/FbMenu.hh')
-rw-r--r--src/FbMenu.hh42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/FbMenu.hh b/src/FbMenu.hh
new file mode 100644
index 0000000..c9d3771
--- /dev/null
+++ b/src/FbMenu.hh
@@ -0,0 +1,42 @@
1// FbMenu.hh for Fluxbox Window Manager
2// Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3//
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.1 2003/02/18 15:06:25 rathnor Exp $
23
24#ifndef FBMENU_HH
25#define FBMENU_HH
26
27#include "Menu.hh"
28#include "XLayerItem.hh"
29
30/// a layered menu
31class FbMenu:public FbTk::Menu {
32public:
33 FbMenu(FbTk::MenuTheme &tm, int screen_num, FbTk::ImageControl &imgctrl,
34 FbTk::XLayer &layer):FbTk::Menu(tm, screen_num, imgctrl), m_layeritem(fbwindow(), layer) { }
35 void raise() { m_layeritem.raise(); }
36 void lower() { m_layeritem.lower(); }
37private:
38 FbTk::XLayerItem m_layeritem;
39};
40
41#endif // FBMENU_HH
42