From fd4557c4adddf710979a42e9f9d470bc8b3f77bd Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Mon, 8 Mar 2021 18:06:38 -0500 Subject: hbox, better painting logic in raleigh --- src/user/raleigh/w/multicontainer.cpp | 53 +++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/user/raleigh/w/multicontainer.cpp (limited to 'src/user/raleigh/w/multicontainer.cpp') diff --git a/src/user/raleigh/w/multicontainer.cpp b/src/user/raleigh/w/multicontainer.cpp new file mode 100644 index 0000000..3021deb --- /dev/null +++ b/src/user/raleigh/w/multicontainer.cpp @@ -0,0 +1,53 @@ +#include + +namespace raleigh { + multicontainer::multicontainer(dllist 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::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::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::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::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; + } + } +} \ No newline at end of file -- cgit v1.2.3