aboutsummaryrefslogtreecommitdiff
path: root/src/AtomHandler.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/AtomHandler.hh')
-rw-r--r--src/AtomHandler.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AtomHandler.hh b/src/AtomHandler.hh
index cec75d3..efa72fe 100644
--- a/src/AtomHandler.hh
+++ b/src/AtomHandler.hh
@@ -40,7 +40,7 @@ public:
40 virtual void setupFrame(FluxboxWindow &win) = 0; 40 virtual void setupFrame(FluxboxWindow &win) = 0;
41 virtual void setupClient(WinClient &winclient) = 0; 41 virtual void setupClient(WinClient &winclient) = 0;
42 42
43 virtual void updateFocusedWindow(BScreen &screen, Window win) = 0; 43 virtual void updateFocusedWindow(BScreen &screen, Window win) = 0;
44 virtual void updateClientList(BScreen &screen) = 0; 44 virtual void updateClientList(BScreen &screen) = 0;
45 virtual void updateWorkspaceNames(BScreen &screen) = 0; 45 virtual void updateWorkspaceNames(BScreen &screen) = 0;
46 virtual void updateCurrentWorkspace(BScreen &screen) = 0; 46 virtual void updateCurrentWorkspace(BScreen &screen) = 0;
@@ -54,7 +54,7 @@ public:
54 virtual void updateHints(FluxboxWindow &win) = 0; 54 virtual void updateHints(FluxboxWindow &win) = 0;
55 virtual void updateLayer(FluxboxWindow &win) = 0; 55 virtual void updateLayer(FluxboxWindow &win) = 0;
56 virtual void updateFrameExtents(FluxboxWindow &win) { } 56 virtual void updateFrameExtents(FluxboxWindow &win) { }
57 virtual bool checkClientMessage(const XClientMessageEvent &ce, 57 virtual bool checkClientMessage(const XClientMessageEvent &ce,
58 BScreen * screen, WinClient * const winclient) = 0; 58 BScreen * screen, WinClient * const winclient) = 0;
59 59
60 virtual bool propertyNotify(WinClient &winclient, Atom the_property) = 0; 60 virtual bool propertyNotify(WinClient &winclient, Atom the_property) = 0;
@@ -67,7 +67,7 @@ protected:
67 AtomHandler():m_update(true) { } 67 AtomHandler():m_update(true) { }
68 68
69 void disableUpdate() { m_update = false; } 69 void disableUpdate() { m_update = false; }
70 void enableUpdate() { m_update = true; } 70 void enableUpdate() { m_update = true; }
71private: 71private:
72 bool m_update; ///< do we get update or not 72 bool m_update; ///< do we get update or not
73}; 73};