25 lines
No EOL
682 B
C
25 lines
No EOL
682 B
C
#ifndef RALEIGH_W_VBOX_H
|
|
#define RALEIGH_W_VBOX_H
|
|
|
|
#include <raleigh/widget.h>
|
|
#include <structs/dllist.h>
|
|
|
|
namespace raleigh {
|
|
class vbox : public widget {
|
|
public:
|
|
//do not modify this list afterward
|
|
vbox(dllist<widget &> widgets);
|
|
|
|
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 handle_key(struct key_packet kp) override;
|
|
void on_focus() override;
|
|
void on_unfocus() override;
|
|
private:
|
|
dllist<widget &> widgets;
|
|
};
|
|
}
|
|
|
|
#endif |