2021-04-07 09:16:35 -04:00
|
|
|
package zenity
|
|
|
|
|
2021-04-09 08:39:15 -04:00
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2021-04-29 11:05:28 -04:00
|
|
|
func list(text string, items []string, opts options) (string, error) {
|
2021-04-27 09:05:04 -04:00
|
|
|
items, err := listDlg(text, items, false, opts)
|
2021-04-09 08:39:15 -04:00
|
|
|
if len(items) == 1 {
|
2021-04-29 11:05:28 -04:00
|
|
|
return items[0], err
|
2021-04-09 08:39:15 -04:00
|
|
|
}
|
2021-04-29 11:05:28 -04:00
|
|
|
return "", err
|
2021-04-07 09:16:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func listMultiple(text string, items []string, opts options) ([]string, error) {
|
2021-04-27 09:05:04 -04:00
|
|
|
return listDlg(text, items, true, opts)
|
|
|
|
}
|
|
|
|
|
2022-03-23 10:38:06 -04:00
|
|
|
func listDlg(text string, items []string, multiple bool, opts options) ([]string, error) {
|
2021-04-27 09:05:04 -04:00
|
|
|
if opts.title == nil {
|
|
|
|
opts.title = stringPtr("")
|
2021-04-09 08:39:15 -04:00
|
|
|
}
|
|
|
|
if opts.okLabel == nil {
|
|
|
|
opts.okLabel = stringPtr("OK")
|
|
|
|
}
|
|
|
|
if opts.cancelLabel == nil {
|
|
|
|
opts.cancelLabel = stringPtr("Cancel")
|
|
|
|
}
|
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg := &listDialog{
|
2022-03-23 10:38:06 -04:00
|
|
|
items: items,
|
|
|
|
multiple: multiple,
|
2021-04-09 08:39:15 -04:00
|
|
|
}
|
2022-03-24 08:51:28 -04:00
|
|
|
return dlg.setup(text, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
type listDialog struct {
|
|
|
|
items []string
|
|
|
|
multiple bool
|
|
|
|
out []string
|
|
|
|
err error
|
|
|
|
|
|
|
|
wnd uintptr
|
|
|
|
textCtl uintptr
|
|
|
|
listCtl uintptr
|
|
|
|
okBtn uintptr
|
|
|
|
cancelBtn uintptr
|
|
|
|
extraBtn uintptr
|
|
|
|
font font
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dlg *listDialog) setup(text string, opts options) ([]string, error) {
|
|
|
|
defer setup()()
|
|
|
|
dlg.font = getFont()
|
2022-03-24 06:58:14 -04:00
|
|
|
defer dlg.font.delete()
|
2021-04-09 08:39:15 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
|
|
|
return nil, opts.ctx.Err()
|
|
|
|
}
|
|
|
|
|
|
|
|
instance, _, err := getModuleHandle.Call(0)
|
|
|
|
if instance == 0 {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-03-23 10:38:06 -04:00
|
|
|
cls, err := registerClass(instance, syscall.NewCallback(listProc))
|
2021-04-09 08:39:15 -04:00
|
|
|
if cls == 0 {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer unregisterClass.Call(cls, instance)
|
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.wnd, _, _ = createWindowEx.Call(0x10101, // WS_EX_CONTROLPARENT|WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME
|
2021-04-27 09:05:04 -04:00
|
|
|
cls, strptr(*opts.title),
|
2021-04-09 08:39:15 -04:00
|
|
|
0x84c80000, // WS_POPUPWINDOW|WS_CLIPSIBLINGS|WS_DLGFRAME
|
|
|
|
0x80000000, // CW_USEDEFAULT
|
|
|
|
0x80000000, // CW_USEDEFAULT
|
2022-03-24 06:58:14 -04:00
|
|
|
281, 281, 0, 0, instance, uintptr(unsafe.Pointer(dlg)))
|
2021-04-09 08:39:15 -04:00
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.textCtl, _, _ = createWindowEx.Call(0,
|
2021-04-09 08:39:15 -04:00
|
|
|
strptr("STATIC"), strptr(text),
|
|
|
|
0x5002e080, // WS_CHILD|WS_VISIBLE|WS_GROUP|SS_WORDELLIPSIS|SS_EDITCONTROL|SS_NOPREFIX
|
2022-03-24 06:58:14 -04:00
|
|
|
12, 10, 241, 16, dlg.wnd, 0, instance, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
|
|
|
|
var flags uintptr = 0x50320000 // WS_CHILD|WS_VISIBLE|WS_VSCROLL|WS_GROUP|WS_TABSTOP
|
2022-03-24 08:51:28 -04:00
|
|
|
if dlg.multiple {
|
2021-04-09 08:39:15 -04:00
|
|
|
flags |= 0x0800 // LBS_EXTENDEDSEL
|
|
|
|
}
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.listCtl, _, _ = createWindowEx.Call(0x200, // WS_EX_CLIENTEDGE
|
2021-04-09 08:39:15 -04:00
|
|
|
strptr("LISTBOX"), strptr(opts.entryText),
|
|
|
|
flags,
|
2022-03-24 06:58:14 -04:00
|
|
|
12, 30, 241, 164, dlg.wnd, 0, instance, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.okBtn, _, _ = createWindowEx.Call(0,
|
2021-04-09 08:39:15 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.okLabel),
|
|
|
|
0x50030001, // WS_CHILD|WS_VISIBLE|WS_GROUP|WS_TABSTOP|BS_DEFPUSHBUTTON
|
2022-03-24 06:58:14 -04:00
|
|
|
12, 206, 75, 24, dlg.wnd, 1 /* IDOK */, instance, 0)
|
|
|
|
dlg.cancelBtn, _, _ = createWindowEx.Call(0,
|
2021-04-09 08:39:15 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.cancelLabel),
|
|
|
|
0x50010000, // WS_CHILD|WS_VISIBLE|WS_GROUP|WS_TABSTOP
|
2022-03-24 06:58:14 -04:00
|
|
|
12, 206, 75, 24, dlg.wnd, 2 /* IDCANCEL */, instance, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
if opts.extraButton != nil {
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.extraBtn, _, _ = createWindowEx.Call(0,
|
2021-04-09 08:39:15 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.extraButton),
|
|
|
|
0x50010000, // WS_CHILD|WS_VISIBLE|WS_GROUP|WS_TABSTOP
|
2022-03-24 06:58:14 -04:00
|
|
|
12, 206, 75, 24, dlg.wnd, 7 /* IDNO */, instance, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
}
|
|
|
|
|
2022-03-24 08:51:28 -04:00
|
|
|
for _, item := range dlg.items {
|
2022-03-24 06:58:14 -04:00
|
|
|
sendMessage.Call(dlg.listCtl, 0x180 /* LB_ADDSTRING */, 0, strptr(item))
|
2021-04-09 08:39:15 -04:00
|
|
|
}
|
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.layout(getDPI(dlg.wnd))
|
|
|
|
centerWindow(dlg.wnd)
|
|
|
|
setFocus.Call(dlg.listCtl)
|
|
|
|
showWindow.Call(dlg.wnd, 1 /* SW_SHOWNORMAL */, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil {
|
|
|
|
wait := make(chan struct{})
|
|
|
|
defer close(wait)
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-opts.ctx.Done():
|
2022-03-24 06:58:14 -04:00
|
|
|
sendMessage.Call(dlg.wnd, 0x0112 /* WM_SYSCOMMAND */, 0xf060 /* SC_CLOSE */, 0)
|
2021-04-09 08:39:15 -04:00
|
|
|
case <-wait:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
if err := messageLoop(dlg.wnd); err != nil {
|
2021-04-09 08:39:15 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
|
|
|
return nil, opts.ctx.Err()
|
|
|
|
}
|
2022-03-24 06:58:14 -04:00
|
|
|
return dlg.out, dlg.err
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
|
|
|
|
2022-03-24 08:51:28 -04:00
|
|
|
func (dlg *listDialog) layout(dpi dpi) {
|
|
|
|
font := dlg.font.forDPI(dpi)
|
|
|
|
sendMessage.Call(dlg.textCtl, 0x0030 /* WM_SETFONT */, font, 1)
|
|
|
|
sendMessage.Call(dlg.listCtl, 0x0030 /* WM_SETFONT */, font, 1)
|
|
|
|
sendMessage.Call(dlg.okBtn, 0x0030 /* WM_SETFONT */, font, 1)
|
|
|
|
sendMessage.Call(dlg.cancelBtn, 0x0030 /* WM_SETFONT */, font, 1)
|
|
|
|
sendMessage.Call(dlg.extraBtn, 0x0030 /* WM_SETFONT */, font, 1)
|
|
|
|
setWindowPos.Call(dlg.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(281), 0x6) // SWP_NOZORDER|SWP_NOMOVE
|
|
|
|
setWindowPos.Call(dlg.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), 0x4) // SWP_NOZORDER
|
|
|
|
setWindowPos.Call(dlg.listCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(164), 0x4) // SWP_NOZORDER
|
|
|
|
if dlg.extraBtn == 0 {
|
|
|
|
setWindowPos.Call(dlg.okBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), 0x4) // SWP_NOZORDER
|
|
|
|
setWindowPos.Call(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), 0x4) // SWP_NOZORDER
|
2022-03-23 10:38:06 -04:00
|
|
|
} else {
|
2022-03-24 08:51:28 -04:00
|
|
|
setWindowPos.Call(dlg.okBtn, 0, dpi.scale(12), dpi.scale(206), dpi.scale(75), dpi.scale(24), 0x4) // SWP_NOZORDER
|
|
|
|
setWindowPos.Call(dlg.extraBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), 0x4) // SWP_NOZORDER
|
|
|
|
setWindowPos.Call(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), 0x4) // SWP_NOZORDER
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-24 06:58:14 -04:00
|
|
|
func listProc(wnd uintptr, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
|
|
|
|
var dlg *listDialog
|
2022-03-23 10:38:06 -04:00
|
|
|
switch msg {
|
|
|
|
case 0x0081: // WM_NCCREATE
|
2022-03-24 06:58:14 -04:00
|
|
|
saveBackRef(wnd, *lparam)
|
|
|
|
dlg = (*listDialog)(*lparam)
|
2022-03-23 10:38:06 -04:00
|
|
|
case 0x0082: // WM_NCDESTROY
|
2022-03-24 06:58:14 -04:00
|
|
|
deleteBackRef(wnd)
|
2022-03-23 10:38:06 -04:00
|
|
|
default:
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg = (*listDialog)(loadBackRef(wnd))
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch msg {
|
|
|
|
case 0x0002: // WM_DESTROY
|
|
|
|
postQuitMessage.Call(0)
|
|
|
|
|
|
|
|
case 0x0010: // WM_CLOSE
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.err = ErrCanceled
|
|
|
|
destroyWindow.Call(wnd)
|
2022-03-23 10:38:06 -04:00
|
|
|
|
|
|
|
case 0x0111: // WM_COMMAND
|
|
|
|
switch wparam {
|
|
|
|
default:
|
|
|
|
return 1
|
|
|
|
case 1, 6: // IDOK, IDYES
|
2022-03-24 06:58:14 -04:00
|
|
|
if dlg.multiple {
|
|
|
|
if len, _, _ := sendMessage.Call(dlg.listCtl, 0x190 /* LB_GETSELCOUNT */, 0, 0); int32(len) >= 0 {
|
|
|
|
dlg.out = make([]string, len)
|
2022-03-23 10:38:06 -04:00
|
|
|
if len > 0 {
|
|
|
|
indices := make([]int32, len)
|
2022-03-24 06:58:14 -04:00
|
|
|
sendMessage.Call(dlg.listCtl, 0x191 /* LB_GETSELITEMS */, len, uintptr(unsafe.Pointer(&indices[0])))
|
2022-03-23 10:38:06 -04:00
|
|
|
for i, idx := range indices {
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.out[i] = dlg.items[idx]
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2022-03-24 06:58:14 -04:00
|
|
|
if idx, _, _ := sendMessage.Call(dlg.listCtl, 0x188 /* LB_GETCURSEL */, 0, 0); int32(idx) >= 0 {
|
|
|
|
dlg.out = []string{dlg.items[idx]}
|
2022-03-23 10:38:06 -04:00
|
|
|
} else {
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.out = []string{}
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case 2: // IDCANCEL
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.err = ErrCanceled
|
2022-03-23 10:38:06 -04:00
|
|
|
case 7: // IDNO
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.err = ErrExtraButton
|
2022-03-23 10:38:06 -04:00
|
|
|
}
|
2022-03-24 06:58:14 -04:00
|
|
|
destroyWindow.Call(wnd)
|
2022-03-23 10:38:06 -04:00
|
|
|
|
|
|
|
case 0x02e0: // WM_DPICHANGED
|
2022-03-24 06:58:14 -04:00
|
|
|
dlg.layout(dpi(uint32(wparam) >> 16))
|
2022-03-23 10:38:06 -04:00
|
|
|
|
|
|
|
default:
|
2022-03-24 06:58:14 -04:00
|
|
|
res, _, _ := defWindowProc.Call(wnd, uintptr(msg), wparam, uintptr(unsafe.Pointer(lparam)))
|
2022-03-23 10:38:06 -04:00
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
2021-04-07 09:16:35 -04:00
|
|
|
}
|