aboutsummaryrefslogtreecommitdiff
path: root/src/StyleMenuItem.cc
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.cc
parent11274940f84133791c71aeb716f52bf090765c89 (diff)
downloadfluxbox-034cc8e7e2fd8a01ae86a3ae8ba8c09f32fcdbfe.zip
fluxbox-034cc8e7e2fd8a01ae86a3ae8ba8c09f32fcdbfe.tar.bz2
handles a style filename
Diffstat (limited to 'src/StyleMenuItem.cc')
-rw-r--r--src/StyleMenuItem.cc49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/StyleMenuItem.cc b/src/StyleMenuItem.cc
new file mode 100644
index 0000000..c144e18
--- /dev/null
+++ b/src/StyleMenuItem.cc
@@ -0,0 +1,49 @@
1// StyleMenuItem.cc 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.cc,v 1.1 2004/05/02 20:54:16 fluxgen Exp $
24
25#include "StyleMenuItem.hh"
26
27#include "FbCommands.hh"
28#include "fluxbox.hh"
29
30#include "FbTk/StringUtil.hh"
31
32StyleMenuItem::StyleMenuItem(const std::string &label, const std::string &filename):
33 FbTk::MenuItem(label.c_str()),
34 m_filename(FbTk::StringUtil::
35 expandFilename(filename)) {
36 // perform shell style ~ home directory expansion
37 // and insert style
38 FbTk::RefCount<FbTk::Command>
39 setstyle_cmd(new FbCommands::
40 SetStyleCmd(m_filename));
41 setCommand(setstyle_cmd);
42 setToggleItem(true);
43}
44
45
46bool StyleMenuItem::isSelected() const {
47 return Fluxbox::instance()->getStyleFilename() == m_filename;
48}
49