summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/raleigh/w/multicontainer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/include/cxx/raleigh/w/multicontainer.h')
-rw-r--r--src/user/include/cxx/raleigh/w/multicontainer.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/user/include/cxx/raleigh/w/multicontainer.h b/src/user/include/cxx/raleigh/w/multicontainer.h
new file mode 100644
index 0000000..5ced74f
--- /dev/null
+++ b/src/user/include/cxx/raleigh/w/multicontainer.h
@@ -0,0 +1,29 @@
+#ifndef RALEIGH_W_MULTICONTAINER_H
+#define RALEIGH_W_MULTICONTAINER_H
+
+#include <raleigh/widget.h>
+#include <structs/dllist.h>
+
+namespace raleigh {
+ class multicontainer : public widget {
+ public:
+ void notify_window_change() override;
+ void paint(_pixel_t *pixbuf, uint32_t pitch) override;
+ void handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) override;
+ void notify_has_opaque_parent(widget *parent) override;
+ void notify_child_size_change(widget &from, coord old_size) override;
+ void on_mouse_move(coord window_coords) override;
+
+ protected:
+ //do not modify this list afterward
+ //set size to determine_size() in derived constructor
+ multicontainer(dllist<widget &> widgets);
+
+ virtual coord determine_size() = 0;
+ virtual void set_child_offsets() = 0;
+
+ dllist<widget &> widgets;
+ };
+}
+
+#endif \ No newline at end of file