openbox/src/bindings.hh

145 lines
3.9 KiB
C++
Raw Normal View History

2002-12-30 06:31:45 +00:00
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __binding_hh
#define __binding_hh
2003-01-03 18:37:58 +00:00
/*! @file bindings.hh
2002-12-30 06:31:45 +00:00
@brief I dunno.. some binding stuff?
*/
#include "actions.hh"
#include "python.hh"
#include "otk/timer.hh"
extern "C" {
#include <Python.h>
}
2002-12-30 06:31:45 +00:00
#include <string>
#include <list>
2002-12-30 06:31:45 +00:00
#include <vector>
namespace ob {
class OBClient;
typedef std::list<PyObject *> CallbackList;
2002-12-30 06:31:45 +00:00
typedef struct Binding {
unsigned int modifiers;
unsigned int key;
bool operator==(struct Binding &b2) { return key == b2.key &&
modifiers == b2.modifiers; }
bool operator!=(struct Binding &b2) { return key != b2.key ||
modifiers != b2.modifiers; }
Binding(unsigned int mod, unsigned int k) { modifiers = mod; key = k; }
} Binding;
typedef struct KeyBindingTree {
2002-12-30 06:31:45 +00:00
Binding binding;
CallbackList callbacks; // the callbacks given for the binding in add()
bool chain; // true if this is a chain to another key (not an action)
2002-12-30 06:31:45 +00:00
struct KeyBindingTree *next_sibling; // the next binding in the tree at the same
2002-12-30 06:31:45 +00:00
// level
struct KeyBindingTree *first_child; // the first child of this binding (next
2002-12-30 06:31:45 +00:00
// binding in a chained sequence).
KeyBindingTree() : binding(0, 0) {
chain = true; next_sibling = first_child = 0;
2002-12-30 06:31:45 +00:00
}
} KeyBindingTree;
typedef struct ButtonBinding {
Binding binding;
CallbackList callbacks[NUM_MOUSE_ACTION];
ButtonBinding() : binding(0, 0) {}
};
2002-12-30 06:31:45 +00:00
class OBBindings {
public:
//! A list of strings
typedef std::vector<std::string> StringVect;
private:
// root node of the tree (this doesn't have siblings!)
KeyBindingTree _keytree;
KeyBindingTree *_curpos; // position in the keytree
2002-12-30 06:31:45 +00:00
Binding _resetkey; // the key which resets the key chain status
otk::OBTimer _timer;
KeyBindingTree *find(KeyBindingTree *search, bool *conflict) const;
KeyBindingTree *buildtree(const StringVect &keylist,
PyObject *callback) const;
void assimilate(KeyBindingTree *node);
2003-01-03 18:51:00 +00:00
static void resetChains(OBBindings *self); // the timer's timeout function
typedef std::list <ButtonBinding*> ButtonBindingList;
ButtonBindingList _buttons[NUM_MOUSE_CONTEXT];
2003-01-03 19:36:41 +00:00
void grabButton(bool grab, const Binding &b, MouseContext context,
OBClient *client);
2003-01-03 21:48:11 +00:00
CallbackList _eventlist[NUM_EVENTS];
2003-01-03 19:36:41 +00:00
2002-12-30 06:31:45 +00:00
public:
2003-01-02 23:34:58 +00:00
//! Initializes an OBBindings object
2002-12-30 06:31:45 +00:00
OBBindings();
2003-01-02 23:34:58 +00:00
//! Destroys the OBBindings object
2002-12-30 06:31:45 +00:00
virtual ~OBBindings();
2003-01-02 22:58:32 +00:00
//! Translates a binding string into the actual Binding
bool translate(const std::string &str, Binding &b, bool askey = true) const;
//! Adds a new key binding
2002-12-30 06:31:45 +00:00
/*!
A binding will fail to be added if the binding already exists (as part of
a chain or not), or if any of the strings in the keylist are invalid.
@return true if the binding could be added; false if it could not.
*/
2003-01-03 07:03:59 +00:00
bool addKey(const StringVect &keylist, PyObject *callback);
2002-12-30 06:31:45 +00:00
//! Removes a key binding
/*!
@return The callbackid of the binding, or '< 0' if there was no binding to
be removed.
2002-12-30 06:31:45 +00:00
*/
bool removeKey(const StringVect &keylist, PyObject *callback);
2002-12-30 06:31:45 +00:00
//! Removes all key bindings
2003-01-03 07:03:59 +00:00
void removeAllKeys();
void fireKey(int screen, unsigned int modifiers,unsigned int key, Time time);
void setResetKey(const std::string &key);
void grabKeys(bool grab);
bool addButton(const std::string &but, MouseContext context,
MouseAction action, PyObject *callback);
void grabButtons(bool grab, OBClient *client);
2003-01-03 07:03:59 +00:00
//! Removes all button bindings
void removeAllButtons();
void fireButton(MouseData *data);
2003-01-03 21:48:11 +00:00
//! Bind a callback for an event
bool addEvent(EventAction action, PyObject *callback);
//! Unbind the callback function from an event
bool removeEvent(EventAction action, PyObject *callback);
2003-01-03 21:48:11 +00:00
//! Remove all callback functions
void removeAllEvents();
void fireEvent(EventData *data);
2002-12-30 06:31:45 +00:00
};
}
#endif // __binding_hh