diff options
Diffstat (limited to 'src/FbWinFrameTheme.cc')
-rw-r--r-- | src/FbWinFrameTheme.cc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/FbWinFrameTheme.cc b/src/FbWinFrameTheme.cc index ece7dcc..d42501c 100644 --- a/src/FbWinFrameTheme.cc +++ b/src/FbWinFrameTheme.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: FbWinFrameTheme.cc,v 1.2 2003/02/15 01:55:45 fluxgen Exp $ | 22 | // $Id: FbWinFrameTheme.cc,v 1.3 2003/02/23 01:02:52 fluxgen Exp $ |
23 | 23 | ||
24 | #include "FbWinFrameTheme.hh" | 24 | #include "FbWinFrameTheme.hh" |
25 | #include "App.hh" | 25 | #include "App.hh" |
@@ -60,7 +60,8 @@ FbWinFrameTheme::FbWinFrameTheme(int screen_num): | |||
60 | Window rootwin = RootWindow(disp, screen_num); | 60 | Window rootwin = RootWindow(disp, screen_num); |
61 | m_label_text_focus_gc = XCreateGC(disp, rootwin, 0, 0); | 61 | m_label_text_focus_gc = XCreateGC(disp, rootwin, 0, 0); |
62 | m_label_text_unfocus_gc = XCreateGC(disp, rootwin, 0, 0); | 62 | m_label_text_unfocus_gc = XCreateGC(disp, rootwin, 0, 0); |
63 | 63 | m_button_pic_focus_gc = XCreateGC(disp, rootwin, 0, 0); | |
64 | m_button_pic_unfocus_gc = XCreateGC(disp, rootwin, 0, 0); | ||
64 | } | 65 | } |
65 | 66 | ||
66 | FbWinFrameTheme::~FbWinFrameTheme() { | 67 | FbWinFrameTheme::~FbWinFrameTheme() { |
@@ -68,6 +69,8 @@ FbWinFrameTheme::~FbWinFrameTheme() { | |||
68 | Display *disp = FbTk::App::instance()->display(); | 69 | Display *disp = FbTk::App::instance()->display(); |
69 | XFreeGC(disp, m_label_text_focus_gc); | 70 | XFreeGC(disp, m_label_text_focus_gc); |
70 | XFreeGC(disp, m_label_text_unfocus_gc); | 71 | XFreeGC(disp, m_label_text_unfocus_gc); |
72 | XFreeGC(disp, m_button_pic_focus_gc); | ||
73 | XFreeGC(disp, m_button_pic_unfocus_gc); | ||
71 | } | 74 | } |
72 | 75 | ||
73 | void FbWinFrameTheme::reconfigTheme() { | 76 | void FbWinFrameTheme::reconfigTheme() { |
@@ -82,6 +85,12 @@ void FbWinFrameTheme::reconfigTheme() { | |||
82 | gcv.foreground = m_label_unfocus_color->pixel(); | 85 | gcv.foreground = m_label_unfocus_color->pixel(); |
83 | XChangeGC(disp, m_label_text_unfocus_gc, gc_value_mask, &gcv); | 86 | XChangeGC(disp, m_label_text_unfocus_gc, gc_value_mask, &gcv); |
84 | 87 | ||
88 | gcv.foreground = m_button_focus_color->pixel(); | ||
89 | XChangeGC(disp, m_button_pic_focus_gc, gc_value_mask, &gcv); | ||
90 | |||
91 | gcv.foreground = m_button_unfocus_color->pixel(); | ||
92 | XChangeGC(disp, m_button_pic_unfocus_gc, gc_value_mask, &gcv); | ||
93 | |||
85 | // notify listeners | 94 | // notify listeners |
86 | m_theme_change.notify(); | 95 | m_theme_change.notify(); |
87 | } | 96 | } |