7#include "../utility/utility.hpp"
8#include "../macros.hpp"
11hi_export_module(hikogui.text.semantic_text_style);
14hi_export
namespace hi::inline
v1 {
16enum class semantic_text_style :
unsigned char { label, small_label, warning, error, help, placeholder, link };
19constexpr auto semantic_text_style_metadata = enum_metadata{
20 semantic_text_style::label,
"label",
21 semantic_text_style::small_label,
"small-label",
22 semantic_text_style::warning,
"warning",
23 semantic_text_style::error,
"error",
24 semantic_text_style::help,
"help",
25 semantic_text_style::placeholder,
"placeholder",
26 semantic_text_style::link,
"link",
DOXYGEN BUG.
Definition algorithm_misc.hpp:20