blob: 4b1dae26b7da0cfc5cc0cc6f81c18a229e9c6020 (
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
|
#ifndef RALEIGH_W_LABEL_H
#define RALEIGH_W_LABEL_H
#include <raleigh/widget.h>
#include <libfont/fonts.h>
namespace raleigh {
class label : public widget {
public:
//this pointer is used directly, and the contents of the string should not be changed afterward
label(const char *value, const char *font="fixed-10", bool bg_transparent=true,
_pixel_t fg=RGB(00, 00, 00), _pixel_t bg=RGB(bf, bf, bf));
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:
const char *const value;
const struct font_info *const fi;
bool bg_transparent;
const _pixel_t fg;
const _pixel_t bg;
};
}
#endif
|