summaryrefslogtreecommitdiff
path: root/src/blackbox.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-06-29 23:50:04 +0000
committerDana Jansens <danakj@orodu.net>2002-06-29 23:50:04 +0000
commit351a06655bdd7d440780b5bc5b255081c888044b (patch)
treecda6be7de0972b942cfbee9510c49180c6f055d2 /src/blackbox.hh
parentb0d81f77aa57a33f6c9e6428ffe89f7cc02258ed (diff)
Configureable button mappings!
Diffstat (limited to 'src/blackbox.hh')
-rw-r--r--src/blackbox.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/blackbox.hh b/src/blackbox.hh
index a5f55491..a5bb8157 100644
--- a/src/blackbox.hh
+++ b/src/blackbox.hh
@@ -51,7 +51,6 @@ extern "C" {
#include "BaseDisplay.hh"
#include "Configuration.hh"
#include "Timer.hh"
-#include "XAtom.hh"
#define AttribShaded (1l << 0)
#define AttribMaxHoriz (1l << 1)
@@ -92,6 +91,8 @@ class BWindowGroup;
class Basemenu;
class Toolbar;
class Slit;
+class XAtom;
+class BInput;
extern I18n i18n;
@@ -152,6 +153,7 @@ private:
BTimer *timer;
Configuration config;
XAtom *xatom;
+ BInput *input;
bool no_focus, reconfigure_wait, reread_menu_wait;
Time last_time;
@@ -198,6 +200,7 @@ public:
void removeSlitSearch(Window window);
inline XAtom *getXAtom(void) { return xatom; }
+ inline BInput *getInput(void) { return input; }
inline BlackboxWindow *getFocusedWindow(void) { return focused_window; }
inline BlackboxWindow *getChangingWindow(void) { return changing_window; }