summaryrefslogtreecommitdiff
path: root/src/user/include/cxx/raleigh/w/label.h
blob: a78ce467fccb0714dbfc594486f1c3ba4fc4a57a (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
#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:
    //value's data is copied
    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 change_value(const char *new_value);

    void paint(_pixel_t *pixbuf, uint32_t pitch) override;
    void notify_has_opaque_parent(widget *parent) override;
  private:
    char *value;
    uint32_t v_size;
    const struct font_info *const fi;
    bool bg_transparent;
    const _pixel_t fg;
    const _pixel_t bg;
  };
}

#endif