HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
unicode_grapheme_cluster_break.hpp
1// Copyright Take Vos 2020.
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_grapheme_cluster_break : uint8_t {
12 Other,
13 CR,
14 LF,
15 Control,
16 Extend,
17 ZWJ,
18 Regional_Indicator,
19 Prepend,
20 SpacingMark,
21 L,
22 V,
23 T,
24 LV,
25 LVT,
26 Extended_Pictographic
27};
28
29}