blob: 216b9842fd0eed59c6aa9dc2823638793d5bbe4b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef RALEIGH_W_PADDING_H
#define RALEIGH_W_PADDING_H
#include <raleigh/widget.h>
namespace raleigh {
class padding : public widget {
public:
padding(widget &inner, uint32_t pad_by);
void notify_window_change() override;
void paint(_pixel_t *pixbuf, uint32_t pitch) override;
bool try_handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) override;
void notify_has_opaque_parent(widget *parent) override;
private:
widget &inner;
uint32_t pad_by;
};
}
#endif
|