-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont_slant.go
80 lines (69 loc) · 1.73 KB
/
font_slant.go
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
// Copyright ©2021-2022 by Richard A. Wilkes. All rights reserved.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, version 2.0. If a copy of the MPL was not distributed with
// this file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, version 2.0.
package unison
import (
"strings"
"github.com/ddkwork/toolbox/i18n"
)
// FontSlant holds the slant of a font.
type FontSlant int32
// Possible values for the slant of a font.
const (
NoSlant FontSlant = iota
ItalicSlant
ObliqueSlant
)
// Slants holds the set of possible FontSlant values.
var Slants = []FontSlant{
NoSlant,
ItalicSlant,
ObliqueSlant,
}
// MarshalText implements the encoding.TextMarshaler interface.
func (s FontSlant) MarshalText() (text []byte, err error) {
return []byte(s.Key()), nil
}
// UnmarshalText implements the encoding.TextUnmarshaler interface.
func (s *FontSlant) UnmarshalText(text []byte) error {
*s = SlantFromString(string(text))
return nil
}
// SlantFromString extracts the FontSlant from a string.
func SlantFromString(str string) FontSlant {
if str == "" {
return NoSlant
}
for s := NoSlant; s <= ObliqueSlant; s++ {
if strings.EqualFold(s.Key(), str) {
return s
}
}
return NoSlant
}
// Key returns the key that is used when serializing.
func (s FontSlant) Key() string {
switch s {
case ItalicSlant:
return "italic"
case ObliqueSlant:
return "oblique"
default:
return "upright"
}
}
func (s FontSlant) String() string {
switch s {
case ItalicSlant:
return i18n.Text("Italic")
case ObliqueSlant:
return i18n.Text("Oblique")
default:
return i18n.Text("Upright")
}
}