X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dba614edd2aad3c17e244914eaef3809d8300cb1..34c3f1a742135c764ced560e8479e77129082301:/lib/gui/ewidget.h diff --git a/lib/gui/ewidget.h b/lib/gui/ewidget.h index 97eb1434..345977f2 100644 --- a/lib/gui/ewidget.h +++ b/lib/gui/ewidget.h @@ -33,6 +33,13 @@ public: int getStyle(ePtr &style) { if (!m_style) return 1; style = m_style; return 0; } void setStyle(eWindowStyle *style) { m_style = style; } + void setBackgroundColor(const gRGB &col); + void clearBackgroundColor(); + + /* untested code */ + int isVisible() { return (m_vis & wVisShow) && ((!m_parent) || m_parent->isVisible()); } + /* ... */ + private: eWidgetDesktop *m_desktop; @@ -52,8 +59,14 @@ private: void doPaint(gPainter &painter, const gRegion ®ion); void recalcClipRegionsWhenVisible(); + + gRGB m_background_color; + int m_have_background_color; + + eWidget *m_current_focus, *m_focus_owner; protected: virtual ~eWidget(); + void mayKillFocus(); public: // all in local space! @@ -73,9 +86,13 @@ public: evtAction, + evtFocusGot, + evtFocusLost, + evtUserWidget, }; virtual int event(int event, void *data = 0, void *data2 = 0); + void setFocus(eWidget *focus); }; extern eWidgetDesktop *getDesktop();