2022-03-28 22:05:46 -04:00
|
|
|
package zenity
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
"unsafe"
|
2022-06-18 07:37:39 -04:00
|
|
|
|
|
|
|
"github.com/ncruces/zenity/internal/win"
|
2022-03-28 22:05:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func calendar(text string, opts options) (time.Time, error) {
|
|
|
|
if opts.title == nil {
|
|
|
|
opts.title = stringPtr("")
|
|
|
|
}
|
|
|
|
if opts.okLabel == nil {
|
|
|
|
opts.okLabel = stringPtr("OK")
|
|
|
|
}
|
|
|
|
if opts.cancelLabel == nil {
|
|
|
|
opts.cancelLabel = stringPtr("Cancel")
|
|
|
|
}
|
|
|
|
|
|
|
|
dlg := &calendarDialog{}
|
|
|
|
return dlg.setup(text, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
type calendarDialog struct {
|
|
|
|
out time.Time
|
|
|
|
err error
|
|
|
|
|
2022-06-20 11:05:11 -04:00
|
|
|
wnd win.HWND
|
|
|
|
textCtl win.HWND
|
|
|
|
dateCtl win.HWND
|
|
|
|
okBtn win.HWND
|
|
|
|
cancelBtn win.HWND
|
|
|
|
extraBtn win.HWND
|
2022-03-28 22:05:46 -04:00
|
|
|
font font
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dlg *calendarDialog) setup(text string, opts options) (time.Time, error) {
|
2022-06-28 09:52:02 -04:00
|
|
|
owner, _ := opts.attach.(win.HWND)
|
|
|
|
defer setup(owner)()
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.font = getFont()
|
|
|
|
defer dlg.font.delete()
|
2022-05-23 19:12:38 -04:00
|
|
|
icon := getIcon(opts.windowIcon)
|
|
|
|
defer icon.delete()
|
2022-03-28 22:05:46 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
|
|
|
return time.Time{}, opts.ctx.Err()
|
|
|
|
}
|
|
|
|
|
2022-06-20 08:37:28 -04:00
|
|
|
instance, err := win.GetModuleHandle(nil)
|
|
|
|
if err != nil {
|
2022-03-28 22:05:46 -04:00
|
|
|
return time.Time{}, err
|
|
|
|
}
|
|
|
|
|
2022-05-23 19:12:38 -04:00
|
|
|
cls, err := registerClass(instance, icon.handle, syscall.NewCallback(calendarProc))
|
2022-06-20 08:37:28 -04:00
|
|
|
if err != nil {
|
2022-03-28 22:05:46 -04:00
|
|
|
return time.Time{}, err
|
|
|
|
}
|
2022-06-20 08:37:28 -04:00
|
|
|
defer win.UnregisterClass(cls, instance)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-21 07:28:21 -04:00
|
|
|
dlg.wnd, _ = win.CreateWindowEx(_WS_EX_ZEN_DIALOG,
|
|
|
|
cls, strptr(*opts.title), _WS_ZEN_DIALOG,
|
|
|
|
win.CW_USEDEFAULT, win.CW_USEDEFAULT,
|
2022-06-20 11:05:11 -04:00
|
|
|
281, 281, owner, 0, instance, unsafe.Pointer(dlg))
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-20 11:05:11 -04:00
|
|
|
dlg.textCtl, _ = win.CreateWindowEx(0,
|
2022-06-21 07:28:21 -04:00
|
|
|
strptr("STATIC"), strptr(text), _WS_ZEN_LABEL,
|
2022-06-20 11:05:11 -04:00
|
|
|
12, 10, 241, 16, dlg.wnd, 0, instance, nil)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-20 11:05:11 -04:00
|
|
|
dlg.dateCtl, _ = win.CreateWindowEx(0,
|
2022-06-21 07:28:21 -04:00
|
|
|
strptr(win.MONTHCAL_CLASS),
|
|
|
|
nil, _WS_ZEN_CONTROL|win.MCS_NOTODAY,
|
2022-06-20 11:05:11 -04:00
|
|
|
12, 30, 241, 164, dlg.wnd, 0, instance, nil)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-20 11:05:11 -04:00
|
|
|
dlg.okBtn, _ = win.CreateWindowEx(0,
|
2022-03-28 22:05:46 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.okLabel),
|
2022-06-21 07:28:21 -04:00
|
|
|
_WS_ZEN_BUTTON|win.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,
|
2022-03-28 22:05:46 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.cancelLabel),
|
2022-06-21 07:28:21 -04:00
|
|
|
_WS_ZEN_BUTTON,
|
2022-06-20 11:05:11 -04:00
|
|
|
12, 206, 75, 24, dlg.wnd, win.IDCANCEL, instance, nil)
|
2022-03-28 22:05:46 -04:00
|
|
|
if opts.extraButton != nil {
|
2022-06-20 11:05:11 -04:00
|
|
|
dlg.extraBtn, _ = win.CreateWindowEx(0,
|
2022-03-28 22:05:46 -04:00
|
|
|
strptr("BUTTON"), strptr(*opts.extraButton),
|
2022-06-21 07:28:21 -04:00
|
|
|
_WS_ZEN_BUTTON,
|
2022-06-20 11:05:11 -04:00
|
|
|
12, 206, 75, 24, dlg.wnd, win.IDNO, instance, nil)
|
2022-03-28 22:05:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if opts.time != nil {
|
2022-06-21 19:58:14 -04:00
|
|
|
var date win.SYSTEMTIME
|
2022-03-28 22:05:46 -04:00
|
|
|
year, month, day := opts.time.Date()
|
2022-06-21 19:58:14 -04:00
|
|
|
date.Year = uint16(year)
|
|
|
|
date.Month = uint16(month)
|
|
|
|
date.Day = uint16(day)
|
2022-06-20 11:05:11 -04:00
|
|
|
win.SendMessagePointer(dlg.dateCtl, win.MCM_SETCURSEL, 0, unsafe.Pointer(&date))
|
2022-03-28 22:05:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dlg.layout(getDPI(dlg.wnd))
|
|
|
|
centerWindow(dlg.wnd)
|
2022-06-20 11:05:11 -04:00
|
|
|
win.SetFocus(dlg.dateCtl)
|
2022-06-21 07:28:21 -04:00
|
|
|
win.ShowWindow(dlg.wnd, win.SW_NORMAL)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
|
|
|
if opts.ctx != nil {
|
|
|
|
wait := make(chan struct{})
|
|
|
|
defer close(wait)
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-opts.ctx.Done():
|
2022-06-21 07:28:21 -04:00
|
|
|
win.SendMessage(dlg.wnd, win.WM_SYSCOMMAND, win.SC_CLOSE, 0)
|
2022-03-28 22:05:46 -04:00
|
|
|
case <-wait:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2022-06-19 21:14:08 -04:00
|
|
|
if err := win.MessageLoop(win.HWND(dlg.wnd)); err != nil {
|
2022-03-28 22:05:46 -04:00
|
|
|
return time.Time{}, err
|
|
|
|
}
|
|
|
|
if opts.ctx != nil && opts.ctx.Err() != nil {
|
|
|
|
return time.Time{}, opts.ctx.Err()
|
|
|
|
}
|
|
|
|
return dlg.out, dlg.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dlg *calendarDialog) 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.dateCtl, 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)
|
2022-06-21 07:28:21 -04:00
|
|
|
win.SetWindowPos(dlg.wnd, 0, 0, 0, dpi.scale(281), dpi.scale(281), win.SWP_NOMOVE|win.SWP_NOZORDER)
|
|
|
|
win.SetWindowPos(dlg.textCtl, 0, dpi.scale(12), dpi.scale(10), dpi.scale(241), dpi.scale(16), win.SWP_NOZORDER)
|
|
|
|
win.SetWindowPos(dlg.dateCtl, 0, dpi.scale(12), dpi.scale(30), dpi.scale(241), dpi.scale(164), win.SWP_NOZORDER)
|
2022-03-28 22:05:46 -04:00
|
|
|
if dlg.extraBtn == 0 {
|
2022-06-21 07:28:21 -04:00
|
|
|
win.SetWindowPos(dlg.okBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
|
|
|
|
win.SetWindowPos(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
|
2022-03-28 22:05:46 -04:00
|
|
|
} else {
|
2022-06-21 07:28:21 -04:00
|
|
|
win.SetWindowPos(dlg.okBtn, 0, dpi.scale(12), dpi.scale(206), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
|
|
|
|
win.SetWindowPos(dlg.extraBtn, 0, dpi.scale(95), dpi.scale(206), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
|
|
|
|
win.SetWindowPos(dlg.cancelBtn, 0, dpi.scale(178), dpi.scale(206), dpi.scale(75), dpi.scale(24), win.SWP_NOZORDER)
|
2022-03-28 22:05:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 20:26:03 -04:00
|
|
|
func calendarProc(wnd win.HWND, msg uint32, wparam uintptr, lparam *unsafe.Pointer) uintptr {
|
2022-03-28 22:05:46 -04:00
|
|
|
var dlg *calendarDialog
|
|
|
|
switch msg {
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_NCCREATE:
|
2022-06-20 20:26:03 -04:00
|
|
|
saveBackRef(uintptr(wnd), *lparam)
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg = (*calendarDialog)(*lparam)
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_NCDESTROY:
|
2022-06-20 20:26:03 -04:00
|
|
|
deleteBackRef(uintptr(wnd))
|
2022-03-28 22:05:46 -04:00
|
|
|
default:
|
2022-06-20 20:26:03 -04:00
|
|
|
dlg = (*calendarDialog)(loadBackRef(uintptr(wnd)))
|
2022-03-28 22:05:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch msg {
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_DESTROY:
|
2022-06-20 20:26:03 -04:00
|
|
|
win.PostQuitMessage(0)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_CLOSE:
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.err = ErrCanceled
|
2022-06-20 20:26:03 -04:00
|
|
|
win.DestroyWindow(wnd)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_COMMAND:
|
2022-03-28 22:05:46 -04:00
|
|
|
switch wparam {
|
|
|
|
default:
|
|
|
|
return 1
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDOK, win.IDYES:
|
2022-06-21 19:58:14 -04:00
|
|
|
var date win.SYSTEMTIME
|
2022-06-20 11:05:11 -04:00
|
|
|
win.SendMessagePointer(dlg.dateCtl, win.MCM_GETCURSEL, 0, unsafe.Pointer(&date))
|
2022-06-21 19:58:14 -04:00
|
|
|
dlg.out = time.Date(int(date.Year), time.Month(date.Month), int(date.Day), 0, 0, 0, 0, time.UTC)
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDCANCEL:
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.err = ErrCanceled
|
2022-06-18 07:37:39 -04:00
|
|
|
case win.IDNO:
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.err = ErrExtraButton
|
|
|
|
}
|
2022-06-20 20:26:03 -04:00
|
|
|
win.DestroyWindow(wnd)
|
2022-03-28 22:05:46 -04:00
|
|
|
|
2022-06-18 19:48:38 -04:00
|
|
|
case win.WM_DPICHANGED:
|
2022-03-28 22:05:46 -04:00
|
|
|
dlg.layout(dpi(uint32(wparam) >> 16))
|
|
|
|
|
|
|
|
default:
|
2022-06-20 20:26:03 -04:00
|
|
|
return win.DefWindowProc(wnd, msg, wparam, unsafe.Pointer(lparam))
|
2022-03-28 22:05:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|