diff options
-rw-r--r-- | src/StyleMenuItem.cc | 49 | ||||
-rw-r--r-- | src/StyleMenuItem.hh | 39 |
2 files changed, 88 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 | |||
32 | StyleMenuItem::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 | |||
46 | bool StyleMenuItem::isSelected() const { | ||
47 | return Fluxbox::instance()->getStyleFilename() == m_filename; | ||
48 | } | ||
49 | |||
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 | |||
31 | class StyleMenuItem: public FbTk::MenuItem { | ||
32 | public: | ||
33 | StyleMenuItem(const std::string &label, const std::string &filename); | ||
34 | bool isSelected() const; | ||
35 | private: | ||
36 | const std::string m_filename; | ||
37 | }; | ||
38 | |||
39 | #endif // STYLEMENUITEM_HH | ||