X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fgui%2Fewindow.h;h=265f512adeeaeaf7e99857affc99962f9ce633c2;hb=ba5fcab217438b995c1f903e0294b71d1411668b;hp=f5bcd51af72e3930bf394032b8890eafd4c4cdd2;hpb=ba02fb4aced5868d047a5bffbd2ed87583daee4d;p=vuplus_dvbapp diff --git a/lib/gui/ewindow.h b/lib/gui/ewindow.h index f5bcd51..265f512 100644 --- a/lib/gui/ewindow.h +++ b/lib/gui/ewindow.h @@ -10,10 +10,20 @@ 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); protected: enum eWindowEvents { @@ -23,6 +33,8 @@ protected: private: std::string m_title; eWidget *m_child; + int m_flags; + eWidgetDesktop *m_desktop; }; #endif