]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/config.hh
support for showing the root and workspace menu with epist
[mikachu/openbox.git] / util / epist / config.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // config.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 __config_hh
24 #define __config_hh
25
26 #include <string>
27 #include <list>
28
29 class ConfigItem;
30
31 class Config {
32 public:
33   enum ItemType {
34     noType,
35     chainTimeout,
36     workspaceColumns,
37     numTypes
38   };
39
40 private:
41   typedef std::list<ConfigItem *> ItemList;
42   ItemList items;
43
44 public:
45   Config();
46   ~Config();
47
48   const std::string &getStringValue(Config::ItemType) const;
49   int getNumberValue(Config::ItemType) const;
50   void addOption(ConfigItem *);
51   void addOption(const std::string &, const std::string &);
52 };
53
54
55 class ConfigItem {
56 private:
57   Config::ItemType _type;
58   std::string _value;
59
60 public:
61   ConfigItem(Config::ItemType type, std::string value)
62     : _type(type), _value(value) {}
63   ~ConfigItem() {}
64
65   inline const std::string &getStringValue() const
66   { return _value; }
67
68   inline int getNumberValue() const
69   { return atoi(_value.c_str()); }
70
71   inline Config::ItemType getType() const
72   { return _type; }
73 };
74
75 #endif // __config_hh