-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
progress_windows.go
284 lines (248 loc) · 6.56 KB
/
progress_windows.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
278
279
280
281
282
283
284
package zenity
import (
"context"
"sync"
"syscall"
"unsafe"
"github.com/ncruces/zenity/internal/win"
)
func progress(opts options) (ProgressDialog, error) {
if opts.title == nil {
opts.title = ptr("")
}
if opts.okLabel == nil {
opts.okLabel = ptr("OK")
}
if opts.cancelLabel == nil {
opts.cancelLabel = ptr("Cancel")
}
if opts.maxValue == 0 {
opts.maxValue = 100
}
if opts.ctx == nil {
opts.ctx = context.Background()
} else if cerr := opts.ctx.Err(); cerr != nil {
return nil, cerr
}
dlg := &progressDialog{
done: make(chan struct{}),
max: opts.maxValue,
close: opts.autoClose,
}
dlg.init.Add(1)
go func() {
dlg.err = dlg.setup(opts)
close(dlg.done)
}()
dlg.init.Wait()
return dlg, nil
}
type progressDialog struct {
init sync.WaitGroup
done chan struct{}
err error
max int
close bool
wnd win.HWND
textCtl win.HWND
progCtl win.HWND
okBtn win.HWND
cancelBtn win.HWND
extraBtn win.HWND
font font
}
func (d *progressDialog) Text(text string) error {
select {
default:
win.SetWindowText(d.textCtl, strptr(text))
return nil
case <-d.done:
return d.err
}
}
func (d *progressDialog) Value(value int) error {
if value >= d.max && d.close {
return d.Close()
}
select {
default:
win.SendMessage(d.progCtl, win.PBM_SETPOS, uintptr(value), 0)
if value >= d.max {
win.EnableWindow(d.okBtn, true)
}
return nil
case <-d.done:
return d.err
}
}
func (d *progressDialog) MaxValue() int {
return d.max
}
func (d *progressDialog) Done() <-chan struct{} {
return d.done
}
func (d *progressDialog) Complete() error {
select {
default:
win.SetWindowLong(d.progCtl, win.GWL_STYLE, win.WS_CHILD|win.WS_VISIBLE|win.PBS_SMOOTH)
win.SendMessage(d.progCtl, win.PBM_SETRANGE32, 0, 1)
win.SendMessage(d.progCtl, win.PBM_SETPOS, 1, 0)
win.EnableWindow(d.okBtn, true)
win.EnableWindow(d.cancelBtn, false)
return nil
case <-d.done:
return d.err
}
}
func (d *progressDialog) Close() error {
win.SendMessage(d.wnd, win.WM_SYSCOMMAND, win.SC_CLOSE, 0)
<-d.done
if d.err == ErrCanceled {
return nil
}
return d.err
}
func (dlg *progressDialog) setup(opts options) error {
var once sync.Once
defer once.Do(dlg.init.Done)
owner, _ := opts.attach.(win.HWND)
defer setup(owner)()
dlg.font = getFont()
defer dlg.font.delete()
icon, _ := getIcon(opts.windowIcon)
defer icon.delete()
if opts.ctx != nil && opts.ctx.Err() != nil {
return opts.ctx.Err()
}
instance, err := win.GetModuleHandle(nil)
if err != nil {
return err
}
cls, err := registerClass(instance, icon.handle, syscall.NewCallback(progressProc))
if err != nil {
return err
}
defer win.UnregisterClass(cls, instance)
dlg.wnd, _ = win.CreateWindowEx(_WS_EX_ZEN_DIALOG,
cls, strptr(*opts.title), _WS_ZEN_DIALOG,
win.CW_USEDEFAULT, win.CW_USEDEFAULT,
281, 133, owner, 0, instance, unsafe.Pointer(dlg))
dlg.textCtl, _ = win.CreateWindowEx(0,
strptr("STATIC"), nil, _WS_ZEN_LABEL,
12, 10, 241, 16, dlg.wnd, 0, instance, nil)
var flags uint32 = win.WS_CHILD | win.WS_VISIBLE | win.PBS_SMOOTH
if opts.maxValue < 0 {
flags |= win.PBS_MARQUEE
}
dlg.progCtl, _ = win.CreateWindowEx(0,
strptr(win.PROGRESS_CLASS),
nil, flags,
12, 30, 241, 16, dlg.wnd, 0, instance, nil)
if !opts.noCancel || !opts.autoClose {
dlg.okBtn, _ = win.CreateWindowEx(0,
strptr("BUTTON"), strptr(quoteAccelerators(*opts.okLabel)),
_WS_ZEN_BUTTON|win.BS_DEFPUSHBUTTON|win.WS_DISABLED,
12, 58, 75, 24, dlg.wnd, win.IDOK, instance, nil)
}
if !opts.noCancel {
dlg.cancelBtn, _ = win.CreateWindowEx(0,
strptr("BUTTON"), strptr(quoteAccelerators(*opts.cancelLabel)),
_WS_ZEN_BUTTON,
12, 58, 75, 24, dlg.wnd, win.IDCANCEL, instance, nil)
}
if opts.extraButton != nil {
dlg.extraBtn, _ = win.CreateWindowEx(0,
strptr("BUTTON"), strptr(quoteAccelerators(*opts.extraButton)),
_WS_ZEN_BUTTON,
12, 58, 75, 24, dlg.wnd, win.IDNO, instance, nil)
}
dlg.layout(getDPI(dlg.wnd))
centerWindow(dlg.wnd)
win.ShowWindow(dlg.wnd, win.SW_NORMAL)
if opts.maxValue < 0 {
win.SendMessage(dlg.progCtl, win.PBM_SETMARQUEE, 1, 0)
} else {
win.SendMessage(dlg.progCtl, win.PBM_SETRANGE32, 0, uintptr(opts.maxValue))
}
once.Do(dlg.init.Done)
if opts.ctx != nil && opts.ctx.Done() != nil {
wait := make(chan struct{})
defer close(wait)
go func() {
select {
case <-opts.ctx.Done():
win.SendMessage(dlg.wnd, win.WM_SYSCOMMAND, win.SC_CLOSE, 0)
case <-wait:
}
}()
}
if err := win.MessageLoop(win.HWND(dlg.wnd)); err != nil {
return err
}
if opts.ctx != nil && opts.ctx.Err() != nil {
return opts.ctx.Err()
}
return dlg.err
}
func (d *progressDialog) layout(dpi dpi) {
font := d.font.forDPI(dpi)
win.SendMessage(d.textCtl, win.WM_SETFONT, font, 1)
win.SendMessage(d.okBtn, win.WM_SETFONT, font, 1)
win.SendMessage(d.cancelBtn, win.WM_SETFONT, font, 1)
win.SendMessage(d.extraBtn, win.WM_SETFONT, font, 1)
win.SetWindowPos(d.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(133), win.SWP_NOMOVE|win.SWP_NOZORDER)
win.SetWindowPos(d.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), win.SWP_NOZORDER)
win.SetWindowPos(d.progCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(16), win.SWP_NOZORDER)
pos := 178
if d.cancelBtn != 0 {
win.SetWindowPos(d.cancelBtn, 0, dpi.scale(pos), dpi.scale(58), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
pos -= 83
}
if d.extraBtn != 0 {
win.SetWindowPos(d.extraBtn, 0, dpi.scale(pos), dpi.scale(58), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
pos -= 83
}
if d.okBtn != 0 {
win.SetWindowPos(d.okBtn, 0, dpi.scale(pos), dpi.scale(58), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
pos -= 83
}
if pos == 178 {
win.SetWindowPos(d.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(97), win.SWP_NOMOVE|win.SWP_NOZORDER)
}
}
func progressProc(wnd win.HWND, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
var dlg *progressDialog
switch msg {
case win.WM_NCCREATE:
saveBackRef(uintptr(wnd), *lparam)
dlg = (*progressDialog)(*lparam)
case win.WM_NCDESTROY:
deleteBackRef(uintptr(wnd))
default:
dlg = (*progressDialog)(loadBackRef(uintptr(wnd)))
}
switch msg {
case win.WM_DESTROY:
win.PostQuitMessage(0)
case win.WM_CLOSE:
dlg.err = ErrCanceled
win.DestroyWindow(wnd)
case win.WM_COMMAND:
switch wparam {
default:
return 1
case win.IDOK, win.IDYES:
//
case win.IDCANCEL:
dlg.err = ErrCanceled
case win.IDNO:
dlg.err = ErrExtraButton
}
win.DestroyWindow(wnd)
case win.WM_DPICHANGED:
dlg.layout(dpi(uint32(wparam) >> 16))
default:
return win.DefWindowProc(wnd, msg, wparam, unsafe.Pointer(lparam))
}
return 0
}