Kiwano Engine v1.3.x
TextStyle.h
1// Copyright (c) 2016-2018 Kiwano - Nomango
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy
4// of this software and associated documentation files (the "Software"), to deal
5// in the Software without restriction, including without limitation the rights
6// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7// copies of the Software, and to permit persons to whom the Software is
8// furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19// THE SOFTWARE.
20
21#pragma once
22#include <kiwano/render/Brush.h>
23#include <kiwano/render/Color.h>
24#include <kiwano/render/Font.h>
25#include <kiwano/render/StrokeStyle.h>
26
27namespace kiwano
28{
38enum class TextAlign
39{
40 Left,
41 Right,
42 Center,
44};
45
51{
52 NoWrap,
53 Wrap,
55 WholeWord,
56 Character,
57};
58
63class KGE_API TextStyle
64{
65public:
69 float wrap_width;
73
74public:
79 TextStyle();
80
86 TextStyle(Font font);
87
95 TextStyle(StringView font_family, float font_size, uint32_t font_weight = FontWeight::Normal);
96};
97
100} // namespace kiwano
字体
Definition: Font.h:112
文本样式
Definition: TextStyle.h:64
Font font
字体
Definition: TextStyle.h:72
TextWordWrapping word_wrapping
换行模式
Definition: TextStyle.h:70
TextAlign alignment
对齐方式
Definition: TextStyle.h:71
bool show_strikethrough
显示删除线
Definition: TextStyle.h:67
bool show_underline
显示下划线
Definition: TextStyle.h:66
float wrap_width
自动换行宽度
Definition: TextStyle.h:69
float line_spacing
行间距
Definition: TextStyle.h:68
TextWordWrapping
换行方式
Definition: TextStyle.h:51
TextAlign
文本对齐方式
Definition: TextStyle.h:39
@ EmergencyBreak
必要时在任意字符处换行,即使不在单词边界
@ Character
允许在任意字符处进行换行
@ NoWrap
不进行换行,文本将超出布局边界(默认)
@ WholeWord
仅在完整的单词边界处进行换行
@ Wrap
包裹模式,重复画笔内容
@ Justified
两端对齐
@ Center
居中对齐
@ Normal
正常
Definition: Font.h:46