]> Dogcows Code - chaz/openbox/blob - util/epist/config.cc
uber patch.
[chaz/openbox] / 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 Config::Config() {}
26
27 Config::~Config()
28 {
29 ItemList::const_iterator it = items.begin(), end = items.end();
30 for (; it != end; ++it)
31 delete *it;
32 items.clear();
33 }
34
35
36 const string &Config::getStringValue(Config::ItemType type) const
37 {
38 ItemList::const_iterator it = items.begin(), end = items.end();
39 for (; it != end; ++it) {
40 if ((*it)->getType() == type)
41 return (*it)->getStringValue();
42 }
43 }
44
45
46 int Config::getNumberValue(Config::ItemType type) const
47 {
48 ItemList::const_iterator it = items.begin(), end = items.end();
49 for (; it != end; ++it) {
50 if ((*it)->getType() == type)
51 return (*it)->getNumberValue();
52 }
53
54 return 0;
55 }
56
57
58 void Config::addOption(ConfigItem *item)
59 {
60 items.push_back(item);
61 }
62
63
64 void Config::addOption(const std::string &name, const std::string &value)
65 {
66 const struct {
67 const char *name;
68 Config::ItemType type;
69 }
70 options[] = {
71 { "notype", Config::noType },
72 { "chaintimeout", Config::chainTimeout },
73 { "workspacecolumns", Config::workspaceColumns },
74 { "", numTypes }
75 };
76
77 size_t i = 0;
78 while (options[i].type != numTypes) {
79 if (strcasecmp(name.c_str(), options[i].name) == 0) {
80 ConfigItem *item = new ConfigItem(options[i].type, value);
81 items.push_back(item);
82 break;
83 }
84 i++;
85 }
86 }
This page took 0.036205 seconds and 4 git commands to generate.