aboutsummaryrefslogtreecommitdiff
path: root/src/ToolbarTheme.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-08-27 20:13:32 (GMT)
committerfluxgen <fluxgen>2003-08-27 20:13:32 (GMT)
commit20012d911ac0d4787eca579c432cb8c4632b06c7 (patch)
treeb94be72338e4af4905224cd39b278e52752bf379 /src/ToolbarTheme.cc
parent99c95b14356b31d737aa9624f15831df0c5384b0 (diff)
downloadfluxbox-20012d911ac0d4787eca579c432cb8c4632b06c7.zip
fluxbox-20012d911ac0d4787eca579c432cb8c4632b06c7.tar.bz2
added height theme item
Diffstat (limited to 'src/ToolbarTheme.cc')
-rw-r--r--src/ToolbarTheme.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ToolbarTheme.cc b/src/ToolbarTheme.cc
index e1ed5b4..4e1e774 100644
--- a/src/ToolbarTheme.cc
+++ b/src/ToolbarTheme.cc
@@ -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: ToolbarTheme.cc,v 1.10 2003/08/16 13:36:52 fluxgen Exp $ 22// $Id: ToolbarTheme.cc,v 1.11 2003/08/27 20:13:32 fluxgen Exp $
23 23
24#include "ToolbarTheme.hh" 24#include "ToolbarTheme.hh"
25 25
@@ -50,6 +50,7 @@ ToolbarTheme::ToolbarTheme(int screen_num):
50 m_bevel_width(*this, "toolbar.bevelWidth", "Toolbar.BevelWidth"), 50 m_bevel_width(*this, "toolbar.bevelWidth", "Toolbar.BevelWidth"),
51 m_shape(*this, "toolbar.shaped", "Toolbar.Shaped"), 51 m_shape(*this, "toolbar.shaped", "Toolbar.Shaped"),
52 m_alpha(*this, "toolbar.alpha", "Toolbar.Alpha"), 52 m_alpha(*this, "toolbar.alpha", "Toolbar.Alpha"),
53 m_height(*this, "toolbar.height", "Toolbar.Height"),
53 m_display(FbTk::App::instance()->display()) { 54 m_display(FbTk::App::instance()->display()) {
54 // set default value 55 // set default value
55 *m_bevel_width = 0; 56 *m_bevel_width = 0;
@@ -70,4 +71,9 @@ void ToolbarTheme::reconfigTheme() {
70 71
71 if (*m_bevel_width > 20) 72 if (*m_bevel_width > 20)
72 *m_bevel_width = 20; 73 *m_bevel_width = 20;
74
75 if (*m_height > 100)
76 *m_height = 100;
77 else if (*m_height < 0)
78 *m_height = 0;
73} 79}