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