diff options
author | Benji Dial <benji6283@gmail.com> | 2021-03-05 18:07:48 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-03-05 18:07:48 -0500 |
commit | 76e39eac8cee2175ec62a191f7c91ca53857e80c (patch) | |
tree | 156946f6e8f491235453aa3cbecfda43d6baa2a7 /src/user/include/cxx/raleigh/w/label.h | |
parent | 5e5e524f08ad653a7bf5d6e97f3a49f6c27d08fa (diff) | |
download | portland-os-76e39eac8cee2175ec62a191f7c91ca53857e80c.tar.gz |
more raleigh, including button and vbox widgets
Diffstat (limited to 'src/user/include/cxx/raleigh/w/label.h')
-rw-r--r-- | src/user/include/cxx/raleigh/w/label.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/user/include/cxx/raleigh/w/label.h b/src/user/include/cxx/raleigh/w/label.h index 51bf541..d133841 100644 --- a/src/user/include/cxx/raleigh/w/label.h +++ b/src/user/include/cxx/raleigh/w/label.h @@ -8,16 +8,19 @@ 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", - _pixel_t bg=RGB(bf, bf, bf), _pixel_t fg=RGB(00, 00, 00)); + 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; + bool try_handle_click(coord window_coords, enum mouse_packet::mouse_button click_type, bool up) override __attribute__ ((const)); + void notify_has_opaque_parent(widget *parent) override; private: const char *const value; const struct font_info *const fi; - const _pixel_t bg; + bool bg_transparent; const _pixel_t fg; + const _pixel_t bg; }; } |