use eEnv::resolve() / eEnv.resolve()
[vuplus_dvbapp] / lib / gui / ewindow.h
index 33ad7a7..265f512 100644 (file)
@@ -10,14 +10,17 @@ 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);
@@ -31,6 +34,7 @@ private:
        std::string m_title;
        eWidget *m_child;
        int m_flags;
+       eWidgetDesktop *m_desktop;
 };
 
 #endif