]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/keytree.hh
fixed spelling mistake
[mikachu/openbox.git] / util / epist / keytree.hh
1 // -*- mode: C++; indent-tabs-mode: nil; -*-
2 // keytree.hh for Epistrophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
22
23 #ifndef _keytree_hh
24 #define _keytree_hh
25
26 #include <list>
27 #include "actions.hh"
28 #include "screen.hh"
29
30 struct keynode; // forward declaration
31 typedef std::list<keynode *> ChildList;
32
33 struct keynode {
34     Action *action;
35     keynode *parent;
36     ChildList children;
37 };
38
39 class keytree {
40 public:
41     keytree(Display *);
42     ~keytree();
43
44     void grabDefaults(screen *);
45     const Action * getAction(const XEvent&, unsigned int, screen *);
46
47 private:
48     // only mister parser needs to know about our sekrets (BUMMY)
49     friend class parser;
50     
51     void grabChildren(keynode *, screen *);
52     void ungrabChildren(keynode *, screen *);
53
54     void addAction(Action::ActionType, unsigned int, std::string, std::string);
55     void advanceOnNewNode();
56     void retract();
57     void setCurrentNodeProps(Action::ActionType, unsigned int, std::string, std::string);
58
59     void reset()
60     { _current = _head; }
61
62     bool isLeaf(keynode *node)
63     { return node->children.empty(); }
64
65     void clearTree(keynode *);
66
67     keynode *_head;
68     keynode *_current;
69     Display *_display;
70 };
71
72 #endif // _keytree_hh