aboutsummaryrefslogtreecommitdiff
path: root/src/Ewmh.hh
diff options
context:
space:
mode:
authorsimonb <simonb>2006-05-07 10:08:25 (GMT)
committersimonb <simonb>2006-05-07 10:08:25 (GMT)
commitfaf043bef92338fe976e639e94d309764065b8b7 (patch)
tree6554ea89ff6064465bd605da8f640ee43212b356 /src/Ewmh.hh
parentac098b4d0f0640b2997ff674a5c1b3447b6ba09a (diff)
downloadfluxbox-faf043bef92338fe976e639e94d309764065b8b7.zip
fluxbox-faf043bef92338fe976e639e94d309764065b8b7.tar.bz2
more utf8 changes, notably window titles
Diffstat (limited to 'src/Ewmh.hh')
-rw-r--r--src/Ewmh.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Ewmh.hh b/src/Ewmh.hh
index 497665a..5c336e5 100644
--- a/src/Ewmh.hh
+++ b/src/Ewmh.hh
@@ -22,6 +22,7 @@
22// $Id$ 22// $Id$
23 23
24#include "AtomHandler.hh" 24#include "AtomHandler.hh"
25#include "FbTk/FbString.hh"
25 26
26#include <X11/Xatom.h> 27#include <X11/Xatom.h>
27#include <vector> 28#include <vector>
@@ -101,7 +102,8 @@ private:
101 Atom m_net_close_window, m_net_wm_moveresize; 102 Atom m_net_close_window, m_net_wm_moveresize;
102 103
103 // application window properties 104 // application window properties
104 Atom m_net_properties, m_net_wm_name, m_net_wm_desktop, 105 Atom m_net_properties, m_net_wm_name, m_net_wm_icon_name,
106 m_net_wm_desktop,
105 // types 107 // types
106 m_net_wm_window_type, 108 m_net_wm_window_type,
107 m_net_wm_window_type_dock, 109 m_net_wm_window_type_dock,
@@ -147,4 +149,6 @@ private:
147 void clearState(FluxboxWindow &win); 149 void clearState(FluxboxWindow &win);
148 void saveState(FluxboxWindow &win, WindowState *state); 150 void saveState(FluxboxWindow &win, WindowState *state);
149 151
152 FbTk::FbString getUTF8Property(Atom property);
153
150}; 154};