-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathflex.go
175 lines (155 loc) · 3.84 KB
/
flex.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
// 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 FlexDirection int
const (
FlexRow FlexDirection = iota
FlexColumn
)
type flexChild struct {
genericChild
size int
}
type Flex struct {
direction FlexDirection
children []flexChild
focused *flexChild
}
func NewFlex() *Flex {
return &Flex{
children: []flexChild{},
focused: nil,
direction: FlexColumn,
}
}
func (flex *Flex) SetDirection(direction FlexDirection) *Flex {
flex.direction = direction
return flex
}
func (flex *Flex) AddFixedComponent(comp Component, size int) *Flex {
flex.AddProportionalComponent(comp, -size)
return flex
}
func (flex *Flex) AddProportionalComponent(comp Component, size int) *Flex {
flex.children = append(flex.children, flexChild{
genericChild: genericChild{
target: comp,
screen: &ProxyScreen{Style: tcell.StyleDefault},
},
size: -size,
})
return flex
}
func (flex *Flex) RemoveComponent(comp Component) *Flex {
for index := len(flex.children) - 1; index >= 0; index-- {
if flex.children[index].target == comp {
flex.children = append(flex.children[:index], flex.children[index+1:]...)
}
}
return flex
}
func (flex *Flex) Draw(screen Screen) {
width, height := screen.Size()
screen.Clear()
relTotalSize := width
if flex.direction == FlexRow {
relTotalSize = height
}
relParts := 0
for _, child := range flex.children {
if child.size > 0 {
relTotalSize -= child.size
} else {
relParts -= child.size
}
}
offset := 0
for _, child := range flex.children {
child.screen.Parent = screen
size := child.size
if size < 0 {
size = relTotalSize * (-size) / relParts
}
if flex.direction == FlexRow {
child.screen.Height = size
child.screen.Width = width
child.screen.OffsetY = offset
child.screen.OffsetX = 0
} else {
child.screen.Height = height
child.screen.Width = size
child.screen.OffsetY = 0
child.screen.OffsetX = offset
}
offset += size
if flex.focused == nil || child != *flex.focused {
child.target.Draw(child.screen)
}
}
if flex.focused != nil {
flex.focused.target.Draw(flex.focused.screen)
}
}
func (flex *Flex) OnKeyEvent(event KeyEvent) bool {
if flex.focused != nil {
return flex.focused.target.OnKeyEvent(event)
}
return false
}
func (flex *Flex) OnPasteEvent(event PasteEvent) bool {
if flex.focused != nil {
return flex.focused.target.OnPasteEvent(event)
}
return false
}
func (flex *Flex) SetFocused(comp Component) {
for i := range flex.children {
childp := &flex.children[i]
if childp.target == comp {
flex.focused = childp
flex.focused.Focus()
break
}
}
}
func (flex *Flex) OnMouseEvent(event MouseEvent) bool {
if flex.focused != nil && flex.focused.screen.IsInArea(event.Position()) {
screen := flex.focused.screen
return flex.focused.target.OnMouseEvent(OffsetMouseEvent(event, -screen.OffsetX, -screen.OffsetY))
}
for _, child := range flex.children {
if child.screen.IsInArea(event.Position()) {
focusChanged := false
if event.Buttons() == tcell.Button1 && !event.HasMotion() {
if flex.focused != nil {
flex.focused.Blur()
}
flex.focused = &child
flex.focused.Focus()
focusChanged = true
}
return child.target.OnMouseEvent(OffsetMouseEvent(event, -child.screen.OffsetX, -child.screen.OffsetY)) ||
focusChanged
}
}
if event.Buttons() == tcell.Button1 && flex.focused != nil && !event.HasMotion() {
flex.focused.Blur()
flex.focused = nil
return true
}
return false
}
func (flex *Flex) Focus() {}
func (flex *Flex) Blur() {
if flex.focused != nil {
flex.focused.Blur()
flex.focused = nil
}
}