X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ba02fb4aced5868d047a5bffbd2ed87583daee4d..7373f39fe2ebe1b5007ed56ddd86d9ce0ad3efb7:/lib/gui/ewindow.h diff --git a/lib/gui/ewindow.h b/lib/gui/ewindow.h index f5bcd51a..265f512a 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