diff options
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index 7506dc6..c3936c7 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.hh | |||
@@ -32,6 +32,7 @@ | |||
32 | #include "FbTk/Timer.hh" | 32 | #include "FbTk/Timer.hh" |
33 | #include "FbTk/Observer.hh" | 33 | #include "FbTk/Observer.hh" |
34 | #include "FbTk/SignalHandler.hh" | 34 | #include "FbTk/SignalHandler.hh" |
35 | #include "AttentionNoticeHandler.hh" | ||
35 | 36 | ||
36 | #include <X11/Xlib.h> | 37 | #include <X11/Xlib.h> |
37 | #include <X11/Xresource.h> | 38 | #include <X11/Xresource.h> |
@@ -207,6 +208,8 @@ public: | |||
207 | // screen we are watching for modifier changes | 208 | // screen we are watching for modifier changes |
208 | BScreen *watchingScreen() { return m_watching_screen; } | 209 | BScreen *watchingScreen() { return m_watching_screen; } |
209 | const XEvent &lastEvent() const { return m_last_event; } | 210 | const XEvent &lastEvent() const { return m_last_event; } |
211 | |||
212 | AttentionNoticeHandler &attentionHandler() { return m_attention_handler; } | ||
210 | 213 | ||
211 | private: | 214 | private: |
212 | 215 | ||
@@ -314,6 +317,8 @@ private: | |||
314 | const char *m_RC_PATH; | 317 | const char *m_RC_PATH; |
315 | const char *m_RC_INIT_FILE; | 318 | const char *m_RC_INIT_FILE; |
316 | Atom m_kwm1_dockwindow, m_kwm2_dockwindow; | 319 | Atom m_kwm1_dockwindow, m_kwm2_dockwindow; |
320 | |||
321 | AttentionNoticeHandler m_attention_handler; | ||
317 | }; | 322 | }; |
318 | 323 | ||
319 | 324 | ||