]>
Dogcows Code - chaz/openbox/blob - src/Resource.h
1 // Resource.h for Openbox
2 // Copyright (c) 2002 - 2002 Ben Jansens (ben@orodu.net)
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:
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
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.
28 #include <X11/Xresource.h>
32 obResource(const std::string
&file
);
34 virtual ~obResource();
36 inline const std::string
&file() const {
37 return static_cast<const std::string
&>(m_file
);
39 void setFile(const std::string
&file
);
42 inline bool autoSave() const {
45 void setAutoSave(bool);
47 inline bool isModified() const {
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
);
60 bool getValue(const std::string
&rname
, const std::string
&rclass
,
62 bool getValue(const std::string
&rname
, const std::string
&rclass
,
64 bool getValue(const std::string
&rname
, const std::string
&rclass
,
65 std::string
&value
) const;
68 static bool m_initialized
;
72 XrmDatabase m_database
;
75 #endif // __Resource_hh
This page took 0.03808 seconds and 5 git commands to generate.