]> icculus.org git repositories - mikachu/openbox.git/blob - util/epist/config.cc
toggledecor almost done
[mikachu/openbox.git] / util / epist / config.cc
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // config.cc 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 #include "config.hh"
24
25 using std::string;
26
27 Config::Config() {}
28
29 Config::~Config()
30 {
31   ItemList::const_iterator it = items.begin(), end = items.end();
32   for (; it != end; ++it)
33     delete *it;
34   items.clear();
35 }
36
37
38 const string &Config::getStringValue(Config::ItemType type) const
39 {
40   ItemList::const_iterator it = items.begin(), end = items.end();
41   for (; it != end; ++it) {
42     if ((*it)->getType() == type)
43       return (*it)->getStringValue();
44   }
45 }
46
47
48 int Config::getNumberValue(Config::ItemType type) const
49 {
50   ItemList::const_iterator it = items.begin(), end = items.end();
51   for (; it != end; ++it) {
52     if ((*it)->getType() == type)
53       return (*it)->getNumberValue();
54   }
55
56   return 0;
57 }
58
59
60 void Config::addOption(ConfigItem *item)
61 {
62   items.push_back(item);    
63 }
64
65
66 void Config::addOption(const std::string &name, const std::string &value)
67 {
68   const struct {
69     const char *name;
70     Config::ItemType type;
71   }
72   options[] = {
73     { "notype", Config::noType },
74     { "chaintimeout", Config::chainTimeout },
75     { "workspacecolumns", Config::workspaceColumns },
76     { "", numTypes }
77   };
78
79   size_t i = 0;
80   while (options[i].type != numTypes) {
81     if (strcasecmp(name.c_str(), options[i].name) == 0) {
82       ConfigItem *item = new ConfigItem(options[i].type, value);
83       items.push_back(item);
84       break;
85     }
86     i++;
87   }
88 }