HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
label_delegate.hpp
1
2
3
4#pragma once
5
6#include "icon_delegate.hpp"
7#include "text_delegate.hpp"
8
9namespace hi { inline namespace v1 {
10
12 virtual ~label_delegate() = default;
13
19 virtual hi::label label(widget_intf const &sender) = 0;
20};
21
22
23}}
24
Defines delegate_delegate and some default text delegates.
DOXYGEN BUG.
Definition algorithm_misc.hpp:20
The HikoGUI namespace.
Definition recursive_iterator.hpp:15
constexpr Out narrow_cast(In const &rhs) noexcept
Cast numeric values without loss of precision.
Definition cast.hpp:378
Definition widget_intf.hpp:24
Definition icon_delegate.hpp:8
Definition label_delegate.hpp:11
A delegate that controls the state of a text_widget.
Definition text_delegate.hpp:33