more __deref__ changes
[enigma2.git] / lib / gui / ewindow.h
index 671a00791db0b5e1883bc332d51c1b91fe664342..265f512adeeaeaf7e99857affc99962f9ce633c2 100644 (file)
@@ -10,9 +10,20 @@ 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 {
+               wfNoBorder = 1
+       };
+
+       void setBackgroundColor(const gRGB &col);
+       
+       void setFlag(int flags);
+       void clearFlag(int flags);
 protected:
        enum eWindowEvents
        {
@@ -22,7 +33,8 @@ protected:
 private:
        std::string m_title;
        eWidget *m_child;
-       ePtr<eWindowStyle> m_style;
+       int m_flags;
+       eWidgetDesktop *m_desktop;
 };
 
 #endif