zenity/list_windows.go

223 lines
6.1 KiB
Go
Raw Normal View History

2021-04-07 09:16:35 -04:00
package zenity
2021-04-09 08:39:15 -04:00
import (
"syscall"
"unsafe"
2022-06-18 07:37:39 -04:00
"github.com/ncruces/zenity/internal/win"
2021-04-09 08:39:15 -04:00
)
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)
}
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{
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
2022-06-20 11:05:11 -04:00
wnd win.HWND
textCtl win.HWND
listCtl win.HWND
okBtn win.HWND
cancelBtn win.HWND
extraBtn win.HWND
2022-03-24 08:51:28 -04:00
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()
2022-05-23 19:12:38 -04:00
icon := getIcon(opts.windowIcon)
defer icon.delete()
2021-04-09 08:39:15 -04:00
if opts.ctx != nil && opts.ctx.Err() != nil {
return nil, opts.ctx.Err()
}
2022-06-20 08:37:28 -04:00
instance, err := win.GetModuleHandle(nil)
if err != nil {
2021-04-09 08:39:15 -04:00
return nil, err
}
2022-05-23 19:12:38 -04:00
cls, err := registerClass(instance, icon.handle, syscall.NewCallback(listProc))
2022-06-20 08:37:28 -04:00
if err != nil {
2021-04-09 08:39:15 -04:00
return nil, err
}
2022-06-20 08:37:28 -04:00
defer win.UnregisterClass(cls, instance)
2021-04-09 08:39:15 -04:00
2022-06-18 07:37:39 -04:00
owner, _ := opts.attach.(win.HWND)
2022-06-20 11:05:11 -04:00
dlg.wnd, _ = win.CreateWindowEx(_WS_EX_CONTROLPARENT|_WS_EX_WINDOWEDGE|_WS_EX_DLGMODALFRAME,
cls, strptr(*opts.title),
2022-03-28 22:05:46 -04:00
_WS_POPUPWINDOW|_WS_CLIPSIBLINGS|_WS_DLGFRAME,
_CW_USEDEFAULT, _CW_USEDEFAULT,
2022-06-20 11:05:11 -04:00
281, 281, owner, 0, instance, unsafe.Pointer(dlg))
2021-04-09 08:39:15 -04:00
2022-06-20 11:05:11 -04:00
dlg.textCtl, _ = win.CreateWindowEx(0,
2021-04-09 08:39:15 -04:00
strptr("STATIC"), strptr(text),
2022-03-28 22:05:46 -04:00
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_SS_WORDELLIPSIS|_SS_EDITCONTROL|_SS_NOPREFIX,
2022-06-20 11:05:11 -04:00
12, 10, 241, 16, dlg.wnd, 0, instance, nil)
2021-04-09 08:39:15 -04:00
2022-06-20 11:05:11 -04:00
var flags uint32 = _WS_CHILD | _WS_VISIBLE | _WS_GROUP | _WS_TABSTOP | _WS_VSCROLL
2022-03-24 08:51:28 -04:00
if dlg.multiple {
2022-03-28 22:05:46 -04:00
flags |= _LBS_EXTENDEDSEL
2021-04-09 08:39:15 -04:00
}
2022-06-20 11:05:11 -04:00
dlg.listCtl, _ = win.CreateWindowEx(_WS_EX_CLIENTEDGE,
2021-04-09 08:39:15 -04:00
strptr("LISTBOX"), strptr(opts.entryText),
flags,
2022-06-20 11:05:11 -04:00
12, 30, 241, 164, dlg.wnd, 0, instance, nil)
2021-04-09 08:39:15 -04:00
2022-06-20 11:05:11 -04:00
dlg.okBtn, _ = win.CreateWindowEx(0,
2021-04-09 08:39:15 -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,
2022-06-20 11:05:11 -04:00
12, 206, 75, 24, dlg.wnd, win.IDOK, instance, nil)
dlg.cancelBtn, _ = win.CreateWindowEx(0,
2021-04-09 08:39:15 -04:00
strptr("BUTTON"), strptr(*opts.cancelLabel),
2022-03-28 22:05:46 -04:00
_WS_CHILD|_WS_VISIBLE|_WS_GROUP|_WS_TABSTOP,
2022-06-20 11:05:11 -04:00
12, 206, 75, 24, dlg.wnd, win.IDCANCEL, instance, nil)
2021-04-09 08:39:15 -04:00
if opts.extraButton != nil {
2022-06-20 11:05:11 -04:00
dlg.extraBtn, _ = win.CreateWindowEx(0,
2021-04-09 08:39:15 -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-20 11:05:11 -04:00
12, 206, 75, 24, dlg.wnd, win.IDNO, instance, nil)
2021-04-09 08:39:15 -04:00
}
2022-03-24 08:51:28 -04:00
for _, item := range dlg.items {
2022-06-20 11:05:11 -04:00
win.SendMessagePointer(dlg.listCtl, win.LB_ADDSTRING, 0, unsafe.Pointer(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)
2022-06-20 11:05:11 -04:00
win.SetFocus(dlg.listCtl)
win.ShowWindow(dlg.wnd, _SW_NORMAL)
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-06-20 11:05:11 -04:00
win.SendMessage(dlg.wnd, win.WM_SYSCOMMAND, _SC_CLOSE, 0)
2021-04-09 08:39:15 -04:00
case <-wait:
}
}()
}
2022-06-19 21:14:08 -04:00
if err := win.MessageLoop(win.HWND(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-24 08:51:28 -04:00
func (dlg *listDialog) layout(dpi dpi) {
font := dlg.font.forDPI(dpi)
2022-06-20 11:05:11 -04:00
win.SendMessage(dlg.textCtl, win.WM_SETFONT, font, 1)
win.SendMessage(dlg.listCtl, win.WM_SETFONT, font, 1)
win.SendMessage(dlg.okBtn, win.WM_SETFONT, font, 1)
win.SendMessage(dlg.cancelBtn, win.WM_SETFONT, font, 1)
win.SendMessage(dlg.extraBtn, win.WM_SETFONT, font, 1)
win.SetWindowPos(dlg.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(281), _SWP_NOZORDER|_SWP_NOMOVE)
win.SetWindowPos(dlg.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), _SWP_NOZORDER)
win.SetWindowPos(dlg.listCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(164), _SWP_NOZORDER)
2022-03-24 08:51:28 -04:00
if dlg.extraBtn == 0 {
2022-06-20 11:05:11 -04:00
win.SetWindowPos(dlg.okBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
win.SetWindowPos(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
} else {
2022-06-20 11:05:11 -04:00
win.SetWindowPos(dlg.okBtn, 0, dpi.scale(12), dpi.scale(206), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
win.SetWindowPos(dlg.extraBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
win.SetWindowPos(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
}
}
2022-03-24 06:58:14 -04:00
func listProc(wnd uintptr, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
var dlg *listDialog
switch msg {
2022-06-18 19:48:38 -04:00
case win.WM_NCCREATE:
2022-03-24 06:58:14 -04:00
saveBackRef(wnd, *lparam)
dlg = (*listDialog)(*lparam)
2022-06-18 19:48:38 -04:00
case win.WM_NCDESTROY:
2022-03-24 06:58:14 -04:00
deleteBackRef(wnd)
default:
2022-03-24 06:58:14 -04:00
dlg = (*listDialog)(loadBackRef(wnd))
}
switch msg {
2022-06-18 19:48:38 -04:00
case win.WM_DESTROY:
postQuitMessage.Call(0)
2022-06-18 19:48:38 -04:00
case win.WM_CLOSE:
2022-03-24 06:58:14 -04:00
dlg.err = ErrCanceled
destroyWindow.Call(wnd)
2022-06-18 19:48:38 -04:00
case win.WM_COMMAND:
switch wparam {
default:
return 1
2022-06-18 07:37:39 -04:00
case win.IDOK, win.IDYES:
2022-03-24 06:58:14 -04:00
if dlg.multiple {
2022-06-20 11:05:11 -04:00
if len := win.SendMessage(dlg.listCtl, win.LB_GETSELCOUNT, 0, 0); int32(len) >= 0 {
2022-03-24 06:58:14 -04:00
dlg.out = make([]string, len)
if len > 0 {
indices := make([]int32, len)
2022-06-20 11:05:11 -04:00
win.SendMessage(dlg.listCtl, win.LB_GETSELITEMS, len, uintptr(unsafe.Pointer(&indices[0])))
for i, idx := range indices {
2022-03-24 06:58:14 -04:00
dlg.out[i] = dlg.items[idx]
}
}
}
} else {
2022-06-20 11:05:11 -04:00
if idx := win.SendMessage(dlg.listCtl, win.LB_GETCURSEL, 0, 0); int32(idx) >= 0 {
2022-03-24 06:58:14 -04:00
dlg.out = []string{dlg.items[idx]}
} else {
2022-03-24 06:58:14 -04:00
dlg.out = []string{}
}
}
2022-06-18 07:37:39 -04:00
case win.IDCANCEL:
2022-03-24 06:58:14 -04:00
dlg.err = ErrCanceled
2022-06-18 07:37:39 -04:00
case win.IDNO:
2022-03-24 06:58:14 -04:00
dlg.err = ErrExtraButton
}
2022-03-24 06:58:14 -04:00
destroyWindow.Call(wnd)
2022-06-18 19:48:38 -04:00
case win.WM_DPICHANGED:
2022-03-24 06:58:14 -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)))
return res
}
return 0
2021-04-07 09:16:35 -04:00
}