diff options
Diffstat (limited to 'src/FbTk/FbPixmap.hh')
-rw-r--r-- | src/FbTk/FbPixmap.hh | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/FbTk/FbPixmap.hh b/src/FbTk/FbPixmap.hh index 7b3c8de..5c2e2b8 100644 --- a/src/FbTk/FbPixmap.hh +++ b/src/FbTk/FbPixmap.hh | |||
@@ -23,22 +23,22 @@ | |||
23 | #define FBTK_FBPIXMAP_HH | 23 | #define FBTK_FBPIXMAP_HH |
24 | 24 | ||
25 | #include "FbDrawable.hh" | 25 | #include "FbDrawable.hh" |
26 | #include "Text.hh" | 26 | #include "Text.hh" // for Orientation |
27 | 27 | ||
28 | namespace FbTk { | 28 | namespace FbTk { |
29 | 29 | ||
30 | /// a wrapper for X Pixmap | 30 | /// a wrapper for X Pixmap |
31 | class FbPixmap:public FbDrawable { | 31 | class FbPixmap:public FbDrawable { |
32 | public: | 32 | public: |
33 | FbPixmap(); | 33 | FbPixmap(); |
34 | /// copy pixmap | 34 | /// copy pixmap |
35 | FbPixmap(const FbPixmap ©); | 35 | FbPixmap(const FbPixmap ©); |
36 | /// creates a FbPixmap from X pixmap | 36 | /// creates a FbPixmap from X pixmap |
37 | explicit FbPixmap(Pixmap pm); | 37 | explicit FbPixmap(Pixmap pm); |
38 | FbPixmap(const FbDrawable &src, | 38 | FbPixmap(const FbDrawable &src, |
39 | unsigned int width, unsigned int height, | 39 | unsigned int width, unsigned int height, |
40 | unsigned int depth); | 40 | unsigned int depth); |
41 | FbPixmap(Drawable src, | 41 | FbPixmap(Drawable src, |
42 | unsigned int width, unsigned int height, | 42 | unsigned int width, unsigned int height, |
43 | unsigned int depth); | 43 | unsigned int depth); |
44 | 44 | ||
@@ -86,13 +86,6 @@ private: | |||
86 | // if pixmap not *owned* by this object (eg assigned from cache object) | 86 | // if pixmap not *owned* by this object (eg assigned from cache object) |
87 | bool m_dont_free; | 87 | bool m_dont_free; |
88 | 88 | ||
89 | /// Functions relating to the maintenance of root window pixmap caching | ||
90 | static void checkAtoms(); | ||
91 | |||
92 | // array of pixmaps: 1 per screen | ||
93 | static Pixmap *m_root_pixmaps; | ||
94 | static const char *root_prop_ids[]; | ||
95 | static Atom root_prop_atoms[]; | ||
96 | }; | 89 | }; |
97 | 90 | ||
98 | } // end namespace FbTk | 91 | } // end namespace FbTk |