summaryrefslogtreecommitdiff
path: root/src/openbox.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-02 20:36:14 +0000
committerDana Jansens <danakj@orodu.net>2003-01-02 20:36:14 +0000
commit66a26917a0631463df7f72c34cbeb39df466918a (patch)
tree0ffd823b664d12e81159569076553d705cb7ae2a /src/openbox.hh
parent745e840547b5443ecfb9b6f0a4f14b0d035d59c2 (diff)
new code for bindings/callbacks. much sexier. now passes python classes back to the callbacks, and the storage of the callbacks in the code is much more clear. huzzah.
Diffstat (limited to 'src/openbox.hh')
-rw-r--r--src/openbox.hh11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/openbox.hh b/src/openbox.hh
index b5956e46..1a537dcd 100644
--- a/src/openbox.hh
+++ b/src/openbox.hh
@@ -6,10 +6,6 @@
@brief The main class for the Openbox window manager
*/
-/*
- cuz girls look soooo goood.. on the end of my DICK
-*/
-
extern "C" {
#include <X11/Xlib.h>
}
@@ -185,7 +181,10 @@ public:
//! Returns the otk::OBProperty instance for the window manager
inline const otk::OBProperty *property() const { return _property; }
- //! Returns the OBBinding instance for the window manager
+ //! Returns the OBActions instance for the window manager
+ inline OBActions *actions() const { return _actions; }
+
+ //! Returns the OBBindings instance for the window manager
inline OBBindings *bindings() const { return _bindings; }
//! Returns a managed screen
@@ -241,8 +240,6 @@ public:
manager can be destroyed.
*/
inline void shutdown() { _doshutdown = true; }
-
- bool getConfigString(const char *name, std::string *value);
};
}