diff options
author | fluxgen <fluxgen> | 2006-06-11 12:47:47 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2006-06-11 12:47:47 (GMT) |
commit | 3aa4244ab8c6a4cbdd247ddcc3477cb8c38f64c0 (patch) | |
tree | 3ca6fdbc6814c827d7952a01cf9a7a065bfec2c3 /src/fluxbox.hh | |
parent | 2fdc6ab808d3828cba1bacaff536d607dfa60c58 (diff) | |
download | fluxbox_pavel-3aa4244ab8c6a4cbdd247ddcc3477cb8c38f64c0.zip fluxbox_pavel-3aa4244ab8c6a4cbdd247ddcc3477cb8c38f64c0.tar.bz2 |
added support for urgency hint, thanks Mark Tiefenbruck
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 | ||