-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
ProgressIndicator.go
128 lines (101 loc) · 2.69 KB
/
ProgressIndicator.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
package giu
import (
"image"
"math"
"sync"
"time"
"github.com/AllenDang/cimgui-go/imgui"
)
var _ Disposable = &progressIndicatorState{}
type progressIndicatorState struct {
angle float64
stop bool
m *sync.Mutex
}
func (ps *progressIndicatorState) update() {
ticker := time.NewTicker(time.Second / 60)
for {
ps.m.Lock()
if ps.stop {
ps.m.Unlock()
break
}
if ps.angle > 6.2 {
ps.angle = 0
}
ps.angle += 0.1
ps.m.Unlock()
Update()
<-ticker.C
}
ticker.Stop()
}
// Dispose implements Disposable interface.
func (ps *progressIndicatorState) Dispose() {
ps.m.Lock()
ps.stop = true
ps.m.Unlock()
}
// static check to ensure if ProgressIndicatorWidget implements Widget interface.
var _ Widget = &ProgressIndicatorWidget{}
// ProgressIndicatorWidget represents progress indicator widget
// see examples/extrawidgets/.
type ProgressIndicatorWidget struct {
internalID ID
width float32
height float32
radius float32
label string
}
// ProgressIndicator creates a new ProgressIndicatorWidget.
func ProgressIndicator(label string, width, height, radius float32) *ProgressIndicatorWidget {
return &ProgressIndicatorWidget{
internalID: GenAutoID("###giu-progress-indicator"),
width: width,
height: height,
radius: radius,
label: label,
}
}
// Build implements Widget interface.
func (p *ProgressIndicatorWidget) Build() {
// State exists
if state := GetState[progressIndicatorState](Context, p.internalID); state == nil {
// Register state and start go routine
ps := progressIndicatorState{
angle: 0.0,
stop: false,
m: &sync.Mutex{},
}
SetState(Context, p.internalID, &ps)
go ps.update()
} else {
child := Child().Border(false).Size(p.width, p.height).Layout(Layout{
Custom(func() {
// Process width and height
width, height := GetAvailableRegion()
canvas := GetCanvas()
pos := GetCursorScreenPos()
centerPt := pos.Add(image.Pt(int(width/2), int(height/2)))
state.m.Lock()
angle := state.angle
state.m.Unlock()
centerPt2 := image.Pt(
int(float64(p.radius)*math.Sin(angle)+float64(centerPt.X)),
int(float64(p.radius)*math.Cos(angle)+float64(centerPt.Y)),
)
color := imgui.StyleColorVec4(imgui.ColText)
rgba := Vec4ToRGBA(*color)
canvas.AddCircle(centerPt, p.radius, rgba, int32(p.radius), p.radius/20.0)
canvas.AddCircleFilled(centerPt2, p.radius/5, rgba)
// Draw text
if p.label != "" {
labelWidth, _ := CalcTextSize(Context.FontAtlas.RegisterString(p.label))
labelPos := centerPt.Add(image.Pt(-1*int(labelWidth/2), int(p.radius+p.radius/5+8)))
canvas.AddText(labelPos, rgba, p.label)
}
}),
})
child.Build()
}
}