This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/raleigh/widget.cpp

22 lines
No EOL
605 B
C++

#include <raleigh/widget.h>
#include <knob/format.h>
namespace raleigh {
widget::widget()
: parent(0) {}
void widget::notify_window_change() {}
void widget::handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) {}
void widget::handle_key(struct key_packet kp) {}
void widget::on_focus() {}
void widget::on_unfocus() {}
void widget::notify_child_size_change(widget &child, coord old_size) {}
void widget::set_size(coord new_size) {
coord old_size = size;
size = new_size;
if (w)
w->notify_widget_size_change(*this, old_size);
}
}