]> icculus.org git repositories - mikachu/openbox.git/blob - src/Resource.h
renamed the obResource class to Resource.
[mikachu/openbox.git] / 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 Resource {
31 public:
32   Resource(const std::string &file);
33   Resource();
34   virtual ~Resource();
35
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, int value);
56   void setValue(const std::string &rname, long value);
57   void setValue(const std::string &rname, const std::string &value);
58   void setValue(const std::string &rname, const char *value);
59
60   bool getValue(const std::string &rname, const std::string &rclass,
61                 bool &value) const;
62   bool getValue(const std::string &rname, const std::string &rclass,
63                 long &value) const;
64   bool getValue(const std::string &rname, const std::string &rclass,
65                 std::string &value) const;
66
67 private:
68   static bool m_initialized;
69   std::string m_file;
70   bool m_modified;
71   bool m_autosave;
72   XrmDatabase m_database;
73 };
74
75 #endif // __Resource_hh