paint with alphatest when transparency enabled
[enigma2.git] / lib / gui / ewindow.h
index 33ad7a7262a1316a1b1fc86dc7f0fcb11651a77d..bb7f771cc57a72b2e921c69c44a3248afb51c954 100644 (file)
@@ -10,9 +10,10 @@ class eWindow: public eWidget
 {
        friend class eWindowStyle;
 public:
-       eWindow(eWidgetDesktop *desktop);
+       eWindow(eWidgetDesktop *desktop, int z = 0);
        ~eWindow();
        void setTitle(const std::string &string);
+       std::string getTitle() const;
        eWidget *child() { return m_child; }
        
        enum {
@@ -31,6 +32,7 @@ private:
        std::string m_title;
        eWidget *m_child;
        int m_flags;
+       eWidgetDesktop *m_desktop;
 };
 
 #endif