-
Notifications
You must be signed in to change notification settings - Fork 1
/
button.v
230 lines (201 loc) · 4.7 KB
/
button.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
// Copyright(C) 2022 Lars Pontoppidan. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module main
// import shy.mth
import shy.lib as shy
@[heap]
struct Button {
shy.Rect
mut:
app &App = unsafe { nil }
label string
scale f32 = 1.0
click_started bool
is_hovered bool
on_clicked fn (mut App) bool = unsafe { nil } // TODO V BUG: using ?fn () bool doesn't work with closures
on_hovered fn (mut App) bool = unsafe { nil } // TODO V BUG: using ?fn () bool doesn't work with closures
on_leave fn (mut App) bool = unsafe { nil } // TODO V BUG: using ?fn () bool doesn't work with closures
on_pressed fn (mut App) bool = unsafe { nil } // TODO V BUG: using ?fn () bool doesn't work with closures
}
fn (b Button) draw() {
a := b.app
mut text := b.label
area := b.Rect
draw_canvas := a.canvas()
draw_scale := a.canvas().factor
mut bgcolor := shy.colors.shy.red
if b.is_hovered {
bgcolor = shy.colors.shy.blue
if b.click_started {
bgcolor = shy.colors.shy.green
}
}
a.quick.rect(
Rect: area
origin: shy.Anchor.center
color: bgcolor
stroke: shy.Stroke{
width: 3
}
scale: b.scale
)
/*
a.quick.rect(
Rect: mouse_area
color: shy.rgba(127,127,127,180)
)*/
mut design_factor := f32(1440) / draw_canvas.width
if design_factor == 0 {
design_factor = 1
}
font_size_factor := 1 / design_factor * draw_scale * b.scale
a.quick.text(
x: area.x
y: area.y
align: .center
origin: shy.Anchor.center
size: 50 * font_size_factor
text: text
)
}
fn (mut b Button) variable_update(dt f64) {}
fn (b Button) window_rect() shy.Rect {
f := b.app.canvas().factor
sf := f32(1) / f * f
return b.Rect.mul_scalar(sf)
}
// MenuButton
@[heap]
struct MenuButton {
Button
}
fn (mb MenuButton) draw() {
a := mb.app
mut text := mb.label
area := mb.Button.Rect
draw_canvas := a.canvas()
draw_scale := a.canvas().factor
base_color := colors.blue
mut bgcolor := base_color
if mb.is_hovered {
bgcolor = base_color.lighter()
if mb.click_started {
bgcolor = base_color.darker()
}
}
a.quick.rect(
Rect: area
origin: shy.Anchor.center
color: bgcolor
stroke: shy.Stroke{
width: 3
}
scale: mb.scale
)
mut design_factor := f32(1440) / draw_canvas.width
if design_factor == 0 {
design_factor = 1
}
font_size_factor := 1 / design_factor * draw_scale * mb.scale
a.quick.text(
x: area.x
y: area.y
align: .center
origin: shy.Anchor.center
size: 48 * font_size_factor
text: text
)
}
// BackButton
@[heap]
struct BackButton {
Button
}
fn (bb BackButton) draw() {
// bb.Button.draw()
a := bb.app
mut text := bb.label
area := bb.Button.Rect
draw_canvas := a.canvas()
draw_scale := a.canvas().factor
mut color := shy.colors.shy.white
if bb.is_hovered {
color.a = 200 // shy.colors.shy.blue
if bb.click_started {
color.a = 127 // shy.colors.shy.green
}
}
mut design_factor := f32(1440) / draw_canvas.width
if design_factor == 0 {
design_factor = 1
}
font_size_factor := 1 / design_factor * draw_scale * bb.scale
a.quick.text(
x: area.x
y: area.y
align: .center
origin: shy.Anchor.center
color: color
size: 42 * font_size_factor
text: text
)
}
fn (mut bb BackButton) on_resize() {
draw_canvas := bb.app.canvas()
width := if bb.label.len > 4 { 0.12 * draw_canvas.width } else { 0.07 * draw_canvas.width }
height := 0.08 * draw_canvas.height
area := shy.Rect{
x: draw_canvas.width - 10 - width + (width * 0.5)
y: 10 + (height * 0.5)
width: width
height: height
}
// println('Area: ${area}')
bb.Button.Rect = area
}
// OptionsButton
@[heap]
struct OptionsButton {
Button
}
fn (ob OptionsButton) draw() {
// bb.Button.draw()
a := ob.app
mut text := ob.label
area := ob.Button.Rect
draw_canvas := a.canvas()
draw_scale := a.canvas().factor
mut color := shy.colors.shy.white
if ob.is_hovered {
color.a = 200 // shy.colors.shy.blue
if ob.click_started {
color.a = 127 // shy.colors.shy.green
}
}
mut design_factor := f32(1440) / draw_canvas.width
if design_factor == 0 {
design_factor = 1
}
font_size_factor := 1 / design_factor * draw_scale * ob.scale
a.quick.text(
x: area.x
y: area.y
align: .center
origin: shy.Anchor.center
color: color
size: 42 * font_size_factor
text: text
)
}
fn (mut ob OptionsButton) on_resize() {
draw_canvas := ob.app.canvas()
area := shy.Rect{
x: 10 + (0.04 * draw_canvas.width) + ((0.04 * draw_canvas.width) * 0.5)
y: 10 + ((0.08 * draw_canvas.height) * 0.5)
width: 0.11 * draw_canvas.width
height: 0.08 * draw_canvas.height
}
// println('Area: ${area}')
ob.Button.Rect = area
}