diff options
author | fluxgen <fluxgen> | 2003-08-13 09:59:25 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-08-13 09:59:25 (GMT) |
commit | cb0c4213a4359ab65e7a383dd22f8bf21ee6044f (patch) | |
tree | 9ea9114b89ae6a2bd849fa0cb11af9e01e12cb85 /src/IconbarTheme.cc | |
parent | eebfc5b8890d6bc7c1d59917b797eb7a5daae921 (diff) | |
download | fluxbox-cb0c4213a4359ab65e7a383dd22f8bf21ee6044f.zip fluxbox-cb0c4213a4359ab65e7a383dd22f8bf21ee6044f.tar.bz2 |
border and setAntialias
Diffstat (limited to 'src/IconbarTheme.cc')
-rw-r--r-- | src/IconbarTheme.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/IconbarTheme.cc b/src/IconbarTheme.cc index cc17e67..73b46f5 100644 --- a/src/IconbarTheme.cc +++ b/src/IconbarTheme.cc | |||
@@ -8,6 +8,9 @@ IconbarTheme::IconbarTheme(int screen_num, | |||
8 | m_focused_texture(*this, name + ".focused", altname + ".Focused"), | 8 | m_focused_texture(*this, name + ".focused", altname + ".Focused"), |
9 | m_unfocused_texture(*this, name + ".unfocused", altname + ".Unfocused"), | 9 | m_unfocused_texture(*this, name + ".unfocused", altname + ".Unfocused"), |
10 | m_empty_texture(*this, name + ".empty", altname + ".Empty"), | 10 | m_empty_texture(*this, name + ".empty", altname + ".Empty"), |
11 | m_focused_border(*this, name + ".focused", altname + ".Focused"), | ||
12 | m_unfocused_border(*this, name + ".unfocused", altname + ".Unfocused"), | ||
13 | m_border(*this, name, altname), | ||
11 | m_focused_text(*this, name + ".focused", altname + ".Focused"), | 14 | m_focused_text(*this, name + ".focused", altname + ".Focused"), |
12 | m_unfocused_text(*this, name + ".unfocused", altname + ".Unfocused") { | 15 | m_unfocused_text(*this, name + ".unfocused", altname + ".Unfocused") { |
13 | 16 | ||
@@ -17,8 +20,15 @@ IconbarTheme::IconbarTheme(int screen_num, | |||
17 | IconbarTheme::~IconbarTheme() { | 20 | IconbarTheme::~IconbarTheme() { |
18 | 21 | ||
19 | } | 22 | } |
23 | |||
24 | |||
20 | void IconbarTheme::reconfigTheme() { | 25 | void IconbarTheme::reconfigTheme() { |
21 | m_focused_text.update(); | 26 | m_focused_text.update(); |
22 | m_unfocused_text.update(); | 27 | m_unfocused_text.update(); |
23 | } | 28 | } |
24 | 29 | ||
30 | void IconbarTheme::setAntialias(bool value) { | ||
31 | m_focused_text.setAntialias(value); | ||
32 | m_unfocused_text.setAntialias(value); | ||
33 | } | ||
34 | |||