]>
Dogcows Code - chaz/openbox/blob - src/bindings.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
6 @brief I dunno.. some binding stuff?
14 typedef struct Binding
{
15 unsigned int modifiers
;
18 bool operator==(struct Binding
&b2
) { return key
== b2
.key
&&
19 modifiers
== b2
.modifiers
; }
20 bool operator!=(struct Binding
&b2
) { return key
!= b2
.key
||
21 modifiers
!= b2
.modifiers
; }
22 Binding(unsigned int mod
, unsigned int k
) { modifiers
= mod
; key
= k
; }
25 typedef struct BindingTree
{
28 int id
; // the id given for the binding in add()
29 bool chain
; // true if this is a chain to another key (not an action)
31 struct BindingTree
*next_sibling
; // the next binding in the tree at the same
33 struct BindingTree
*first_child
; // the first child of this binding (next
34 // binding in a chained sequence).
35 BindingTree(int id
) : binding(0, 0) {
36 this->id
= id
; chain
= true; next_sibling
= first_child
= 0;
38 BindingTree() : binding(0, 0) {
39 this->id
= -1; chain
= true; next_sibling
= first_child
= 0;
46 typedef std::vector
<std::string
> StringVect
;
49 BindingTree _keytree
; // root node of the tree (this doesn't have siblings!)
50 BindingTree
*_curpos
; // position in the keytree
52 BindingTree _mousetree
; // this tree is a list. it has only siblings
54 int find_key(BindingTree
*search
);
55 bool translate(const std::string
&str
, Binding
&b
, bool askey
);
56 BindingTree
*buildtree(const StringVect
&keylist
, int id
);
57 void OBBindings::assimilate(BindingTree
*node
);
60 //! Initializes an OBBinding object
62 //! Destroys the OBBinding object
63 virtual ~OBBindings();
65 //! Adds a new mouse binding
67 A binding will fail to be added if the binding already exists, or if the
69 @return true if the binding could be added; false if it could not.
71 bool add_mouse(const std::string
&button
, int id
);
73 //! Removes a mouse binding
75 @return The id of the binding that was removed, or '< 0' if none were
78 int remove_mouse(const std::string
&button
);
80 //! Adds a new key binding
82 A binding will fail to be added if the binding already exists (as part of
83 a chain or not), or if any of the strings in the keylist are invalid.
84 @return true if the binding could be added; false if it could not.
86 bool add_key(const StringVect
&keylist
, int id
);
88 //! Removes a key binding
90 @return The id of the binding that was removed, or '< 0' if none were
93 int remove_key(const StringVect
&keylist
);
95 //! Removes all key bindings
98 //! Finds a keybinding and returns its id or '< 0' if it isn't found.
100 @return -1 if the keybinding was not found but does not conflict with
101 any others; -2 if the keybinding conflicts with another.
103 int find_key(const StringVect
&keylist
);
105 void process(unsigned int modifiers
, unsigned int key
);
107 // XXX: need an exec() function or something that will be used by openbox
108 // and hold state for which chain we're in etc. (it could have a timer
109 // for reseting too...)
116 #endif // __binding_hh
This page took 0.040577 seconds and 4 git commands to generate.