gui: experimental Z order for root widgets
[enigma2.git] / lib / gui / ewindow.h
index f5bcd51af72e3930bf394032b8890eafd4c4cdd2..d36d912401a5e85e739426c3c2d227a2f0e29fb0 100644 (file)
@@ -10,10 +10,18 @@ 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 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