Support gles animation.
[vuplus_dvbapp] / lib / gui / ewindow.h
index 265f512..ee1e7d8 100644 (file)
@@ -15,6 +15,9 @@ public:
        void setTitle(const std::string &string);
        std::string getTitle() const;
        eWidget *child() { return m_child; }
+
+       void show();
+       void hide();
        
        enum {
                wfNoBorder = 1
@@ -24,6 +27,7 @@ public:
        
        void setFlag(int flags);
        void clearFlag(int flags);
+       void setAnimationMode(int mode);
 protected:
        enum eWindowEvents
        {
@@ -35,6 +39,7 @@ private:
        eWidget *m_child;
        int m_flags;
        eWidgetDesktop *m_desktop;
+       int m_animation_mode;
 };
 
 #endif