aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrameTheme.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-09-12 23:37:12 (GMT)
committerfluxgen <fluxgen>2003-09-12 23:37:12 (GMT)
commitc136741213797b22a096b0e08daf2ceed9e08ab7 (patch)
tree664f7d2954811ccb5020548799b97a770ab400c4 /src/FbWinFrameTheme.hh
parent4c1c1267b62d2f63f90e1691a8cdd6ee2446995c (diff)
downloadfluxbox-c136741213797b22a096b0e08daf2ceed9e08ab7.zip
fluxbox-c136741213797b22a096b0e08daf2ceed9e08ab7.tar.bz2
added window.handleWidth and window.bevelWidth
Diffstat (limited to 'src/FbWinFrameTheme.hh')
-rw-r--r--src/FbWinFrameTheme.hh7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/FbWinFrameTheme.hh b/src/FbWinFrameTheme.hh
index ef61f1a..6b4edd4 100644
--- a/src/FbWinFrameTheme.hh
+++ b/src/FbWinFrameTheme.hh
@@ -19,7 +19,7 @@
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: FbWinFrameTheme.hh,v 1.10 2003/08/27 17:52:08 fluxgen Exp $ 22// $Id: FbWinFrameTheme.hh,v 1.11 2003/09/12 23:37:12 fluxgen Exp $
23 23
24#ifndef FBWINFRAMETHEME_HH 24#ifndef FBWINFRAMETHEME_HH
25#define FBWINFRAMETHEME_HH 25#define FBWINFRAMETHEME_HH
@@ -96,6 +96,9 @@ public:
96 unsigned char alpha() const { return *m_alpha; } 96 unsigned char alpha() const { return *m_alpha; }
97 97
98 unsigned int titleHeight() const { return *m_title_height; } 98 unsigned int titleHeight() const { return *m_title_height; }
99 unsigned int bevelWidth() const { return *m_bevel_width; }
100 unsigned int handleWidth() const { return *m_handle_width; }
101
99private: 102private:
100 FbTk::ThemeItem<FbTk::Texture> m_label_focus, m_label_unfocus; 103 FbTk::ThemeItem<FbTk::Texture> m_label_focus, m_label_unfocus;
101 FbTk::ThemeItem<FbTk::Texture> m_title_focus, m_title_unfocus; 104 FbTk::ThemeItem<FbTk::Texture> m_title_focus, m_title_unfocus;
@@ -111,7 +114,7 @@ private:
111 FbTk::ThemeItem<FbTk::Justify> m_textjustify; 114 FbTk::ThemeItem<FbTk::Justify> m_textjustify;
112 FbTk::ThemeItem<Shape::ShapePlace> m_shape_place; 115 FbTk::ThemeItem<Shape::ShapePlace> m_shape_place;
113 116
114 FbTk::ThemeItem<int> m_alpha, m_title_height; 117 FbTk::ThemeItem<int> m_alpha, m_title_height, m_bevel_width, m_handle_width;
115 BorderTheme m_border; 118 BorderTheme m_border;
116 119
117 FbTk::GContext m_label_text_focus_gc, m_label_text_unfocus_gc; 120 FbTk::GContext m_label_text_focus_gc, m_label_text_unfocus_gc;