HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
unicode_decomposition_type.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 <cstdint>
8
9namespace hi::inline v1 {
10
11enum class unicode_decomposition_type : uint8_t {
12 canonical = 0,
13 font = 1,
14 no_break = 2,
15 arabic = 3,
16 circle = 4,
17 math = 5,
18 asian = 6,
19 compat = 7
20};
21
22}