aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-05-13 16:18:05 (GMT)
committerfluxgen <fluxgen>2006-05-13 16:18:05 (GMT)
commite668b693fca5dbfd531be0510708c3a786cffb4d (patch)
treeee6c5c6df22171fa25ff3d95f0a9cf850cc861be
parent73f6e2bdb48be844474ca688c19b8cb3d3ce8e6b (diff)
downloadfluxbox-e668b693fca5dbfd531be0510708c3a786cffb4d.zip
fluxbox-e668b693fca5dbfd531be0510708c3a786cffb4d.tar.bz2
added support for _NET_WM_STATE_DEMANDS_ATTENTION
-rw-r--r--src/Ewmh.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Ewmh.hh b/src/Ewmh.hh
index 5c336e5..4882ed5 100644
--- a/src/Ewmh.hh
+++ b/src/Ewmh.hh
@@ -23,6 +23,7 @@
23 23
24#include "AtomHandler.hh" 24#include "AtomHandler.hh"
25#include "FbTk/FbString.hh" 25#include "FbTk/FbString.hh"
26#include "AttentionNoticeHandler.hh"
26 27
27#include <X11/Xatom.h> 28#include <X11/Xatom.h>
28#include <vector> 29#include <vector>
@@ -109,6 +110,7 @@ private:
109 m_net_wm_window_type_dock, 110 m_net_wm_window_type_dock,
110 m_net_wm_window_type_desktop, 111 m_net_wm_window_type_desktop,
111 m_net_wm_window_type_splash, 112 m_net_wm_window_type_splash,
113 m_net_wm_window_type_normal,
112 114
113 // states 115 // states
114 m_net_wm_state, m_net_wm_state_sticky, m_net_wm_state_shaded, 116 m_net_wm_state, m_net_wm_state_sticky, m_net_wm_state_shaded,
@@ -120,6 +122,7 @@ private:
120 m_net_wm_state_below, 122 m_net_wm_state_below,
121 m_net_wm_state_above, 123 m_net_wm_state_above,
122 m_net_wm_state_modal, 124 m_net_wm_state_modal,
125 m_net_wm_state_demands_attention,
123 126
124 // allowed actions 127 // allowed actions
125 m_net_wm_allowed_actions, 128 m_net_wm_allowed_actions,
@@ -150,5 +153,5 @@ private:
150 void saveState(FluxboxWindow &win, WindowState *state); 153 void saveState(FluxboxWindow &win, WindowState *state);
151 154
152 FbTk::FbString getUTF8Property(Atom property); 155 FbTk::FbString getUTF8Property(Atom property);
153 156 AttentionNoticeHandler m_demands_attention;
154}; 157};