2021-04-27 09:05:04 -04:00
|
|
|
package zenity
|
|
|
|
|
|
|
|
import (
|
2021-04-29 11:38:59 -04:00
|
|
|
"context"
|
|
|
|
"sync"
|
2021-04-27 09:05:04 -04:00
|
|
|
"syscall"
|
2022-03-23 15:16:08 -04:00
|
|
|
"unsafe"
|
2022-06-18 07:37:39 -04:00
|
|
|
|
|
|
|
"github.com/ncruces/zenity/internal/win"
|
2021-04-27 09:05:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func progress(opts options) (ProgressDialog, error) {
|
|
|
|
if opts.title == nil {
|
|
|
|
opts.title = stringPtr("")
|
|
|
|
}
|
|
|
|
if opts.okLabel == nil {
|
|
|
|
opts.okLabel = stringPtr("OK")
|
|
|
|
}
|
|
|
|
if opts.cancelLabel == nil {
|
|
|
|
opts.cancelLabel = stringPtr("Cancel")
|
|
|
|
}
|
|
|
|
if opts.maxValue == 0 {
|
|
|
|
opts.maxValue = 100
|
|
|
|
}
|
2021-04-29 11:38:59 -04:00
|
|
|
if opts.ctx == nil {
|
|
|
|
opts.ctx = context.Background()
|
2021-07-12 13:13:08 -04:00
|
|
|
} else if cerr := opts.ctx.Err(); cerr != nil {
|
|
|
|
return nil, cerr
|
2021-04-29 11:38:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dlg := &progressDialog{
|
|
|
|
done: make(chan struct{}),
|
|
|
|
max: opts.maxValue,
|
|
|
|
}
|
|
|
|
dlg.init.Add(1)
|
2021-04-27 09:05:04 -04:00
|
|
|
|
2021-04-29 11:38:59 -04:00
|
|
|
go func() {
|
2022-03-24 08:51:28 -04:00
|
|
|
dlg.err = dlg.setup(opts)
|
2021-04-29 11:38:59 -04:00
|
|
|
close(dlg.done)
|
|
|
|
}()
|
|
|
|
|
|
|
|
dlg.init.Wait()
|
|
|
|
return dlg, nil
|
|
|
|
}
|
|
|
|
|
2022-03-24 08:51:28 -04:00
|
|
|
type progressDialog struct {
|
|
|
|
init sync.WaitGroup
|
|
|
|
done chan struct{}
|
|
|
|
max int
|
|
|
|
err error
|
|
|
|
|
|
|
|
wnd uintptr
|
|
|
|
textCtl uintptr
|
|
|
|
progCtl uintptr
|
|
|
|
okBtn uintptr
|
|
|
|
cancelBtn uintptr
|
|
|
|
extraBtn uintptr
|
|
|
|
font font
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *progressDialog) Text(text string) error {
|
|
|
|
select {
|
|
|
|
default:
|
|
|
|
setWindowText.Call(d.textCtl, strptr(text))
|
|
|
|
return nil
|
|
|
|
case <-d.done:
|
|
|
|
return d.err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *progressDialog) Value(value int) error {
|
|
|
|
select {
|
|
|
|
default:
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(d.progCtl, win.PBM_SETPOS, uintptr(value), 0)
|
2022-03-24 08:51:28 -04:00
|
|
|
if value >= d.max {
|
|
|
|
enableWindow.Call(d.okBtn, 1)
|
|
|
|
}
|
|
|
|
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:
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowLong.Call(d.progCtl, intptr(_GWL_STYLE), _WS_CHILD|_WS_VISIBLE|_PBS_SMOOTH)
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(d.progCtl, win.PBM_SETRANGE32, 0, 1)
|
|
|
|
sendMessage.Call(d.progCtl, win.PBM_SETPOS, 1, 0)
|
2022-03-24 08:51:28 -04:00
|
|
|
enableWindow.Call(d.okBtn, 1)
|
|
|
|
enableWindow.Call(d.cancelBtn, 0)
|
|
|
|
return nil
|
|
|
|
case <-d.done:
|
|
|
|
return d.err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *progressDialog) Close() error {
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(d.wnd, win.WM_SYSCOMMAND, _SC_CLOSE, 0)
|
2022-03-24 08:51:28 -04:00
|
|
|
<-d.done
|
|
|
|
if d.err == ErrCanceled {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return d.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dlg *progressDialog) setup(opts options) error {
|
2022-05-23 19:12:38 -04:00
|
|
|
var once sync.Once
|
|
|
|
defer once.Do(dlg.init.Done)
|
2022-03-24 08:51:28 -04:00
|
|
|
|
2021-04-27 09:05:04 -04:00
|
|
|
defer setup()()
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.font = getFont()
|
|
|
|
defer dlg.font.delete()
|
2022-05-23 19:12:38 -04:00
|
|
|
icon := getIcon(opts.windowIcon)
|
|
|
|
defer icon.delete()
|
2021-04-27 09:05:04 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
2021-04-29 11:38:59 -04:00
|
|
|
return opts.ctx.Err()
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
instance, _, err := getModuleHandle.Call(0)
|
|
|
|
if instance == 0 {
|
2021-04-29 11:38:59 -04:00
|
|
|
return err
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
|
|
|
|
2022-05-23 19:12:38 -04:00
|
|
|
cls, err := registerClass(instance, icon.handle, syscall.NewCallback(progressProc))
|
2021-04-27 09:05:04 -04:00
|
|
|
if cls == 0 {
|
2021-04-29 11:38:59 -04:00
|
|
|
return err
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
|
|
|
defer unregisterClass.Call(cls, instance)
|
|
|
|
|
2022-06-18 07:37:39 -04:00
|
|
|
owner, _ := opts.attach.(win.HWND)
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.wnd, _, _ = createWindowEx.Call(_WS_EX_CONTROLPARENT|_WS_EX_WINDOWEDGE|_WS_EX_DLGMODALFRAME,
|
2021-04-27 09:05:04 -04:00
|
|
|
cls, strptr(*opts.title),
|
2022-03-28 22:05:46 -04:00
|
|
|
_WS_POPUPWINDOW|_WS_CLIPSIBLINGS|_WS_DLGFRAME,
|
|
|
|
_CW_USEDEFAULT, _CW_USEDEFAULT,
|
2022-06-18 07:37:39 -04:00
|
|
|
281, 133, uintptr(owner), 0, instance, uintptr(unsafe.Pointer(dlg)))
|
2021-04-27 09:05:04 -04:00
|
|
|
|
2021-04-30 14:19:14 -04:00
|
|
|
dlg.textCtl, _, _ = createWindowEx.Call(0,
|
2021-04-27 09:05:04 -04:00
|
|
|
strptr("STATIC"), 0,
|
2022-03-28 22:05:46 -04:00
|
|
|
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_SS_WORDELLIPSIS|_SS_EDITCONTROL|_SS_NOPREFIX,
|
2021-04-30 14:19:14 -04:00
|
|
|
12, 10, 241, 16, dlg.wnd, 0, instance, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
|
2022-03-28 22:05:46 -04:00
|
|
|
var flags uintptr = _WS_CHILD | _WS_VISIBLE | _PBS_SMOOTH
|
2021-04-27 09:05:04 -04:00
|
|
|
if opts.maxValue < 0 {
|
2022-03-28 22:05:46 -04:00
|
|
|
flags |= _PBS_MARQUEE
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
2021-04-30 14:19:14 -04:00
|
|
|
dlg.progCtl, _, _ = createWindowEx.Call(0,
|
2022-03-28 22:05:46 -04:00
|
|
|
strptr(_PROGRESS_CLASS),
|
2021-04-27 09:05:04 -04:00
|
|
|
0, flags,
|
2021-05-04 08:01:04 -04:00
|
|
|
12, 30, 241, 16, dlg.wnd, 0, instance, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
|
2021-04-30 14:19:14 -04:00
|
|
|
dlg.okBtn, _, _ = createWindowEx.Call(0,
|
2021-04-27 09:05:04 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.okLabel),
|
2022-03-28 22:05:46 -04:00
|
|
|
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_WS_TABSTOP|_BS_DEFPUSHBUTTON|_WS_DISABLED,
|
2022-06-18 07:37:39 -04:00
|
|
|
12, 58, 75, 24, dlg.wnd, win.IDOK, instance, 0)
|
2021-04-30 14:19:14 -04:00
|
|
|
if !opts.noCancel {
|
|
|
|
dlg.cancelBtn, _, _ = createWindowEx.Call(0,
|
|
|
|
strptr("BUTTON"), strptr(*opts.cancelLabel),
|
2022-03-28 22:05:46 -04:00
|
|
|
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_WS_TABSTOP,
|
2022-06-18 07:37:39 -04:00
|
|
|
12, 58, 75, 24, dlg.wnd, win.IDCANCEL, instance, 0)
|
2021-04-30 14:19:14 -04:00
|
|
|
}
|
2021-04-27 09:05:04 -04:00
|
|
|
if opts.extraButton != nil {
|
2021-04-30 14:19:14 -04:00
|
|
|
dlg.extraBtn, _, _ = createWindowEx.Call(0,
|
2021-04-27 09:05:04 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.extraButton),
|
2022-03-28 22:05:46 -04:00
|
|
|
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_WS_TABSTOP,
|
2022-06-18 07:37:39 -04:00
|
|
|
12, 58, 75, 24, dlg.wnd, win.IDNO, instance, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
|
|
|
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.layout(getDPI(dlg.wnd))
|
2021-04-30 14:19:14 -04:00
|
|
|
centerWindow(dlg.wnd)
|
2022-03-28 22:05:46 -04:00
|
|
|
showWindow.Call(dlg.wnd, _SW_NORMAL, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
if opts.maxValue < 0 {
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(dlg.progCtl, win.PBM_SETMARQUEE, 1, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
} else {
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(dlg.progCtl, win.PBM_SETRANGE32, 0, uintptr(opts.maxValue))
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
2022-05-23 19:12:38 -04:00
|
|
|
once.Do(dlg.init.Done)
|
2021-04-27 09:05:04 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil {
|
|
|
|
wait := make(chan struct{})
|
|
|
|
defer close(wait)
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-opts.ctx.Done():
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(dlg.wnd, win.WM_SYSCOMMAND, _SC_CLOSE, 0)
|
2021-04-27 09:05:04 -04:00
|
|
|
case <-wait:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2021-04-30 14:19:14 -04:00
|
|
|
if err := messageLoop(dlg.wnd); err != nil {
|
2021-04-29 11:38:59 -04:00
|
|
|
return err
|
2021-04-27 09:05:04 -04:00
|
|
|
}
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
2021-04-29 11:38:59 -04:00
|
|
|
return opts.ctx.Err()
|
|
|
|
}
|
2022-03-23 15:16:08 -04:00
|
|
|
return dlg.err
|
2021-04-29 11:38:59 -04:00
|
|
|
}
|
|
|
|
|
2022-03-23 15:16:08 -04:00
|
|
|
func (d *progressDialog) layout(dpi dpi) {
|
|
|
|
font := d.font.forDPI(dpi)
|
2022-06-18 19:48:38 -04:00
|
|
|
sendMessage.Call(d.textCtl, win.WM_SETFONT, font, 1)
|
|
|
|
sendMessage.Call(d.okBtn, win.WM_SETFONT, font, 1)
|
|
|
|
sendMessage.Call(d.cancelBtn, win.WM_SETFONT, font, 1)
|
|
|
|
sendMessage.Call(d.extraBtn, win.WM_SETFONT, font, 1)
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowPos.Call(d.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(133), _SWP_NOZORDER|_SWP_NOMOVE)
|
|
|
|
setWindowPos.Call(d.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), _SWP_NOZORDER)
|
|
|
|
setWindowPos.Call(d.progCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(16), _SWP_NOZORDER)
|
2022-03-23 15:16:08 -04:00
|
|
|
if d.extraBtn == 0 {
|
|
|
|
if d.cancelBtn == 0 {
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowPos.Call(d.okBtn, 0, dpi.scale(178), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
2022-03-23 15:16:08 -04:00
|
|
|
} else {
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowPos.Call(d.okBtn, 0, dpi.scale(95), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
|
|
|
setWindowPos.Call(d.cancelBtn, 0, dpi.scale(178), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
2022-03-23 15:16:08 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if d.cancelBtn == 0 {
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowPos.Call(d.okBtn, 0, dpi.scale(95), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
|
|
|
setWindowPos.Call(d.extraBtn, 0, dpi.scale(178), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
2022-03-23 15:16:08 -04:00
|
|
|
} else {
|
2022-03-28 22:05:46 -04:00
|
|
|
setWindowPos.Call(d.okBtn, 0, dpi.scale(12), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
|
|
|
setWindowPos.Call(d.extraBtn, 0, dpi.scale(95), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
|
|
|
setWindowPos.Call(d.cancelBtn, 0, dpi.scale(178), dpi.scale(58), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
|
2022-03-23 15:16:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func progressProc(wnd uintptr, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
|
|
|
|
var dlg *progressDialog
|
|
|
|
switch msg {
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_NCCREATE:
|
2022-03-23 15:16:08 -04:00
|
|
|
saveBackRef(wnd, *lparam)
|
|
|
|
dlg = (*progressDialog)(*lparam)
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_NCDESTROY:
|
2022-03-23 15:16:08 -04:00
|
|
|
deleteBackRef(wnd)
|
|
|
|
default:
|
|
|
|
dlg = (*progressDialog)(loadBackRef(wnd))
|
|
|
|
}
|
|
|
|
|
|
|
|
switch msg {
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_DESTROY:
|
2022-03-23 15:16:08 -04:00
|
|
|
postQuitMessage.Call(0)
|
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_CLOSE:
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.err = ErrCanceled
|
|
|
|
destroyWindow.Call(wnd)
|
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_COMMAND:
|
2022-03-23 15:16:08 -04:00
|
|
|
switch wparam {
|
|
|
|
default:
|
|
|
|
return 1
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDOK, win.IDYES:
|
2022-03-23 15:16:08 -04:00
|
|
|
//
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDCANCEL:
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.err = ErrCanceled
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDNO:
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.err = ErrExtraButton
|
|
|
|
}
|
|
|
|
destroyWindow.Call(wnd)
|
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_DPICHANGED:
|
2022-03-23 15:16:08 -04:00
|
|
|
dlg.layout(dpi(uint32(wparam) >> 16))
|
|
|
|
|
|
|
|
default:
|
2022-03-24 06:58:14 -04:00
|
|
|
res, _, _ := defWindowProc.Call(wnd, uintptr(msg), wparam, uintptr(unsafe.Pointer(lparam)))
|
2022-03-23 15:16:08 -04:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|