add (simple) shadow for eLabel
[enigma2.git] / lib / gui / ewidget.h
1 #ifndef __lib_gui_ewidget_h
2 #define __lib_gui_ewidget_h
3
4 #include <lib/gdi/grc.h> /* for gRegion */
5 #include <lib/base/eptrlist.h> /* for eSmartPtrList */
6 #include <lib/gui/ewindowstyle.h> /* for eWindowStyle */
7 #include <lib/gui/ewidgetanimation.h>
8
9 class eWidgetDesktop;class eWidgetDesktop;
10
11 class eWidget
12 {
13         friend class eWidgetDesktop;
14 public:
15         eWidget(eWidget *parent);
16         
17         void move(ePoint pos);
18         void resize(eSize size);
19         
20         ePoint position() const { return m_position; }
21         eSize size() const { return m_size; }
22
23         void invalidate(const gRegion &region = gRegion::invalidRegion());
24         
25                 /* the window were to attach childs to. Normally, this 
26                    is "this", but it can be overridden in case a widget
27                    has a "client area", which is implemented as a child
28                    widget. eWindow overrides this, for example. */
29         virtual eWidget *child() { return this; }
30
31         void show();
32         void hide();
33         
34         void destruct();
35         
36         int getStyle(ePtr<eWindowStyle> &style) { if (!m_style) return 1; style = m_style; return 0; }
37         void setStyle(eWindowStyle *style) { m_style = style; }
38         
39         void setBackgroundColor(const gRGB &col);
40         void clearBackgroundColor();
41         
42         void setZPosition(int z);
43         void setTransparent(int transp);
44         
45                 /* untested code */
46         int isVisible() { return (m_vis & wVisShow) && ((!m_parent) || m_parent->isVisible()); }
47                 /* ... */
48                 
49         int isTransparent() { return m_vis & wVisTransparent; }
50         
51         ePoint getAbsolutePosition();
52         
53         eWidgetAnimation m_animation;
54 private:
55         eWidgetDesktop *m_desktop;
56
57         enum { 
58                 wVisShow = 1,
59                 wVisTransparent = 2,
60         };
61         
62         int m_vis;      
63
64         ePtrList<eWidget> m_childs;
65         ePoint m_position;
66         eSize m_size;
67                 /* will be accounted when there's a client offset */
68         eSize m_client_offset;
69         eWidget *m_parent;
70         
71         ePtr<eWindowStyle> m_style;
72         
73         void insertIntoParent();
74         void doPaint(gPainter &painter, const gRegion &region);
75         void recalcClipRegionsWhenVisible();
76         
77         void parentRemoved();
78         
79         gRGB m_background_color;
80         int m_have_background_color;
81         
82         eWidget *m_current_focus, *m_focus_owner;
83         
84         int m_z_position;
85         
86 protected:
87         virtual ~eWidget();
88         void mayKillFocus();
89 public:
90
91                 // all in local space!
92         gRegion m_clip_region, m_visible_region, m_visible_with_childs;
93         struct eWidgetDesktopCompBuffer *m_comp_buffer;
94         
95         enum eWidgetEvent
96         {
97                 evtPaint,
98                 evtKey,
99                 evtChangedPosition,
100                 evtChangedSize,
101                 
102                 evtWillShow,
103                 evtWillHide,
104                 evtWillChangePosition, /* new size is eRect *data */
105                 evtWillChangeSize,
106                 
107                 evtAction,
108                 
109                 evtFocusGot,
110                 evtFocusLost,
111                 
112                 evtUserWidget,
113         };
114         virtual int event(int event, void *data = 0, void *data2 = 0);
115         void setFocus(eWidget *focus);
116 };
117
118 extern eWidgetDesktop *getDesktop(int which);
119
120 #endif