HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
semantic_text_style.hpp
1// Copyright Take Vos 2022.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include "../enum_metadata.hpp"
8
9namespace hi::inline v1 {
10
11enum class semantic_text_style : unsigned char { label, small_label, warning, error, help, placeholder, link };
12
13// clang-format off
14constexpr auto semantic_text_style_metadata = enum_metadata{
15 semantic_text_style::label, "label",
16 semantic_text_style::small_label, "small-label",
17 semantic_text_style::warning, "warning",
18 semantic_text_style::error, "error",
19 semantic_text_style::help, "help",
20 semantic_text_style::placeholder, "placeholder",
21 semantic_text_style::link, "link",
22};
23// clang-format on
24
25} // namespace hi::inline v1
DOXYGEN BUG.
Definition algorithm.hpp:15