diff options
author | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-05-09 17:39:02 (GMT) |
---|---|---|
committer | Henrik Kinnunen <fluxgen@fluxbox.org> | 2008-05-09 17:39:02 (GMT) |
commit | c31638038aabd93c74373c7ee00fbefbc68d28ae (patch) | |
tree | da658ad65f64c24495cfdc169449250efb5caac0 /src/OSDWindow.hh | |
parent | 05fa2be09642ff135eb32a4528103adf89cd71e7 (diff) | |
download | fluxbox_pavel-c31638038aabd93c74373c7ee00fbefbc68d28ae.zip fluxbox_pavel-c31638038aabd93c74373c7ee00fbefbc68d28ae.tar.bz2 |
Fixed so tooltip window in the iconbar when the title changes.
Diffstat (limited to 'src/OSDWindow.hh')
-rw-r--r-- | src/OSDWindow.hh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/OSDWindow.hh b/src/OSDWindow.hh index e11a531..4a070a2 100644 --- a/src/OSDWindow.hh +++ b/src/OSDWindow.hh | |||
@@ -46,8 +46,15 @@ public: | |||
46 | void hide(); | 46 | void hide(); |
47 | 47 | ||
48 | bool isVisible() const { return m_visible; } | 48 | bool isVisible() const { return m_visible; } |
49 | 49 | BScreen &screen() const { return m_screen; } | |
50 | FbTk::ThemeProxy<FbWinFrameTheme> &theme() { return m_theme; } | ||
50 | protected: | 51 | protected: |
52 | /// Force visible status, use with care. | ||
53 | void setVisible(bool visible) { | ||
54 | m_visible = visible; | ||
55 | } | ||
56 | |||
57 | private: | ||
51 | void show(); | 58 | void show(); |
52 | 59 | ||
53 | BScreen &m_screen; | 60 | BScreen &m_screen; |