-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbox.go
232 lines (209 loc) · 5.41 KB
/
box.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
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// 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 KeyCaptureFunc func(event KeyEvent) KeyEvent
type MouseCaptureFunc func(event MouseEvent) MouseEvent
type PasteCaptureFunc func(event PasteEvent) PasteEvent
type Box struct {
border bool
borderStyle tcell.Style
backgroundColor *tcell.Color
keyCapture KeyCaptureFunc
mouseCapture MouseCaptureFunc
pasteCapture PasteCaptureFunc
focusCapture func() bool
blurCapture func() bool
title string
inner Component
innerScreen *ProxyScreen
focused bool
}
func NewBox(inner Component) *Box {
return &Box{
border: true,
borderStyle: tcell.StyleDefault,
backgroundColor: &Styles.PrimitiveBackgroundColor,
inner: inner,
innerScreen: &ProxyScreen{OffsetX: 1, OffsetY: 1},
}
}
func (box *Box) Focus() {
box.focused = true
if box.focusCapture != nil {
if box.focusCapture() {
return
}
}
focusable, ok := box.inner.(Focusable)
if ok {
focusable.Focus()
}
}
func (box *Box) Blur() {
box.focused = false
if box.blurCapture != nil {
if box.blurCapture() {
return
}
}
focusable, ok := box.inner.(Focusable)
if ok {
focusable.Blur()
}
}
func (box *Box) SetBorder(border bool) *Box {
box.border = border
if border {
box.innerScreen.OffsetY = 1
box.innerScreen.OffsetX = 1
} else {
box.innerScreen.OffsetY = 0
box.innerScreen.OffsetX = 0
}
return box
}
func (box *Box) SetBorderStyle(borderStyle tcell.Style) *Box {
box.borderStyle = borderStyle
return box
}
func (box *Box) SetTitle(title string) *Box {
box.title = title
return box
}
func (box *Box) SetInnerComponent(component Component) *Box {
box.inner = component
return box
}
func (box *Box) SetMouseCaptureFunc(mouseCapture MouseCaptureFunc) *Box {
box.mouseCapture = mouseCapture
return box
}
func (box *Box) SetKeyCaptureFunc(keyCapture KeyCaptureFunc) *Box {
box.keyCapture = keyCapture
return box
}
func (box *Box) SetPasteCaptureFunc(pasteCapture PasteCaptureFunc) *Box {
box.pasteCapture = pasteCapture
return box
}
func (box *Box) SetFocusCaptureFunc(focusCapture func() bool) *Box {
box.focusCapture = focusCapture
return box
}
func (box *Box) SetBlurCaptureFunc(blurCapture func() bool) *Box {
box.blurCapture = blurCapture
return box
}
func (box *Box) SetBackgroundColor(color tcell.Color) *Box {
box.backgroundColor = &color
return box
}
func (box *Box) drawBorder(screen Screen) {
width, height := screen.Size()
var vertical, horizontal, topLeft, topRight, bottomLeft, bottomRight rune
if box.focused {
horizontal = Borders.HorizontalFocus
vertical = Borders.VerticalFocus
topLeft = Borders.TopLeftFocus
topRight = Borders.TopRightFocus
bottomLeft = Borders.BottomLeftFocus
bottomRight = Borders.BottomRightFocus
} else {
horizontal = Borders.Horizontal
vertical = Borders.Vertical
topLeft = Borders.TopLeft
topRight = Borders.TopRight
bottomLeft = Borders.BottomLeft
bottomRight = Borders.BottomRight
}
borderStyle := box.borderStyle
if box.backgroundColor != nil {
borderStyle = borderStyle.Background(*box.backgroundColor)
}
for x := 0; x < width; x++ {
screen.SetContent(x, 0, horizontal, nil, borderStyle)
screen.SetContent(x, height-1, horizontal, nil, borderStyle)
}
Print(screen, box.title, 1, 0, width-2, AlignCenter, Styles.BorderColor)
for y := 0; y < height; y++ {
screen.SetContent(0, y, vertical, nil, borderStyle)
screen.SetContent(width-1, y, vertical, nil, borderStyle)
}
screen.SetContent(0, 0, topLeft, nil, borderStyle)
screen.SetContent(width-1, 0, topRight, nil, borderStyle)
screen.SetContent(0, height-1, bottomLeft, nil, borderStyle)
screen.SetContent(width-1, height-1, bottomRight, nil, borderStyle)
}
func (box *Box) Draw(screen Screen) {
width, height := screen.Size()
border := false
if box.backgroundColor != nil {
screen.SetStyle(tcell.StyleDefault.Background(*box.backgroundColor))
screen.Clear()
}
if box.border && width >= 2 && height >= 2 {
border = true
box.drawBorder(screen)
}
if box.inner != nil {
if border {
box.innerScreen.Width = width - 2
box.innerScreen.Height = height - 2
} else {
box.innerScreen.Width = width
box.innerScreen.Height = height
}
box.innerScreen.Parent = screen
box.inner.Draw(box.innerScreen)
}
}
func (box *Box) OnKeyEvent(event KeyEvent) bool {
if box.keyCapture != nil {
event = box.keyCapture(event)
if event == nil {
return true
}
}
if box.inner != nil {
return box.inner.OnKeyEvent(event)
}
return false
}
func (box *Box) OnPasteEvent(event PasteEvent) bool {
if box.pasteCapture != nil {
event = box.pasteCapture(event)
if event == nil {
return true
}
}
if box.inner != nil {
return box.inner.OnPasteEvent(event)
}
return false
}
func (box *Box) OnMouseEvent(event MouseEvent) bool {
if box.border {
event = OffsetMouseEvent(event, -1, -1)
}
x, y := event.Position()
if x < 0 || y < 0 || x > box.innerScreen.Width || y > box.innerScreen.Height {
return false
}
if box.mouseCapture != nil {
event = box.mouseCapture(event)
if event == nil {
return true
}
}
if box.inner != nil {
return box.inner.OnMouseEvent(event)
}
return false
}