aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-02-03 13:58:09 (GMT)
committerfluxgen <fluxgen>2003-02-03 13:58:09 (GMT)
commitcefcfd37d8746f8f882e0379fe7634cc6eefb2a4 (patch)
treefb757667662b34f75caaf53e4cbf59fa3acefa89 /src
parentc5955046765870a6320534b5782b546087ab4bb2 (diff)
downloadfluxbox-cefcfd37d8746f8f882e0379fe7634cc6eefb2a4.zip
fluxbox-cefcfd37d8746f8f882e0379fe7634cc6eefb2a4.tar.bz2
first
Diffstat (limited to 'src')
-rw-r--r--src/LayeredMenu.hh42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/LayeredMenu.hh b/src/LayeredMenu.hh
new file mode 100644
index 0000000..6cfbd31
--- /dev/null
+++ b/src/LayeredMenu.hh
@@ -0,0 +1,42 @@
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