diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2008-08-14 05:52:39 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2008-08-14 05:52:39 (GMT) |
commit | e169d33552c8e7070aa6e13da0187f2013b4cfc3 (patch) | |
tree | ae9e92c7e885791c7f47645184070cbcd441ab94 /src/OSDWindow.hh | |
parent | c82e7c0080f8a5c14dcf95ec92dc42f59ea9dd8b (diff) | |
parent | 91ca3bc5c8e2b892a9a81b18246f72aba7deebfd (diff) | |
download | fluxbox_lack-e169d33552c8e7070aa6e13da0187f2013b4cfc3.zip fluxbox_lack-e169d33552c8e7070aa6e13da0187f2013b4cfc3.tar.bz2 |
Merge branch 'master' into to_push
Diffstat (limited to 'src/OSDWindow.hh')
-rw-r--r-- | src/OSDWindow.hh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/OSDWindow.hh b/src/OSDWindow.hh index 3fd5c42..4a070a2 100644 --- a/src/OSDWindow.hh +++ b/src/OSDWindow.hh | |||
@@ -46,6 +46,13 @@ public: | |||
46 | void hide(); | 46 | void hide(); |
47 | 47 | ||
48 | bool isVisible() const { return m_visible; } | 48 | bool isVisible() const { return m_visible; } |
49 | BScreen &screen() const { return m_screen; } | ||
50 | FbTk::ThemeProxy<FbWinFrameTheme> &theme() { return m_theme; } | ||
51 | protected: | ||
52 | /// Force visible status, use with care. | ||
53 | void setVisible(bool visible) { | ||
54 | m_visible = visible; | ||
55 | } | ||
49 | 56 | ||
50 | private: | 57 | private: |
51 | void show(); | 58 | void show(); |