aboutsummaryrefslogtreecommitdiff
path: root/src/FocusModelMenuItem.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-05-02 21:09:04 (GMT)
committerfluxgen <fluxgen>2004-05-02 21:09:04 (GMT)
commit347689ba694614893cba18db8acf2fd008bc127c (patch)
tree4c8bfceb85e5e7e8b9da65ff91bb6c36635ef097 /src/FocusModelMenuItem.hh
parent49162b5bf5159b512eaf1fbe91cc6c5587fbd491 (diff)
downloadfluxbox-347689ba694614893cba18db8acf2fd008bc127c.zip
fluxbox-347689ba694614893cba18db8acf2fd008bc127c.tar.bz2
moved from screen.cc
Diffstat (limited to 'src/FocusModelMenuItem.hh')
-rw-r--r--src/FocusModelMenuItem.hh53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/FocusModelMenuItem.hh b/src/FocusModelMenuItem.hh
new file mode 100644
index 0000000..ec638c8
--- /dev/null
+++ b/src/FocusModelMenuItem.hh
@@ -0,0 +1,53 @@
1// FocusModelMenuItem.hh for Fluxbox
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: FocusModelMenuItem.hh,v 1.1 2004/05/02 21:09:04 fluxgen Exp $
24
25#ifndef FOCUSMODELMENUITEM_HH
26#define FOCUSMODELMENUITEM_HH
27
28#include "Screen.hh"
29
30#include "FbTk/MenuItem.hh"
31#include "FbTk/RefCount.hh"
32#include "FbTk/Command.hh"
33
34class FocusModelMenuItem : public FbTk::MenuItem {
35public:
36 FocusModelMenuItem(const char *label, BScreen &screen,
37 BScreen::FocusModel model,
38 FbTk::RefCount<FbTk::Command> &cmd):
39 FbTk::MenuItem(label, cmd), m_screen(screen), m_focusmodel(model) {
40 }
41 bool isEnabled() const { return m_screen.getFocusModel() != m_focusmodel; }
42
43 void click(int button, int time) {
44 m_screen.saveFocusModel(m_focusmodel);
45 FbTk::MenuItem::click(button, time);
46 }
47
48private:
49 BScreen &m_screen;
50 BScreen::FocusModel m_focusmodel;
51};
52
53#endif // FOCUSMODELMENUITEM_HH