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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
use crate::ModelError;

#[derive(Default, Eq, 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>,
    /// Sets the word spacing for the font to spacing. Word spacing changes the default spacing between individual words. A positive value increases the word spacing by a corresponding amount of pixels, while a negative value decreases the inter-word spacing accordingly.
    pub word_spacing: Option<isize>,
}

impl Font {
    pub fn new() -> Self {
        Font {
            ..Default::default()
        }
    }

    pub fn set_bold(&mut self, is_bold: bool) {
        if is_bold {
            self.weight = Some(Weight::Bold)
        } else {
            self.weight = Some(Weight::Normal)
        }
    }

    pub fn bold(&self) -> bool {
        self.weight >= Some(Weight::Bold)
    }

    pub fn set_italic(&mut self, is_italic: bool) {
        if is_italic {
            self.style = Some(Style::Italic)
        } else {
            self.style = Some(Style::Normal)
        }
    }

    pub fn italic(&self) -> bool {
        self.style >= Some(Style::Italic)
    }

    pub fn family(&self) -> Option<&String> {
        if let Some(families) = &self.families {
            families.first()
        } else {
            None
        }
    }

    // pub fn to_string(&self) -> String {
    //     "".to_string()
    // }

    // pub fn from_string(&self, string: &String) -> Result<(), FontError>{

    // }

    pub(crate) fn merge_with(&mut self, other_font: &Self) -> Result<(), ModelError>
    where
        Self: Sized,
    {
        if let Some(value) = other_font.weight {
            self.weight = Some(value);
        }

        if let Some(value) = other_font.style {
            self.style = Some(value);
        }

        if let Some(value) = other_font.underline {
            self.underline = Some(value);
        }

        if let Some(value) = other_font.strike_out {
            self.strike_out = Some(value);
        }

        if let Some(value) = other_font.size {
            self.size = Some(value);
        }

        if let Some(value) = other_font.capitalisation {
            self.capitalisation = Some(value);
        }

        if let Some(value) = other_font.families.clone() {
            self.families = Some(value);
        }
        if let Some(value) = other_font.letter_spacing {
            self.letter_spacing = Some(value);
        }
        if let Some(value) = other_font.letter_spacing_type {
            self.letter_spacing_type = Some(value);
        }
        if let Some(value) = other_font.word_spacing {
            self.word_spacing = Some(value);
        }

        Ok(())
    }
}
#[derive(Eq, 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(Eq, PartialEq, Clone, Copy, Debug)]
pub enum SizeType {
    Point,
    Pixel,
}

pub enum UnderlineStyle {}
#[derive(Eq, PartialEq, Clone, Copy, Debug)]
pub enum Capitalisation {
    MixedCase,
    AllUppercase,
    AllLowercase,
    SmallCaps,
    Capitalize,
}

impl Default for Capitalisation {
    fn default() -> Self {
        Capitalisation::MixedCase
    }
}

#[derive(Eq, PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum Style {
    /// Normal glyphs used in unstyled text.
    Normal,
    /// Italic glyphs that are specifically designed for the purpose of representing italicized text.
    Italic,
    /// Glyphs with an italic appearance that are typically based on the unstyled glyphs, but are not fine-tuned for the purpose of representing italicized text.
    Oblique,
}

impl Default for Style {
    fn default() -> Self {
        Style::Normal
    }
}

/// Spacing between letters
#[derive(Eq, PartialEq, PartialOrd, Clone, Copy, Debug)]
pub enum SpacingType {
    /// A value of 100 will keep the spacing unchanged; a value of 200 will enlarge the spacing after a character by the width of the character itself.
    PercentageSpacing,
    /// A positive value increases the letter spacing by the corresponding pixels; a negative value decreases the spacing.
    AbsoluteSpacing,
}

impl Default for SpacingType {
    fn default() -> Self {
        SpacingType::PercentageSpacing
    }
}

/// Predefined font weights. Compatible with OpenType. A weight of 1 will be thin, whilst 1000 will be extremely black.
#[derive(Eq, 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
    }
}