X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fbindings.hh;h=81b7075db29330402f1de88c5c3d1df66a57d7ea;hb=db1fb534b8f5a1f19710ac77ef2ce85c4c1270ec;hp=70b2326d67fd8414d739eb0c160a8bf220e9bf5c;hpb=98c4b4cfe58c712e70575d8d8b00e7a261a2e729;p=chaz%2Fopenbox diff --git a/src/bindings.hh b/src/bindings.hh index 70b2326d..81b7075d 100644 --- a/src/bindings.hh +++ b/src/bindings.hh @@ -46,28 +46,51 @@ public: typedef std::vector StringVect; private: - BindingTree _bindings;// root nodes (these dont have siblings!) - + BindingTree _keytree; // root node of the tree (this doesn't have siblings!) + BindingTree *_curpos; // position in the keytree + + BindingTree *_mousetree; // this tree is a list. it has only siblings + + int find_key(BindingTree *search) const; + bool translate(const std::string &str, Binding &b, bool askey) const; + BindingTree *buildtree(const StringVect &keylist, int id) const; + void OBBindings::assimilate(BindingTree *node); + public: //! Initializes an OBBinding object OBBindings(); //! Destroys the OBBinding object virtual ~OBBindings(); - //! Adds a new binding + //! Adds a new mouse binding + /*! + A binding will fail to be added if the binding already exists, or if the + string is invalid. + @return true if the binding could be added; false if it could not. + */ + bool add_mouse(const std::string &button, int id); + + //! Removes a mouse binding + /*! + @return The id of the binding that was removed, or '< 0' if none were + removed. + */ + int remove_mouse(const std::string &button); + + //! Adds a new key binding /*! 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. */ - bool add(const StringVect &keylist, int id); + bool add_key(const StringVect &keylist, int id); //! Removes a key binding /*! @return The id of the binding that was removed, or '< 0' if none were removed. */ - int remove(const StringVect &keylist); + int remove_key(const StringVect &keylist); //! Removes all key bindings void remove_all(); @@ -77,7 +100,9 @@ public: @return -1 if the keybinding was not found but does not conflict with any others; -2 if the keybinding conflicts with another. */ - int find(const StringVect &keylist); + int find_key(const StringVect &keylist); + + void process(unsigned int modifiers, unsigned int key); // XXX: need an exec() function or something that will be used by openbox // and hold state for which chain we're in etc. (it could have a timer