aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index 42739fb..d300102 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -32,6 +32,7 @@
32#include "FbTk/MenuSearch.hh" 32#include "FbTk/MenuSearch.hh"
33 33
34#include "AttentionNoticeHandler.hh" 34#include "AttentionNoticeHandler.hh"
35#include "ShortcutManager.hh"
35 36
36#include <X11/Xresource.h> 37#include <X11/Xresource.h>
37 38
@@ -185,6 +186,7 @@ public:
185 const XEvent &lastEvent() const { return m_last_event; } 186 const XEvent &lastEvent() const { return m_last_event; }
186 187
187 AttentionNoticeHandler &attentionHandler() { return m_attention_handler; } 188 AttentionNoticeHandler &attentionHandler() { return m_attention_handler; }
189 ShortcutManager &shortcutManager() { return *m_shortcut_manager; }
188 190
189private: 191private:
190 std::string getRcFilename(); 192 std::string getRcFilename();
@@ -306,6 +308,7 @@ private:
306 } m_state; 308 } m_state;
307 309
308 int m_server_grabs; 310 int m_server_grabs;
311 std::unique_ptr<ShortcutManager> m_shortcut_manager;
309}; 312};
310 313
311 314