summaryrefslogtreecommitdiff
path: root/src/user/raleigh/w/vbox.cpp
blob: 263da2a893bd9b3b7ac4bec88afe42ae91dd2676 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <raleigh/w/vbox.h>

namespace raleigh {
  vbox::vbox(dllist<widget &> widgets) : widgets(widgets) {
    uint32_t w = 0, h = 0;
    for (dllist<widget &>::node *n = widgets.first; n; n = n->next) {
      n->d.parent = this;
      h += n->d.size.y;
      if (n->d.size.x > w)
        w = n->d.size.x;
    }
    size = coord(w, h);
    closest_opaque = 0;
  }

  void vbox::notify_window_change() {
    uint32_t h = window_offset.y;
    for (dllist<widget &>::node *n = widgets.first; n; n = n->next) {
      n->d.w = w;
      n->d.window_offset = coord(window_offset.x + size.x / 2 - n->d.size.x / 2, h);
      n->d.notify_window_change();
      h += n->d.size.y;
    }
  }

  void vbox::paint(_pixel_t *pixbuf, uint32_t pitch) {
    for (dllist<widget &>::node *n = widgets.first; n; n = n->next)
      n->d.paint(pixbuf, pitch);
  }

  void vbox::handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) {
    uint32_t h = window_offset.y;
    dllist<widget &>::node *n = widgets.first;
    while (h + n->d.size.y <= window_coords.y) {
      h += n->d.size.y;
      n = n->next;
    }
    if ((window_coords.x >= n->d.window_offset.x) &&
        (window_coords.x < n->d.window_offset.x + n->d.size.x))
      n->d.handle_click(window_coords, click_type, up);
  }

  void vbox::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 vbox::notify_child_size_change(widget &from, coord old_size) {
    if ((old_size.y == from.size.y) && (from.size.x <= size.x)) {
      from.window_offset.x = window_offset.x + size.x / 2 - from.size.x / 2;
      from.notify_window_change();
    }

    else {//lazy, less efficient approach
      uint32_t h = 0, w = 0;
      for (dllist<widget &>::node *n = widgets.first; n; n = n->next) {
        h += n->d.size.y;
        if (n->d.size.x > w)
          w = n->d.size.x;
      }
      set_size(coord(w, h));
      notify_window_change();
    }
  }
}