aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrameTheme.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:52:48 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2007-12-28 06:52:48 (GMT)
commit62bcfaf0e4fd7d77873343d880fc526ec58cdaa6 (patch)
treeb9433c7f8e0aaa5d6e9ce40e7f5257d81136815f /src/FbWinFrameTheme.hh
parent0ec165e85b313588d43dbdc2450da9838c4c528f (diff)
downloadfluxbox-62bcfaf0e4fd7d77873343d880fc526ec58cdaa6.zip
fluxbox-62bcfaf0e4fd7d77873343d880fc526ec58cdaa6.tar.bz2
move Shape to FbTk
Diffstat (limited to 'src/FbWinFrameTheme.hh')
-rw-r--r--src/FbWinFrameTheme.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbWinFrameTheme.hh b/src/FbWinFrameTheme.hh
index df3c312..af8ccb8 100644
--- a/src/FbWinFrameTheme.hh
+++ b/src/FbWinFrameTheme.hh
@@ -32,9 +32,9 @@
32#include "FbTk/BorderTheme.hh" 32#include "FbTk/BorderTheme.hh"
33#include "FbTk/Subject.hh" 33#include "FbTk/Subject.hh"
34#include "FbTk/GContext.hh" 34#include "FbTk/GContext.hh"
35#include "FbTk/Shape.hh"
35 36
36#include "IconbarTheme.hh" 37#include "IconbarTheme.hh"
37#include "Shape.hh"
38 38
39class FbWinFrameTheme: public FbTk::Theme { 39class FbWinFrameTheme: public FbTk::Theme {
40public: 40public:
@@ -83,7 +83,7 @@ public:
83 inline Cursor topSideCursor() const { return m_cursor_top_side; } 83 inline Cursor topSideCursor() const { return m_cursor_top_side; }
84 inline Cursor bottomSideCursor() const { return m_cursor_bottom_side; } 84 inline Cursor bottomSideCursor() const { return m_cursor_bottom_side; }
85 85
86 inline Shape::ShapePlace shapePlace() const { return *m_shape_place; } 86 inline FbTk::Shape::ShapePlace shapePlace() const { return *m_shape_place; }
87 inline const FbTk::BorderTheme &border(bool focus) const { return (focus ? m_border_focus : m_border_unfocus); } 87 inline const FbTk::BorderTheme &border(bool focus) const { return (focus ? m_border_focus : m_border_unfocus); }
88 88
89 unsigned int titleHeight() const { return *m_title_height; } 89 unsigned int titleHeight() const { return *m_title_height; }
@@ -106,7 +106,7 @@ private:
106 FbTk::ThemeItem<FbTk::Color> m_button_focus_color, m_button_unfocus_color; 106 FbTk::ThemeItem<FbTk::Color> m_button_focus_color, m_button_unfocus_color;
107 107
108 FbTk::ThemeItem<FbTk::Font> m_font; 108 FbTk::ThemeItem<FbTk::Font> m_font;
109 FbTk::ThemeItem<Shape::ShapePlace> m_shape_place; 109 FbTk::ThemeItem<FbTk::Shape::ShapePlace> m_shape_place;
110 110
111 FbTk::ThemeItem<int> m_title_height, m_bevel_width, m_handle_width; 111 FbTk::ThemeItem<int> m_title_height, m_bevel_width, m_handle_width;
112 FbTk::BorderTheme m_border_focus, m_border_unfocus; 112 FbTk::BorderTheme m_border_focus, m_border_unfocus;