small fixes
[enigma2.git] / lib / gui / ewindow.h
index f5bcd51af72e3930bf394032b8890eafd4c4cdd2..a5b92eda15cb13fd1cfed19f78cb9f4e83344d35 100644 (file)
@@ -13,7 +13,15 @@ public:
        eWindow(eWidgetDesktop *desktop);
        ~eWindow();
        void setTitle(const std::string &string);
+       std::string getTitle() const;
        eWidget *child() { return m_child; }
+       
+       enum {
+               wfNoBorder = 1
+       };
+       
+       void setFlag(int flags);
+       void clearFlag(int flags);
 protected:
        enum eWindowEvents
        {
@@ -23,6 +31,7 @@ protected:
 private:
        std::string m_title;
        eWidget *m_child;
+       int m_flags;
 };
 
 #endif