-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgrid.go
277 lines (248 loc) · 6.48 KB
/
grid.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// 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 gridChild struct {
genericChild
relWidth int
relHeight int
relX int
relY int
}
type Grid struct {
screen Screen
children []*gridChild
focused *gridChild
focusReceived bool
prevWidth int
prevHeight int
forceResize bool
columnWidths []int
rowHeights []int
onFocusChanged func(from, to Component)
}
func NewGrid() *Grid {
return &Grid{
children: []*gridChild{},
focused: nil,
prevWidth: -1,
prevHeight: -1,
forceResize: false,
columnWidths: []int{-1},
rowHeights: []int{-1},
}
}
func extend(arr []int, newSize int) []int {
newArr := make([]int, newSize)
copy(newArr, arr)
for i := len(arr); i < len(newArr); i++ {
newArr[i] = -1
}
return newArr
}
func (form *Form) SetOnFocusChanged(fn func(from, to Component)) *Form {
form.onFocusChanged = fn
return form
}
func (grid *Grid) createChild(comp Component, x, y, width, height int) *gridChild {
if x+width >= len(grid.columnWidths) {
grid.columnWidths = extend(grid.columnWidths, x+width)
}
if y+height >= len(grid.rowHeights) {
grid.rowHeights = extend(grid.rowHeights, y+height)
}
return &gridChild{
genericChild: genericChild{
screen: &ProxyScreen{Parent: grid.screen, Style: tcell.StyleDefault},
target: comp,
},
relWidth: width,
relHeight: height,
relX: x,
relY: y,
}
}
func (grid *Grid) addChild(child *gridChild) {
if child.relX+child.relWidth >= len(grid.columnWidths) {
grid.columnWidths = extend(grid.columnWidths, child.relX+child.relWidth)
}
if child.relY+child.relHeight >= len(grid.rowHeights) {
grid.rowHeights = extend(grid.rowHeights, child.relY+child.relHeight)
}
grid.children = append(grid.children, child)
grid.forceResize = true
}
func (grid *Grid) AddComponent(comp Component, x, y, width, height int) *Grid {
grid.addChild(grid.createChild(comp, x, y, width, height))
return grid
}
func (grid *Grid) RemoveComponent(comp Component) *Grid {
for index := len(grid.children) - 1; index >= 0; index-- {
if grid.children[index].target == comp {
grid.children = append(grid.children[:index], grid.children[index+1:]...)
}
}
return grid
}
func (grid *Grid) SetColumn(col, width int) *Grid {
if col >= len(grid.columnWidths) {
grid.columnWidths = extend(grid.columnWidths, col+1)
}
grid.columnWidths[col] = width
return grid
}
func (grid *Grid) SetRow(row, height int) *Grid {
if row >= len(grid.rowHeights) {
grid.rowHeights = extend(grid.rowHeights, row+1)
}
grid.rowHeights[row] = height
return grid
}
func (grid *Grid) SetColumns(columns []int) *Grid {
grid.columnWidths = columns
return grid
}
func (grid *Grid) SetRows(rows []int) *Grid {
grid.rowHeights = rows
return grid
}
func pnSum(arr []int) (int, int) {
positive := 0
negative := 0
for _, i := range arr {
if i < 0 {
negative -= i
} else {
positive += i
}
}
return positive, negative
}
func fillDynamic(arr []int, size, dynamicItems int) []int {
if dynamicItems == 0 {
return arr
}
part := size / dynamicItems
remainder := size % dynamicItems
newArr := make([]int, len(arr))
for i, val := range arr {
if val < 0 {
newArr[i] = part * -val
if remainder > 0 {
remainder--
newArr[i]++
}
} else {
newArr[i] = val
}
}
return newArr
}
func (grid *Grid) OnResize(width, height int) {
absColWidth, dynamicColumns := pnSum(grid.columnWidths)
columnWidths := fillDynamic(grid.columnWidths, width-absColWidth, dynamicColumns)
absRowHeight, dynamicRows := pnSum(grid.rowHeights)
rowHeights := fillDynamic(grid.rowHeights, height-absRowHeight, dynamicRows)
for _, child := range grid.children {
child.screen.OffsetX, _ = pnSum(columnWidths[:child.relX])
child.screen.OffsetY, _ = pnSum(rowHeights[:child.relY])
child.screen.Width, _ = pnSum(columnWidths[child.relX : child.relX+child.relWidth])
child.screen.Height, _ = pnSum(rowHeights[child.relY : child.relY+child.relHeight])
}
grid.prevWidth, grid.prevHeight = width, height
}
func (grid *Grid) Draw(screen Screen) {
width, height := screen.Size()
if grid.forceResize || grid.prevWidth != width || grid.prevHeight != height {
grid.OnResize(screen.Size())
}
grid.forceResize = false
screen.Clear()
screenChanged := false
if screen != grid.screen {
grid.screen = screen
screenChanged = true
}
for _, child := range grid.children {
if screenChanged {
child.screen.Parent = screen
}
if grid.focused == nil || child != grid.focused {
child.target.Draw(child.screen)
}
}
if grid.focused != nil {
grid.focused.target.Draw(grid.focused.screen)
}
}
func (grid *Grid) OnKeyEvent(event KeyEvent) bool {
if grid.focused != nil {
return grid.focused.target.OnKeyEvent(event)
}
return false
}
func (grid *Grid) OnPasteEvent(event PasteEvent) bool {
if grid.focused != nil {
return grid.focused.target.OnPasteEvent(event)
}
return false
}
func (grid *Grid) setFocused(item *gridChild) {
if grid.focused != nil {
grid.focused.Blur()
}
var prevFocus, newFocus Component
if grid.focused != nil {
prevFocus = grid.focused.target
}
if item != nil {
newFocus = item.target
}
grid.focused = item
if grid.focusReceived && grid.focused != nil {
grid.focused.Focus()
}
if grid.onFocusChanged != nil {
grid.onFocusChanged(prevFocus, newFocus)
}
}
func (grid *Grid) OnMouseEvent(event MouseEvent) bool {
if grid.focused != nil && grid.focused.screen.IsInArea(event.Position()) {
screen := grid.focused.screen
return grid.focused.target.OnMouseEvent(OffsetMouseEvent(event, -screen.OffsetX, -screen.OffsetY))
}
for _, child := range grid.children {
if child.screen.IsInArea(event.Position()) {
focusChanged := false
if event.Buttons() == tcell.Button1 && !event.HasMotion() {
grid.setFocused(child)
focusChanged = true
}
return child.target.OnMouseEvent(OffsetMouseEvent(event, -child.screen.OffsetX, -child.screen.OffsetY)) ||
focusChanged
}
}
if event.Buttons() == tcell.Button1 && !event.HasMotion() && grid.focused != nil {
grid.setFocused(nil)
return true
}
return false
}
func (grid *Grid) Focus() {
grid.focusReceived = true
if grid.focused != nil {
grid.focused.Focus()
}
}
func (grid *Grid) Blur() {
if grid.focused != nil {
grid.setFocused(nil)
}
grid.focusReceived = false
}