blob: ebc689029ae37aa610375ca39d7cbd7b78c8b958 (
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
31
32
33
34
35
36
|
#ifndef RALEIGH_W_LABEL_H
#define RALEIGH_W_LABEL_H
#include <raleigh/s/text_flower.h>
#include <raleigh/widget.h>
#include <libfont/fonts.h>
namespace raleigh {
class label : public widget {
public:
//value's data is copied
label(const char *value, const char *font="fixed-10",
uint32_t cols=0, bool bg_transparent=true,
_pixel_t fg=RALEIGH_FG, _pixel_t bg=RALEIGH_BG);
~label();
//new_value's data is copied
void change_value(const char *new_value);
void paint(_pixel_t *pixbuf, uint32_t pitch) override;
void notify_has_opaque_parent(widget *parent) override;
private:
const struct font_info *const fi;
uint32_t cols;
bool bg_transparent;
const _pixel_t fg;
const _pixel_t bg;
text_flower tf;
coord determine_size();
};
}
#endif
|