fix linked tuners (i hope)
[enigma2.git] / lib / gui / ewindow.h
index 671a00791db0b5e1883bc332d51c1b91fe664342..33ad7a7262a1316a1b1fc86dc7f0fcb11651a77d 100644 (file)
@@ -11,8 +11,16 @@ class eWindow: public eWidget
        friend class eWindowStyle;
 public:
        eWindow(eWidgetDesktop *desktop);
+       ~eWindow();
        void setTitle(const std::string &string);
        eWidget *child() { return m_child; }
+       
+       enum {
+               wfNoBorder = 1
+       };
+       
+       void setFlag(int flags);
+       void clearFlag(int flags);
 protected:
        enum eWindowEvents
        {
@@ -22,7 +30,7 @@ protected:
 private:
        std::string m_title;
        eWidget *m_child;
-       ePtr<eWindowStyle> m_style;
+       int m_flags;
 };
 
 #endif