]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/config.hh
reword comment a bit
[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 // forward declarations
30 struct BoolItem;
31 struct StringItem;
32 struct NumberItem;
33
34 class Config {
35 public:
36   enum BoolType {
37     NO_BOOL_TYPE,
38     stackedCycling,
39     stackedCyclingRaise,
40     NUM_BOOL_TYPES
41   };
42
43   enum StringType {
44     NO_STRING_TYPE,
45     NUM_STRING_TYPES
46   };
47
48   enum NumberType {
49     NO_NUMBER_TYPE,
50     chainTimeout,
51     workspaceColumns,
52     NUM_NUMBER_TYPES
53   };
54
55 private:
56   typedef std::list<BoolItem *> BoolItemList;
57   typedef std::list<StringItem *> StringItemList;
58   typedef std::list<NumberItem *> NumberItemList;
59   BoolItemList bool_items;
60   StringItemList string_items;
61   NumberItemList number_items;
62
63 public:
64   Config();
65   ~Config();
66
67   bool getValue(BoolType, bool &) const;
68   bool getValue(StringType, std::string &) const;
69   bool getValue(NumberType, int &) const;
70
71   void addOption(const std::string &, const std::string &);
72 };
73
74 struct BoolItem {
75   Config::BoolType type;
76   bool value;
77 };
78
79 struct StringItem {
80   Config::StringType type;
81   std::string value;
82 };
83
84 struct NumberItem {
85   Config::NumberType type;
86   int value;
87 };
88
89 #endif // __config_hh