summaryrefslogtreecommitdiff
path: root/src/LayeredMenu.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/LayeredMenu.hh
parentead4aa8b5448a19b66a230c6a8c817f35ac4394e (diff)
downloadfluxbox_lack-9de08b90e82681d8b49b4b17251d83fd05a413cc.zip
fluxbox_lack-9de08b90e82681d8b49b4b17251d83fd05a413cc.tar.bz2
Rename LayeredMenu to FbMenu (Simon)
Diffstat (limited to 'src/LayeredMenu.hh')
-rw-r--r--src/LayeredMenu.hh42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/LayeredMenu.hh b/src/LayeredMenu.hh
deleted file mode 100644
index 6cfbd31..0000000
--- a/src/LayeredMenu.hh
+++ /dev/null
@@ -1,42 +0,0 @@
1// LayeredMenu.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: LayeredMenu.hh,v 1.1 2003/02/03 13:58:09 fluxgen Exp $
23
24#ifndef LAYEREDMENU_HH
25#define LAYEREDMENU_HH
26
27#include "Menu.hh"
28#include "XLayerItem.hh"
29
30/// a layered menu
31class LayeredMenu:public FbTk::Menu {
32public:
33 LayeredMenu(FbTk::MenuTheme &tm, int screen_num, FbTk::ImageControl &imgctrl,
34 FbTk::XLayer &layer):FbTk::Menu(tm, screen_num, imgctrl), m_layeritem(window(), layer) { }
35 void raise() { m_layeritem.raise(); }
36 void lower() { m_layeritem.lower(); }
37private:
38 FbTk::XLayerItem m_layeritem;
39};
40
41#endif // LAYEREDMENU_HH
42