1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
|
#include <lib/gui/ewidget.h>
#include <lib/gui/ewidgetdesktop.h>
extern void dumpRegion(const gRegion ®ion);
eWidget::eWidget(eWidget *parent): m_animation(this), m_parent(parent ? parent->child() : 0)
{
m_vis = 0;
m_layer = 0;
m_desktop = 0;
m_have_background_color = 0;
m_z_position = 0;
m_client_offset = eSize(0, 0);
if (m_parent)
m_vis = wVisShow;
if (m_parent)
{
insertIntoParent();
m_parent->getStyle(m_style);
}
m_current_focus = 0;
m_focus_owner = 0;
m_notify_child_on_position_change = 1;
}
void eWidget::move(ePoint pos)
{
pos = pos + m_client_offset;
if (m_position == pos)
return;
/* ?? what about native move support? */
invalidate();
m_position = pos;
event(evtChangedPosition);
if (m_notify_child_on_position_change)
for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
i->event(evtParentChangedPosition);
recalcClipRegionsWhenVisible();
/* try native move if supported. */
if ((m_vis & wVisShow) && ((!m_desktop) || m_desktop->movedWidget(this)))
invalidate();
}
void eWidget::resize(eSize size)
{
/* same strategy as with move: we first check if
the size changed at all, and if it did, we
invalidate both the old and new area.
TODO: check if either the old or new area
fits into the other completely, and invalidate
only once. */
eSize old_size = m_size;
eSize old_offset = m_client_offset;
m_client_offset = eSize(0, 0);
event(evtWillChangeSize, &size, &m_client_offset);
if (old_size == m_size)
return;
move(position() - old_offset);
invalidate();
event(evtChangedSize);
if (m_notify_child_on_position_change)
for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
i->event(evtParentChangedPosition); /* position/size is the same here */
recalcClipRegionsWhenVisible(); invalidate();
}
void eWidget::invalidate(const gRegion ®ion)
{
/* we determine the area to redraw, and re-position this
area to the absolute position, and then call the
desktop's invalidate() with that, which adds this
area into the dirty region. */
gRegion res = m_visible_with_childs;
if (region.valid())
res &= region;
if (res.empty())
return;
eWidget *root = this;
ePoint abspos = position();
int target_layer = m_layer;
while (root && !root->m_desktop)
{
root = root->m_parent;
ASSERT(root);
if (root->m_layer != -1)
target_layer = root->m_layer;
abspos += root->position();
}
res.moveBy(abspos);
// eDebug("region to invalidate:");
// dumpRegion(res);
root->m_desktop->invalidate(res, this, target_layer);
}
void eWidget::show()
{
if (m_vis & wVisShow)
return;
m_vis |= wVisShow;
// eDebug("show widget %p", this);
notifyShowHide();
/* TODO: optimize here to only recalc what's required. possibly merge with hide. */
eWidget *root = this;
ePoint abspos = position();
int target_layer = m_layer;
while (root && !root->m_desktop)
{
root = root->m_parent;
if (!root)
{
/* oops: our root widget does not have a desktop associated.
probably somebody already erased the root, but tries some
operations on a child window.
ignore them for now. */
/* ASSERT(root); */
return;
}
if (root->m_layer != -1)
target_layer = root->m_layer;
abspos += root->position();
}
root->m_desktop->recalcClipRegions(root);
gRegion abs = m_visible_with_childs;
abs.moveBy(abspos);
root->m_desktop->invalidate(abs, this, target_layer);
}
void eWidget::hide()
{
/* TODO: when hiding an upper level widget, widgets get hidden but keep the */
/* wVisShow flag (because when the widget is shown again, the widgets must */
/* become visible again. */
if (!(m_vis & wVisShow))
return;
m_vis &= ~wVisShow;
/* this is a workaround to the above problem. when we are in the delete phase,
don't hide childs. */
if (!(m_parent || m_desktop))
return;
notifyShowHide();
/* TODO: optimize here to only recalc what's required. possibly merge with show. */
eWidget *root = this;
ePoint abspos = position();
while (root && !root->m_desktop)
{
root = root->m_parent;
if (!root)
return;
abspos += root->position();
}
ASSERT(root->m_desktop);
gRegion abs = m_visible_with_childs;
abs.moveBy(abspos);
root->m_desktop->recalcClipRegions(root);
root->m_desktop->invalidate(abs);
}
void eWidget::destruct()
{
if (m_parent)
m_parent->m_childs.remove(this);
delete this;
}
void eWidget::setBackgroundColor(const gRGB &col)
{
m_background_color = col;
m_have_background_color = 1;
}
void eWidget::clearBackgroundColor()
{
m_have_background_color = 0;
}
void eWidget::setZPosition(int z)
{
m_z_position = z;
if (!m_parent)
return;
m_parent->m_childs.remove(this);
insertIntoParent(); /* now at the new Z position */
}
void eWidget::setTransparent(int transp)
{
if (isTransparent() != transp)
{
if (transp)
m_vis |= wVisTransparent;
else
m_vis &=~wVisTransparent;
recalcClipRegionsWhenVisible();
}
}
ePoint eWidget::getAbsolutePosition()
{
eWidget *root = this;
ePoint abspos = position();
while (root && !root->m_desktop)
{
root = root->m_parent;
ASSERT(root);
abspos += root->position();
}
return abspos;
}
void eWidget::mayKillFocus()
{
setFocus(0);
/* when we have the focus, remove it first. */
if (m_focus_owner)
m_focus_owner->setFocus(0);
}
eWidget::~eWidget()
{
hide();
if (m_parent)
m_parent->m_childs.remove(this);
m_parent = 0;
/* tell all childs that the parent is not anymore existing */
ePtrList<eWidget>::iterator i(m_childs.begin());
while (i != m_childs.end())
{
(*i)->parentRemoved();
i = m_childs.erase(i);
}
}
void eWidget::insertIntoParent()
{
ePtrList<eWidget>::iterator i = m_parent->m_childs.begin();
for(;;)
{
if ((i == m_parent->m_childs.end()) || (i->m_z_position > m_z_position))
{
m_parent->m_childs.insert(i, this);
return;
}
++i;
}
}
void eWidget::doPaint(gPainter &painter, const gRegion &r, int layer)
{
if (m_visible_with_childs.empty())
return;
gRegion region = r, childs = r;
/* we were in parent's space, now we are in local space */
region.moveBy(-position());
painter.moveOffset(position());
/* check if there's anything for us to paint */
if (layer == m_layer)
{
region &= m_visible_region;
if (!region.empty())
{
painter.resetClip(region);
event(evtPaint, ®ion, &painter);
}
}
childs.moveBy(-position());
/* walk all childs */
for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
i->doPaint(painter, childs, layer);
painter.moveOffset(-position());
}
void eWidget::recalcClipRegionsWhenVisible()
{
eWidget *t = this;
do
{
if (!(t->m_vis & wVisShow))
break;
if (t->m_desktop)
{
t->m_desktop->recalcClipRegions(t);
break;
}
t = t->m_parent;
ASSERT(t);
} while(1);
}
void eWidget::parentRemoved()
{
m_parent = 0;
}
int eWidget::event(int event, void *data, void *data2)
{
switch (event)
{
case evtPaint:
{
gPainter &painter = *(gPainter*)data2;
// eDebug("eWidget::evtPaint");
// dumpRegion(*(gRegion*)data);
if (!isTransparent())
{
if (!m_have_background_color)
{
ePtr<eWindowStyle> style;
if (!getStyle(style))
style->paintBackground(painter, ePoint(0, 0), size());
} else
{
painter.setBackgroundColor(m_background_color);
painter.clear();
}
} else
{
eWidget *w = this;
while (w && !w->m_have_background_color)
w = w->m_parent;
if (w)
painter.setBackgroundColor(w->m_background_color);
}
break;
}
case evtKey:
break;
case evtWillChangeSize:
m_size = *static_cast<eSize*>(data);
break;
case evtChangedSize:
m_clip_region = gRegion(eRect(ePoint(0, 0), m_size));
break;
case evtParentChangedPosition:
for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
i->event(evtParentChangedPosition);
break;
case evtFocusGot:
m_focus_owner = (eWidget*)data;
break;
case evtFocusLost:
m_focus_owner = 0;
break;
default:
return -1;
}
return 0;
}
void eWidget::setFocus(eWidget *focus)
{
if (m_current_focus)
m_current_focus->event(evtFocusLost, this);
m_current_focus = focus;
if (m_current_focus)
m_current_focus->event(evtFocusGot, this);
}
void eWidget::notifyShowHide()
{
event(evtParentVisibilityChanged);
for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
i->notifyShowHide();
}
|