-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.go
94 lines (79 loc) · 1.87 KB
/
style.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package colorstyle
import "strconv"
type Style int
func (s Style) ptrString() *string {
str := strconv.Itoa(int(s))
return &str
}
const (
Normal Style = iota // 默认值
Bold // 加粗
Grey // 灰显
Italic // 斜体
Underline // 下划线
SlowBlink // 缓慢闪烁
RapidBlink // 快速闪烁
Reverse // 反显
Hide // 隐藏
Strikethrough // 删除线
)
// 设置字体样式为常规
//
// Set font style to default
func (c *CSS) StyleDefault() *CSS {
return c.setStyle(Normal)
}
// 设置字体样式为粗体
//
// Set font style to bold
func (c *CSS) StyleBold() *CSS {
return c.setStyle(Bold)
}
// 设置字体样式为灰显
//
// Set font style to grey
func (c *CSS) StyleGrey() *CSS {
return c.setStyle(Grey)
}
// 设置字体样式为斜体
//
// Set font style to italic
func (c *CSS) StyleItalic() *CSS {
return c.setStyle(Italic)
}
// 设置字体样式为下划线
//
// Set font style to underline
func (c *CSS) StyleUnderline() *CSS {
return c.setStyle(Underline)
}
// 设置字体样式为缓慢闪烁
//
// Set font style t0 rapid blink
func (c *CSS) StyleRapidBlink() *CSS {
return c.setStyle(RapidBlink)
}
// 设置字体样式为快速闪烁
//
// Set font style t0 slow blink
func (c *CSS) StyleSlowBlink() *CSS {
return c.setStyle(SlowBlink)
}
// 设置字体样式为反显
//
// Set font style to reverse
func (c *CSS) StyleReverse() *CSS {
return c.setStyle(Reverse)
}
// 设置字体样式为隐藏
//
// Set font style to hide
func (c *CSS) StyleHide() *CSS {
return c.setStyle(Hide)
}
// 设置字体样式为删除线,可能不支持
//
// Set font style to strikethrough,may not be supported
func (c *CSS) StyleStrikethrough() *CSS {
return c.setStyle(Strikethrough)
}