translations
[enigma2.git] / lib / gui / ewindow.h
index f5bcd51af72e3930bf394032b8890eafd4c4cdd2..33ad7a7262a1316a1b1fc86dc7f0fcb11651a77d 100644 (file)
@@ -14,6 +14,13 @@ public:
        ~eWindow();
        void setTitle(const std::string &string);
        eWidget *child() { return m_child; }
        ~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
        {
 protected:
        enum eWindowEvents
        {
@@ -23,6 +30,7 @@ protected:
 private:
        std::string m_title;
        eWidget *m_child;
 private:
        std::string m_title;
        eWidget *m_child;
+       int m_flags;
 };
 
 #endif
 };
 
 #endif