diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-04 04:11:24 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-04 04:11:24 +0000 |
| commit | 23a7f188297ba3cef1bf13f1be9407ff6eb9bd62 (patch) | |
| tree | 1dd2de425e5ca2994f63b0cbc2756456d8d28c40 /src/openbox.cc | |
| parent | 24924367f9486b29b8b9fd024781ccb5f9e0e276 (diff) | |
add a skeletal OBActions class for user actions
Diffstat (limited to 'src/openbox.cc')
| -rw-r--r-- | src/openbox.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/openbox.cc b/src/openbox.cc index 44d3b8c4..d17a5500 100644 --- a/src/openbox.cc +++ b/src/openbox.cc @@ -8,6 +8,7 @@ #include "openbox.hh" #include "client.hh" #include "screen.hh" +#include "actions.hh" #include "otk/property.hh" #include "otk/display.hh" #include "otk/assassin.hh" @@ -49,7 +50,8 @@ extern "C" { namespace ob { -Openbox *Openbox::instance = (Openbox *) 0; +Openbox *Openbox::instance = (Openbox *) 0; +OBActions *Openbox::actions = (OBActions *) 0; void Openbox::signalHandler(int signal) @@ -122,6 +124,8 @@ Openbox::Openbox(int argc, char **argv) _property = new otk::OBProperty(); + Openbox::actions = new OBActions(); + // create the mouse cursors we'll use _cursors.session = XCreateFontCursor(otk::OBDisplay::display, XC_left_ptr); _cursors.move = XCreateFontCursor(otk::OBDisplay::display, XC_fleur); |
