blob: 3021deb86aee693fea6b283ad6894a3b3dffe749 (
plain) (
blame)
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
|
#include <raleigh/w/vbox.h>
namespace raleigh {
multicontainer::multicontainer(dllist<widget &> widgets)
: widgets(widgets) {
closest_opaque = 0;
}
void multicontainer::notify_window_change() {
set_child_offsets();
}
void multicontainer::paint(_pixel_t *pixbuf, uint32_t pitch) {
for (dllist<widget &>::node *n = widgets.first; n; n = n->next) {
if (next_paint_full)
n->d.next_paint_full = true;
n->d.paint(pixbuf, pitch);
}
if (next_paint_full)
next_paint_full = false;
}
void multicontainer::handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) {
for (dllist<widget &>::node *n = widgets.first; n; n = n->next)
if ((window_coords.x >= n->d.window_offset.x) &&
(window_coords.y >= n->d.window_offset.y) &&
(window_coords.x < n->d.window_offset.x + n->d.size.x) &&
(window_coords.y < n->d.window_offset.y + n->d.size.y))
n->d.handle_click(window_coords, click_type, up);
}
void multicontainer::notify_has_opaque_parent(widget *parent) {
closest_opaque = parent;
for (dllist<widget &>::node *n = widgets.first; n; n = n->next)
n->d.notify_has_opaque_parent(parent);
}
void multicontainer::notify_child_size_change(widget &from, coord old_size) {
set_size(determine_size());
set_child_offsets();
}
void multicontainer::on_mouse_move(coord window_coords) {
for (dllist<widget &>::node *n = widgets.first; n; n = n->next)
if ((window_coords.x >= n->d.window_offset.x) &&
(window_coords.y >= n->d.window_offset.y) &&
(window_coords.x < n->d.window_offset.x + n->d.size.x) &&
(window_coords.y < n->d.window_offset.y + n->d.size.y)) {
n->d.on_mouse_move(window_coords);
return;
}
}
}
|