-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface_layout.v
231 lines (216 loc) · 4.81 KB
/
interface_layout.v
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
// Copyright (c) 2020-2022 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by a GPL license
// that can be found in the LICENSE file.
module ui
import eventbus
pub interface Layout {
id string
get_ui() &UI
get_state() voidptr
size() (int, int)
get_children() []Widget
get_subscriber() &eventbus.Subscriber
mut:
resize(w int, h int)
update_layout()
draw()
}
pub fn (l &Layout) set_children_depth(z_index int) {
for mut child in l.get_children() {
if child is Layout {
l2 := child as Layout
l2.set_children_depth(z_index)
}
child.z_index = z_index
}
}
pub fn (l &Layout) incr_children_depth(z_inc int) {
// println("incr_children_depth $l.id z_inc=$z_inc")
for mut child in l.get_children() {
if child is Layout {
l2 := child as Layout
l2.incr_children_depth(z_inc)
}
// println("child $child.id z_index +($z_inc)")
child.z_index += z_inc
}
}
pub fn (l &Layout) has_child_id(widget_id string) bool {
// println("has_child_id children: ${l.get_children().len} => ${l.get_children().map(it.id)}")
for child in l.get_children() {
// println("has_child: <$child.id> == <$widget_id>")
if child.id == widget_id {
return true
}
if child is Layout {
// println("$child.id is layout")
l2 := child as Layout
if l2.has_child_id(widget_id) {
return true
}
}
}
return false
}
pub fn (l &Layout) has_child(widget &Widget) bool {
return l.has_child_id(widget.id)
}
//---- Layout focusable methods
pub fn (layout Layout) unfocus_all() {
// println('window.unfocus_all()')
for mut child in layout.get_children() {
if child is Layout {
l := child as Layout
l.unfocus_all()
} else if child is Focusable {
mut f := child as Focusable
f.unfocus()
}
}
}
pub fn (layout Layout) set_focus_next() bool {
mut focused_found := false
mut window := layout.get_ui().window
for mut child in layout.get_children() {
$if focus ? {
println('child to focus_next $child.id() ${child is Focusable} ')
}
focused_found = if child is Layout {
l := child as Layout
l.set_focus_next()
} else {
false
}
if focused_found {
break
}
if child is Focusable {
mut f := child as Focusable
if f.has_focusable() {
// Focus on the next widget
if window.do_focus {
f.focus()
focused_found = true
window.do_focus = false
break
} else {
window.do_focus = f.is_focused
}
}
}
}
return focused_found
}
pub fn (layout Layout) set_focus_prev() bool {
mut focused_found := false
mut window := layout.get_ui().window
for mut child in layout.get_children().reverse() {
$if focus ? {
println('child to focus_prev $child.id() $child.type_name() ${child is Focusable}')
}
focused_found = if child is Layout {
l := child as Layout
l.set_focus_prev()
} else {
false
}
if focused_found {
break
}
if child is Focusable {
mut f := child as Focusable
if f.has_focusable() {
// Focus on the next widget
if window.do_focus {
f.focus()
focused_found = true
window.do_focus = false
break
} else {
window.do_focus = f.is_focused
}
}
}
}
return focused_found
}
pub fn (layout Layout) set_focus_first() bool {
mut doit := false
for child in layout.get_children() {
doit = if child is Layout {
l := child as Layout
l.set_focus_first()
} else if child is Focusable {
mut f := child as Focusable
if f.has_focusable() {
// Focus on the next widget
f.focus()
true
} else {
false
}
} else {
false
}
if doit {
break
}
}
return doit
}
pub fn (layout Layout) set_focus_last() bool {
mut doit := false
for child in layout.get_children().reverse() {
doit = if child is Layout {
l := child as Layout
l.set_focus_last()
} else if child is Focusable {
mut f := child as Focusable
if f.has_focusable() {
// Focus on the next widget
f.focus()
true
} else {
false
}
} else {
false
}
if doit {
break
}
}
return doit
}
pub fn (l Layout) has_scrollview() bool {
if l is ScrollableWidget {
sw := l as ScrollableWidget
return has_scrollview(sw)
} else {
return false
}
}
pub fn (l Layout) has_scrollview_or_parent_scrollview() bool {
if l is ScrollableWidget {
sw := l as ScrollableWidget
return has_scrollview_or_parent_scrollview(sw)
} else {
return false
}
}
// Debug function to explore the tree of children
pub fn (l Layout) debug_show_children_tree(level int) {
if level == 0 {
println('_'.repeat(80))
if l is Stack {
println('${' '.repeat(level)} root Stack $l.id $l.size()')
}
}
for i, mut child in l.get_children() {
println('${' '.repeat(level)} $level:$i -> $child.id ($child.type_name()) ($child.x, $child.y) $child.size() z_index: $child.z_index')
if child is Layout {
c := child as Layout
c.debug_show_children_tree(level + 1)
}
}
}