1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#[derive(Default, PartialEq, Clone, Debug)]
pub struct Font {
pub weight: Option<Weight>,
pub style: Option<Style>,
pub underline: Option<bool>,
pub strike_out: Option<bool>,
pub size: Option<FontSize>,
pub capitalisation: Option<Capitalisation>,
pub families: Option<Vec<String>>,
pub letter_spacing: Option<isize>,
pub letter_spacing_type: Option<SpacingType>,
pub word_spacing: Option<isize>,
}
impl Font {
pub fn new() -> Self {
Font {
..Default::default()
}
}
pub fn set_bold(&mut self) {
self.weight = Some(Weight::Bold)
}
pub fn bold(&self) -> bool {
self.weight >= Some(Weight::Bold)
}
pub fn set_italic(&mut self) {
self.style = Some(Style::Italic)
}
pub fn italic(&self) -> bool {
self.style >= Some(Style::Italic)
}
pub fn family(&self) -> Option<&String> {
if let Some(families) = &self.families {
return families.first();
} else {
None
}
}
}
#[derive(PartialEq, Clone, Copy, Debug)]
pub struct FontSize {
size_type: SizeType,
size: usize,
}
impl PartialOrd for FontSize {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
if self.size_type.eq(&other.size_type) {
self.size.partial_cmp(&other.size)
} else {
None
}
}
}
#[derive(PartialEq, Clone, Copy, Debug)]
pub enum SizeType {
Point,
Pixel,
}
pub enum UnderlineStyle {}
#[derive(PartialEq, Clone, Copy, Debug)]
pub enum Capitalisation {
MixedCase,
AllUppercase,
AllLowercase,
SmallCaps,
Capitalize,
}
impl Default for Capitalisation {
fn default() -> Self {
Capitalisation::MixedCase
}
}
#[derive(PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum Style {
Normal,
Italic,
Oblique,
}
impl Default for Style {
fn default() -> Self {
Style::Normal
}
}
#[derive(PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum SpacingType {
PercentageSpacing,
AbsoluteSpacing,
}
impl Default for SpacingType {
fn default() -> Self {
SpacingType::PercentageSpacing
}
}
#[derive(PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum Weight {
Thin = 100,
ExtraLight = 200,
Light = 300,
Normal = 400,
Medium = 500,
DemiBold = 600,
Bold = 700,
ExtraBold = 800,
Black = 900,
}
impl Default for Weight {
fn default() -> Self {
Weight::Normal
}
}