]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/parser.hh
took out some debug messages
[mikachu/openbox.git] / util / epist / parser.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // parser.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 __parser_hh
24 #define __parser_hh
25
26 #include "actions.hh"
27 #include "keytree.hh"
28 #include "config.hh"
29
30 #include <string>
31
32 class parser {
33 public:
34   parser(keytree *, Config *);
35   ~parser();
36
37   void parse(std::string);
38
39   void setKey(std::string key)
40   {  _key = key; }
41
42   void setArgumentNum(std::string arg)
43   { _arg = arg; }
44
45   void setArgumentNegNum(std::string arg)
46   { _arg = "-" + arg; }
47
48   void setArgumentStr(std::string arg)
49   { _arg = arg.substr(1, arg.size() - 2); }
50
51   void setArgumentTrue(std::string)
52   { _arg = "true"; }
53
54   void setArgumentFalse(std::string)
55   { _arg = "false"; }
56
57   void setOption(std::string opt)
58   { _config->addOption(opt, _arg); }
59
60   void setAction(std::string);
61   void addModifier(std::string);
62   void endAction();
63   void startChain();
64   void setChainBinding();
65   void endChain();
66
67 private:
68   void reset();
69
70   keytree *_kt;
71   Config *_config;
72   unsigned int _mask;
73   Action::ActionType _action;
74   std::string _key;
75   std::string _arg;
76 };
77
78 #endif //__parser_hh