HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
theme_text_style.hpp
1// Copyright Take Vos 2021.
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 "../exception.hpp"
8
9namespace hi::inline v1 {
10
11enum class theme_text_style : unsigned char {
12 label,
13 small_label,
14 warning,
15 error,
16 help,
17 placeholder,
18 link,
19
20 _size
21};
22
23constexpr std::size_t num_theme_text_styles = static_cast<std::size_t>(theme_text_style::_size);
24
25} // namespace hi::inline v1