-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbutton.go
118 lines (99 loc) · 2.44 KB
/
button.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// mauview - A Go TUI library based on tcell.
// Copyright © 2019 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 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/.
package mauview
import (
"github.com/gdamore/tcell/v2"
)
type Button struct {
text string
style tcell.Style
focusedStyle tcell.Style
focused bool
onClick func()
}
func NewButton(text string) *Button {
return &Button{
text: text,
style: tcell.StyleDefault.Background(Styles.ContrastBackgroundColor).Foreground(Styles.PrimaryTextColor),
focusedStyle: tcell.StyleDefault.Background(Styles.MoreContrastBackgroundColor).Foreground(Styles.PrimaryTextColor),
}
}
func (b *Button) SetText(text string) *Button {
b.text = text
return b
}
func (b *Button) SetForegroundColor(color tcell.Color) *Button {
b.style = b.style.Foreground(color)
return b
}
func (b *Button) SetBackgroundColor(color tcell.Color) *Button {
b.style = b.style.Background(color)
return b
}
func (b *Button) SetFocusedForegroundColor(color tcell.Color) *Button {
b.focusedStyle = b.focusedStyle.Foreground(color)
return b
}
func (b *Button) SetFocusedBackgroundColor(color tcell.Color) *Button {
b.focusedStyle = b.focusedStyle.Background(color)
return b
}
func (b *Button) SetStyle(style tcell.Style) *Button {
b.style = style
return b
}
func (b *Button) SetFocusedStyle(style tcell.Style) *Button {
b.focusedStyle = style
return b
}
func (b *Button) SetOnClick(fn func()) *Button {
b.onClick = fn
return b
}
func (b *Button) Focus() {
b.focused = true
}
func (b *Button) Blur() {
b.focused = false
}
func (b *Button) Draw(screen Screen) {
width, _ := screen.Size()
style := b.style
if b.focused {
style = b.focusedStyle
}
screen.SetStyle(style)
screen.Clear()
PrintWithStyle(screen, b.text, 0, 0, width, AlignCenter, style)
}
func (b *Button) Submit(event KeyEvent) bool {
if b.onClick != nil {
b.onClick()
}
return true
}
func (b *Button) OnKeyEvent(event KeyEvent) bool {
if event.Key() == tcell.KeyEnter {
if b.onClick != nil {
b.onClick()
}
return true
}
return false
}
func (b *Button) OnMouseEvent(event MouseEvent) bool {
if event.Buttons() == tcell.Button1 && !event.HasMotion() {
if b.onClick != nil {
b.onClick()
}
return true
}
return false
}
func (b *Button) OnPasteEvent(event PasteEvent) bool {
return false
}