aboutsummaryrefslogtreecommitdiff
path: root/src/Ewmh.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-01-21 09:37:10 (GMT)
committerfluxgen <fluxgen>2004-01-21 09:37:10 (GMT)
commitf8224b1537a68dae01a8113da80bbd94f286ef3a (patch)
tree36d25ccad109a7d005720eb36ae46037bc574efe /src/Ewmh.hh
parentb0e18549c68b3c8985679ca78a42ad7772634dc2 (diff)
downloadfluxbox-f8224b1537a68dae01a8113da80bbd94f286ef3a.zip
fluxbox-f8224b1537a68dae01a8113da80bbd94f286ef3a.tar.bz2
support for _NET_WM_WINDOW_TYPE and _NET_WM_WINDOW_TYPE_DOCK
Diffstat (limited to 'src/Ewmh.hh')
-rw-r--r--src/Ewmh.hh10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Ewmh.hh b/src/Ewmh.hh
index 1c5475c..52e91f7 100644
--- a/src/Ewmh.hh
+++ b/src/Ewmh.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: Ewmh.hh,v 1.15 2004/01/20 14:30:33 fluxgen Exp $ 22// $Id: Ewmh.hh,v 1.16 2004/01/21 09:37:04 fluxgen Exp $
23 23
24#include "AtomHandler.hh" 24#include "AtomHandler.hh"
25 25
@@ -27,6 +27,7 @@
27#include <vector> 27#include <vector>
28#include <map> 28#include <map>
29 29
30/// Implementes Extended Window Manager Hints ( http://www.freedesktop.org/Standards/wm-spec )
30class Ewmh:public AtomHandler { 31class Ewmh:public AtomHandler {
31public: 32public:
32 33
@@ -86,7 +87,12 @@ private:
86 Atom m_net_close_window, m_net_wm_moveresize; 87 Atom m_net_close_window, m_net_wm_moveresize;
87 88
88 // application window properties 89 // application window properties
89 Atom m_net_properties, m_net_wm_name, m_net_wm_desktop, m_net_wm_window_type, 90 Atom m_net_properties, m_net_wm_name, m_net_wm_desktop,
91 // types
92 m_net_wm_window_type,
93 m_net_wm_window_type_dock,
94
95 // states
90 m_net_wm_state, m_net_wm_state_sticky, m_net_wm_state_shaded, 96 m_net_wm_state, m_net_wm_state_sticky, m_net_wm_state_shaded,
91 m_net_wm_state_maximized_horz, m_net_wm_state_maximized_vert, 97 m_net_wm_state_maximized_horz, m_net_wm_state_maximized_vert,
92 m_net_wm_state_fullscreen, 98 m_net_wm_state_fullscreen,