zenity/entry_windows.go

186 lines
5.2 KiB
Go
Raw Normal View History

2021-03-07 19:57:16 -05:00
package zenity
2018-01-25 10:37:06 -05:00
import (
"syscall"
"unsafe"
2022-06-18 07:37:39 -04:00
"github.com/ncruces/zenity/internal/win"
2018-01-25 10:37:06 -05:00
)
func entry(text string, opts options) (string, error) {
2021-04-27 09:05:04 -04:00
if opts.title == nil {
opts.title = stringPtr("")
2021-03-07 19:57:16 -05:00
}
2021-04-05 12:54:46 -04:00
if opts.okLabel == nil {
opts.okLabel = stringPtr("OK")
}
if opts.cancelLabel == nil {
opts.cancelLabel = stringPtr("Cancel")
}
2021-03-29 14:07:44 -04:00
2022-03-24 08:51:28 -04:00
dlg := &entryDialog{}
return dlg.setup(text, opts)
}
type entryDialog struct {
out string
err error
wnd uintptr
textCtl uintptr
editCtl uintptr
okBtn uintptr
cancelBtn uintptr
extraBtn uintptr
font font
}
func (dlg *entryDialog) setup(text string, opts options) (string, error) {
2021-04-05 18:19:02 -04:00
defer setup()()
2022-03-24 08:51:28 -04:00
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()
2018-01-25 10:37:06 -05:00
2021-04-05 18:19:02 -04:00
if opts.ctx != nil && opts.ctx.Err() != nil {
2021-04-29 11:05:28 -04:00
return "", opts.ctx.Err()
2021-04-05 18:19:02 -04:00
}
2021-03-27 19:50:48 -04:00
2021-03-29 14:07:44 -04:00
instance, _, err := getModuleHandle.Call(0)
if instance == 0 {
2021-04-29 11:05:28 -04:00
return "", err
2018-01-25 10:37:06 -05:00
}
2022-05-23 19:12:38 -04:00
cls, err := registerClass(instance, icon.handle, syscall.NewCallback(entryProc))
2021-04-05 12:54:46 -04:00
if cls == 0 {
2021-04-29 11:05:28 -04:00
return "", err
2018-01-25 10:37:06 -05:00
}
2021-04-05 12:54:46 -04:00
defer unregisterClass.Call(cls, instance)
2018-01-25 10:37:06 -05:00
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, 141, uintptr(owner), 0, instance, uintptr(unsafe.Pointer(dlg)))
2018-01-25 10:37:06 -05:00
2022-03-24 06:58:14 -04:00
dlg.textCtl, _, _ = createWindowEx.Call(0,
2021-04-05 13:58:32 -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-03-24 06:58:14 -04:00
12, 10, 241, 16, dlg.wnd, 0, instance, 0)
2018-01-25 10:37:06 -05:00
2022-03-28 22:05:46 -04:00
var flags uintptr = _WS_CHILD | _WS_VISIBLE | _WS_GROUP | _WS_TABSTOP | _ES_AUTOHSCROLL
2021-04-05 12:54:46 -04:00
if opts.hideText {
2022-03-28 22:05:46 -04:00
flags |= _ES_PASSWORD
2021-03-29 14:07:44 -04:00
}
2022-03-28 22:05:46 -04:00
dlg.editCtl, _, _ = createWindowEx.Call(_WS_EX_CLIENTEDGE,
2021-04-05 13:58:32 -04:00
strptr("EDIT"), strptr(opts.entryText),
2021-04-05 12:54:46 -04:00
flags,
2022-03-24 06:58:14 -04:00
12, 30, 241, 24, dlg.wnd, 0, instance, 0)
2021-04-05 09:58:30 -04:00
2022-03-24 06:58:14 -04:00
dlg.okBtn, _, _ = createWindowEx.Call(0,
2021-04-05 13:58:32 -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-18 07:37:39 -04:00
12, 66, 75, 24, dlg.wnd, win.IDOK, instance, 0)
2022-03-24 06:58:14 -04:00
dlg.cancelBtn, _, _ = createWindowEx.Call(0,
2021-04-05 13:58:32 -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-18 07:37:39 -04:00
12, 66, 75, 24, dlg.wnd, win.IDCANCEL, instance, 0)
2021-04-05 12:54:46 -04:00
if opts.extraButton != nil {
2022-03-24 06:58:14 -04:00
dlg.extraBtn, _, _ = createWindowEx.Call(0,
2021-04-05 13:58:32 -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, 66, 75, 24, dlg.wnd, win.IDNO, instance, 0)
2021-04-05 12:54:46 -04:00
}
2021-03-29 14:07:44 -04:00
2022-03-24 06:58:14 -04:00
dlg.layout(getDPI(dlg.wnd))
centerWindow(dlg.wnd)
setFocus.Call(dlg.editCtl)
2022-03-28 22:05:46 -04:00
showWindow.Call(dlg.wnd, _SW_NORMAL, 0)
2022-06-18 19:48:38 -04:00
sendMessage.Call(dlg.editCtl, win.EM_SETSEL, 0, intptr(-1))
2021-03-29 14:07:44 -04:00
2021-04-05 18:19:02 -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-05 18:19:02 -04:00
case <-wait:
}
}()
}
2022-06-19 21:14:08 -04:00
if err := win.MessageLoop(win.HWND(dlg.wnd)); err != nil {
2021-04-29 11:05:28 -04:00
return "", err
2018-01-25 10:37:06 -05:00
}
2021-04-05 18:19:02 -04:00
if opts.ctx != nil && opts.ctx.Err() != nil {
2021-04-29 11:05:28 -04:00
return "", opts.ctx.Err()
2021-04-05 18:19:02 -04:00
}
2022-03-24 06:58:14 -04:00
return dlg.out, dlg.err
}
2022-03-24 08:51:28 -04:00
func (dlg *entryDialog) layout(dpi dpi) {
font := dlg.font.forDPI(dpi)
2022-06-18 19:48:38 -04:00
sendMessage.Call(dlg.textCtl, win.WM_SETFONT, font, 1)
sendMessage.Call(dlg.editCtl, win.WM_SETFONT, font, 1)
sendMessage.Call(dlg.okBtn, win.WM_SETFONT, font, 1)
sendMessage.Call(dlg.cancelBtn, win.WM_SETFONT, font, 1)
sendMessage.Call(dlg.extraBtn, win.WM_SETFONT, font, 1)
2022-03-28 22:05:46 -04:00
setWindowPos.Call(dlg.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(141), _SWP_NOZORDER|_SWP_NOMOVE)
setWindowPos.Call(dlg.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), _SWP_NOZORDER)
setWindowPos.Call(dlg.editCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(24), _SWP_NOZORDER)
2022-03-24 08:51:28 -04:00
if dlg.extraBtn == 0 {
2022-03-28 22:05:46 -04:00
setWindowPos.Call(dlg.okBtn, 0, dpi.scale(95), dpi.scale(66), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
setWindowPos.Call(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(66), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
} else {
2022-03-28 22:05:46 -04:00
setWindowPos.Call(dlg.okBtn, 0, dpi.scale(12), dpi.scale(66), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
setWindowPos.Call(dlg.extraBtn, 0, dpi.scale(95), dpi.scale(66), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
setWindowPos.Call(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(66), dpi.scale(75), dpi.scale(24), _SWP_NOZORDER)
}
}
2022-03-24 06:58:14 -04:00
func entryProc(wnd uintptr, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
var dlg *entryDialog
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 = (*entryDialog)(*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 = (*entryDialog)(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
dlg.out = getWindowString(dlg.editCtl)
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
2018-01-25 10:37:06 -05:00
}