diff options
Diffstat (limited to 'src/FbRootWindow.hh')
-rw-r--r-- | src/FbRootWindow.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FbRootWindow.hh b/src/FbRootWindow.hh index 34b8219..8e97cc3 100644 --- a/src/FbRootWindow.hh +++ b/src/FbRootWindow.hh | |||
@@ -38,9 +38,17 @@ public: | |||
38 | Visual *visual() const { return m_visual; } | 38 | Visual *visual() const { return m_visual; } |
39 | Colormap colormap() const { return m_colormap; } | 39 | Colormap colormap() const { return m_colormap; } |
40 | 40 | ||
41 | int decorationDepth() const { return m_decorationDepth; } | ||
42 | Visual *decorationVisual() const { return m_decorationVisual; } | ||
43 | Colormap decorationColormap() const { return m_decorationColormap; } | ||
44 | |||
41 | private: | 45 | private: |
42 | Visual *m_visual; | 46 | Visual *m_visual; |
43 | Colormap m_colormap; | 47 | Colormap m_colormap; |
48 | |||
49 | int m_decorationDepth; | ||
50 | Visual *m_decorationVisual; | ||
51 | Colormap m_decorationColormap; | ||
44 | }; | 52 | }; |
45 | 53 | ||
46 | #endif // FBROOTWINDOW_HH | 54 | #endif // FBROOTWINDOW_HH |