aboutsummaryrefslogtreecommitdiff
path: root/src/FocusModelMenuItem.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-02-18 11:40:52 (GMT)
committerfluxgen <fluxgen>2006-02-18 11:40:52 (GMT)
commitf53c93e5e0add69771204056550d07b4fee4efef (patch)
treecf84e05d9e5018a9c53f05a232701114886f9a4d /src/FocusModelMenuItem.hh
parent330c8c0b09f10effa9a80245a99dde691a9bc501 (diff)
downloadfluxbox-f53c93e5e0add69771204056550d07b4fee4efef.zip
fluxbox-f53c93e5e0add69771204056550d07b4fee4efef.tar.bz2
moved all focus handling to class FocusControl
Diffstat (limited to 'src/FocusModelMenuItem.hh')
-rw-r--r--src/FocusModelMenuItem.hh42
1 files changed, 24 insertions, 18 deletions
diff --git a/src/FocusModelMenuItem.hh b/src/FocusModelMenuItem.hh
index 0c62a09..6121432 100644
--- a/src/FocusModelMenuItem.hh
+++ b/src/FocusModelMenuItem.hh
@@ -25,48 +25,54 @@
25#ifndef FOCUSMODELMENUITEM_HH 25#ifndef FOCUSMODELMENUITEM_HH
26#define FOCUSMODELMENUITEM_HH 26#define FOCUSMODELMENUITEM_HH
27 27
28#include "Screen.hh"
29 28
30#include "FbTk/MenuItem.hh" 29#include "FbTk/MenuItem.hh"
31#include "FbTk/RefCount.hh" 30#include "FbTk/RefCount.hh"
32#include "FbTk/Command.hh" 31#include "FbTk/Command.hh"
33 32
33#include "FocusControl.hh"
34
34class FocusModelMenuItem : public FbTk::MenuItem { 35class FocusModelMenuItem : public FbTk::MenuItem {
35public: 36public:
36 FocusModelMenuItem(const char *label, BScreen &screen, 37 FocusModelMenuItem(const char *label, FocusControl &focus_control,
37 BScreen::FocusModel model, 38 FocusControl::FocusModel model,
38 FbTk::RefCount<FbTk::Command> &cmd): 39 FbTk::RefCount<FbTk::Command> &cmd):
39 FbTk::MenuItem(label, cmd), m_screen(screen), m_focusmodel(model) { 40 FbTk::MenuItem(label, cmd),
40 } 41 m_focus_control(focus_control),
41 bool isEnabled() const { return m_screen.getFocusModel() != m_focusmodel; } 42 m_focusmodel(model) { }
43
44 bool isEnabled() const { return m_focus_control.focusModel() != m_focusmodel; }
42 45
43 void click(int button, int time) { 46 void click(int button, int time) {
44 m_screen.saveFocusModel(m_focusmodel); 47 m_focus_control.setFocusModel(m_focusmodel);
45 FbTk::MenuItem::click(button, time); 48 FbTk::MenuItem::click(button, time);
46 } 49 }
47 50
48private: 51private:
49 BScreen &m_screen; 52 FocusControl &m_focus_control;
50 BScreen::FocusModel m_focusmodel; 53 FocusControl::FocusModel m_focusmodel;
51}; 54};
52 55
53class TabFocusModelMenuItem : public FbTk::MenuItem { 56class TabFocusModelMenuItem : public FbTk::MenuItem {
54public: 57public:
55 TabFocusModelMenuItem(const char *label, BScreen &screen, 58 TabFocusModelMenuItem(const char *label,
56 BScreen::TabFocusModel model, 59 FocusControl &focus_control,
57 FbTk::RefCount<FbTk::Command> &cmd): 60 FocusControl::TabFocusModel model,
58 FbTk::MenuItem(label, cmd), m_screen(screen), m_tabfocusmodel(model) { 61 FbTk::RefCount<FbTk::Command> &cmd):
59 } 62 FbTk::MenuItem(label, cmd),
60 bool isEnabled() const { return m_screen.getTabFocusModel() != m_tabfocusmodel; } 63 m_focus_control(focus_control),
64 m_tabfocusmodel(model) { }
65
66 bool isEnabled() const { return m_focus_control.tabFocusModel() != m_tabfocusmodel; }
61 67
62 void click(int button, int time) { 68 void click(int button, int time) {
63 m_screen.saveTabFocusModel(m_tabfocusmodel); 69 m_focus_control.setTabFocusModel(m_tabfocusmodel);
64 FbTk::MenuItem::click(button, time); 70 FbTk::MenuItem::click(button, time);
65 } 71 }
66 72
67private: 73private:
68 BScreen &m_screen; 74 FocusControl &m_focus_control;
69 BScreen::TabFocusModel m_tabfocusmodel; 75 FocusControl::TabFocusModel m_tabfocusmodel;
70}; 76};
71 77
72 78