diff options
Diffstat (limited to 'src/ToolbarTheme.cc')
-rw-r--r-- | src/ToolbarTheme.cc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/ToolbarTheme.cc b/src/ToolbarTheme.cc index b7ffc4b..f1a68c7 100644 --- a/src/ToolbarTheme.cc +++ b/src/ToolbarTheme.cc | |||
@@ -1,5 +1,5 @@ | |||
1 | // ToolbarTheme.cc a theme class for Toolbar | 1 | // ToolbarTheme.cc a theme class for Toolbar |
2 | // Copyright (c) 2002 Henrik Kinnunen (fluxgen at users.sourceforge.net) | 2 | // Copyright (c) 2002-2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) |
3 | // | 3 | // |
4 | // Permission is hereby granted, free of charge, to any person obtaining a | 4 | // Permission is hereby granted, free of charge, to any person obtaining a |
5 | // copy of this software and associated documentation files (the "Software"), | 5 | // copy of this software and associated documentation files (the "Software"), |
@@ -19,11 +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: ToolbarTheme.cc,v 1.12 2003/08/28 13:57:16 fluxgen Exp $ | 22 | // $Id: ToolbarTheme.cc,v 1.13 2003/10/13 23:47:38 fluxgen Exp $ |
23 | 23 | ||
24 | #include "ToolbarTheme.hh" | 24 | #include "ToolbarTheme.hh" |
25 | 25 | ||
26 | #include "App.hh" | 26 | #include "FbTk/App.hh" |
27 | |||
27 | #include <iostream> | 28 | #include <iostream> |
28 | using namespace std; | 29 | using namespace std; |
29 | 30 | ||
@@ -51,12 +52,13 @@ ToolbarTheme::ToolbarTheme(int screen_num): | |||
51 | m_shape(*this, "toolbar.shaped", "Toolbar.Shaped"), | 52 | m_shape(*this, "toolbar.shaped", "Toolbar.Shaped"), |
52 | m_alpha(*this, "toolbar.alpha", "Toolbar.Alpha"), | 53 | m_alpha(*this, "toolbar.alpha", "Toolbar.Alpha"), |
53 | m_height(*this, "toolbar.height", "Toolbar.Height"), | 54 | m_height(*this, "toolbar.height", "Toolbar.Height"), |
54 | m_display(FbTk::App::instance()->display()) { | 55 | m_button_size(*this, "toolbar.button.size", "Toolbar.Button.Size") { |
55 | // set default value | 56 | // set default value |
56 | *m_bevel_width = 0; | 57 | *m_bevel_width = 0; |
57 | *m_alpha = 255; | 58 | *m_alpha = 255; |
58 | *m_shape = false; | 59 | *m_shape = false; |
59 | *m_height = 0; | 60 | *m_height = 0; |
61 | *m_button_size = -1; | ||
60 | } | 62 | } |
61 | 63 | ||
62 | ToolbarTheme::~ToolbarTheme() { | 64 | ToolbarTheme::~ToolbarTheme() { |
@@ -76,4 +78,7 @@ void ToolbarTheme::reconfigTheme() { | |||
76 | *m_height = 100; | 78 | *m_height = 100; |
77 | else if (*m_height < 0) | 79 | else if (*m_height < 0) |
78 | *m_height = 0; | 80 | *m_height = 0; |
81 | |||
82 | if (*m_button_size > 100) | ||
83 | *m_button_size = 100; | ||
79 | } | 84 | } |