summaryrefslogtreecommitdiff
path: root/src/openbox.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-05 09:13:46 +0000
committerDana Jansens <danakj@orodu.net>2002-11-05 09:13:46 +0000
commitc9f36d34a414123cec8ebc35c87b8b9d5673b155 (patch)
tree36bfcaafaea855d3b703d57c409c2fd97952b5c3 /src/openbox.hh
parent68016ac352db39d538f725234a98df7caaa19cc0 (diff)
finish conversion to the new otk::OBProperty class with its new interface
Diffstat (limited to 'src/openbox.hh')
-rw-r--r--src/openbox.hh10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/openbox.hh b/src/openbox.hh
index 5e9edd17..b5a47fde 100644
--- a/src/openbox.hh
+++ b/src/openbox.hh
@@ -15,8 +15,8 @@ extern "C" {
#include "otk/screeninfo.hh"
#include "otk/timerqueuemanager.hh"
+#include "otk/property.hh"
#include "xeventhandler.hh"
-#include "atom.hh"
namespace ob {
@@ -74,6 +74,14 @@ private:
//! The class which will handle raw XEvents
OBXEventHandler _xeventhandler;
+ //! Cached atoms on the display
+ /*!
+ This is a pointer because the OBProperty class uses otk::OBDisplay::display
+ in its constructor, so, it needs to be initialized <b>after</b> the display
+ is initialized in this class' constructor.
+ */
+ otk::OBProperty *_property;
+
//! The running state of the window manager
RunState _state;