X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ba02fb4aced5868d047a5bffbd2ed87583daee4d..e854296fa3301e16885ff959bb083b0f18919c44:/lib/gui/ewindow.h diff --git a/lib/gui/ewindow.h b/lib/gui/ewindow.h index f5bcd51a..a5b92eda 100644 --- a/lib/gui/ewindow.h +++ b/lib/gui/ewindow.h @@ -13,7 +13,15 @@ public: eWindow(eWidgetDesktop *desktop); ~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