]> Dogcows Code - chaz/openbox/blob - src/Resource.h
added the obResource class which handles Xresouce database files in a sane manner
[chaz/openbox] / src / Resource.h
1 // Resource.h for Openbox
2 // Copyright (c) 2002 - 2002 Ben Jansens (ben@orodu.net)
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a
5 // copy of this software and associated documentation files (the "Software"),
6 // to deal in the Software without restriction, including without limitation
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 // and/or sell copies of the Software, and to permit persons to whom the
9 // Software is furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 // DEALINGS IN THE SOFTWARE.
21
22 #ifndef __Resource_hh
23 #define __Resource_hh
24
25 #include <string>
26
27 #include <X11/Xlib.h>
28 #include <X11/Xresource.h>
29
30 class obResource {
31 public:
32 obResource(const std::string &file);
33 virtual ~obResource();
34
35 // an empty string is an invalid value for the file and will cause an assert
36 inline const std::string &file() const {
37 return static_cast<const std::string &>(m_file);
38 }
39 void setFile(const std::string &file);
40
41 // defaults to true!
42 inline bool autoSave() const {
43 return m_autosave;
44 }
45 void setAutoSave(bool);
46
47 inline bool isModified() const {
48 return m_modified;
49 }
50
51 void save();
52 bool load();
53
54 void setValue(const std::string &rname, bool value);
55 void setValue(const std::string &rname, long value);
56 void setValue(const std::string &rname, const std::string &value);
57 void setValue(const std::string &rname, const char *value);
58
59 bool getValue(const std::string &rname, const std::string &rclass,
60 bool &value) const;
61 bool getValue(const std::string &rname, const std::string &rclass,
62 long &value) const;
63 bool getValue(const std::string &rname, const std::string &rclass,
64 std::string &value) const;
65
66 private:
67 std::string m_file;
68 bool m_modified;
69 bool m_autosave;
70 XrmDatabase m_database;
71 };
72
73 #endif // __Resource_hh
This page took 0.041813 seconds and 4 git commands to generate.