aboutsummaryrefslogtreecommitdiff
path: root/src/RootTheme.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-09-12 23:33:13 (GMT)
committerfluxgen <fluxgen>2003-09-12 23:33:13 (GMT)
commit7e320b7d315a5ae1acf75c0d685731aaa6c2b296 (patch)
tree578997ccba5348f97d38af09ed93cb3e363b4cd1 /src/RootTheme.hh
parent5aae53172bad9dff1a1d2abb44819bcf81876129 (diff)
downloadfluxbox-7e320b7d315a5ae1acf75c0d685731aaa6c2b296.zip
fluxbox-7e320b7d315a5ae1acf75c0d685731aaa6c2b296.tar.bz2
removed bevel width and handle width
Diffstat (limited to 'src/RootTheme.hh')
-rw-r--r--src/RootTheme.hh6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/RootTheme.hh b/src/RootTheme.hh
index a23e439..3f12358 100644
--- a/src/RootTheme.hh
+++ b/src/RootTheme.hh
@@ -19,13 +19,12 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: RootTheme.hh,v 1.4 2003/09/12 21:34:22 fluxgen Exp $ 22// $Id: RootTheme.hh,v 1.5 2003/09/12 23:33:13 fluxgen Exp $
23 23
24#ifndef ROOTTHEME_HH 24#ifndef ROOTTHEME_HH
25#define ROOTTHEME_HH 25#define ROOTTHEME_HH
26 26
27#include "FbTk/Theme.hh" 27#include "FbTk/Theme.hh"
28#include "FbTk/Color.hh"
29#include "FbTk/GContext.hh" 28#include "FbTk/GContext.hh"
30 29
31#include <X11/Xlib.h> 30#include <X11/Xlib.h>
@@ -44,13 +43,10 @@ public:
44 43
45 void reconfigTheme(); 44 void reconfigTheme();
46 45
47 int bevelWidth() const { return *m_bevel_width; }
48 int handleWidth() const { return *m_handle_width; }
49 GC opGC() const { return m_opgc.gc(); } 46 GC opGC() const { return m_opgc.gc(); }
50 47
51private: 48private:
52 FbTk::ThemeItem<std::string> m_root_command; 49 FbTk::ThemeItem<std::string> m_root_command;
53 FbTk::ThemeItem<int> m_bevel_width, m_handle_width;
54 std::string &m_screen_root_command; ///< string to execute and override theme rootCommand 50 std::string &m_screen_root_command; ///< string to execute and override theme rootCommand
55 FbTk::GContext m_opgc; 51 FbTk::GContext m_opgc;
56}; 52};