fix -T
[enigma2.git] / lib / gui / ewidgetdesktop.h
index f88efa8823552cec5deb2baaa1870e28c1b8a706..7237df96a2107b6c3a2d1dcddb4653d6542cb8e8 100644 (file)
@@ -54,7 +54,8 @@ public:
        void setPalette(gPixmap &pm);
        
        void setRedrawTask(eMainloop &ml);
-       
+
+       void makeCompatiblePixmap(ePtr<gPixmap> &pm);
        void makeCompatiblePixmap(gPixmap &pm);
        
        enum {
@@ -63,6 +64,9 @@ public:
        };
        
        void setCompositionMode(int mode);
+       
+       int getStyleID() { return m_style_id; }
+       void setStyleID(int id) { m_style_id = id; }
 private:
        ePtrList<eWidget> m_root;
        void calcWidgetClipRegion(eWidget *widget, gRegion &parent_visible);
@@ -83,6 +87,8 @@ private:
        void notify();
        
        void clearVisibility(eWidget *widget);
+       
+       int m_style_id;
 };
 
 #endif