aboutsummaryrefslogtreecommitdiff
path: root/src/StyleMenuItem.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-05-02 20:54:16 (GMT)
committerfluxgen <fluxgen>2004-05-02 20:54:16 (GMT)
commit034cc8e7e2fd8a01ae86a3ae8ba8c09f32fcdbfe (patch)
tree997b207a4de90f14f0e3d53dc3f76c80d1aad6c1 /src/StyleMenuItem.hh
parent11274940f84133791c71aeb716f52bf090765c89 (diff)
downloadfluxbox-034cc8e7e2fd8a01ae86a3ae8ba8c09f32fcdbfe.zip
fluxbox-034cc8e7e2fd8a01ae86a3ae8ba8c09f32fcdbfe.tar.bz2
handles a style filename
Diffstat (limited to 'src/StyleMenuItem.hh')
-rw-r--r--src/StyleMenuItem.hh39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/StyleMenuItem.hh b/src/StyleMenuItem.hh
new file mode 100644
index 0000000..8210594
--- /dev/null
+++ b/src/StyleMenuItem.hh
@@ -0,0 +1,39 @@
1// StyleMenuItem.hh for Fluxbox Window Manager
2// Copyright (c) 2004 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// and Simon Bowden (rathnor at users.sourceforge.net)
4//
5// Permission is hereby granted, free of charge, to any person obtaining a
6// copy of this software and associated documentation files (the "Software"),
7// to deal in the Software without restriction, including without limitation
8// the rights to use, copy, modify, merge, publish, distribute, sublicense,
9// and/or sell copies of the Software, and to permit persons to whom the
10// Software is furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE.
22
23// $Id: StyleMenuItem.hh,v 1.1 2004/05/02 20:54:16 fluxgen Exp $
24
25#ifndef STYLEMENUITEM_HH
26#define STYLEMENUITEM_HH
27
28#include "FbTk/MenuItem.hh"
29#include <string>
30
31class StyleMenuItem: public FbTk::MenuItem {
32public:
33 StyleMenuItem(const std::string &label, const std::string &filename);
34 bool isSelected() const;
35private:
36 const std::string m_filename;
37};
38
39#endif // STYLEMENUITEM_HH