2014-02-11 15:14:15 -06:00
|
|
|
// 11 february 2014
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-02-11 17:50:33 -06:00
|
|
|
"fmt"
|
2014-02-11 15:14:15 -06:00
|
|
|
"syscall"
|
|
|
|
"unsafe"
|
2014-02-12 09:35:15 -06:00
|
|
|
"sync"
|
2014-02-11 15:14:15 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
type sysData struct {
|
|
|
|
cSysData
|
|
|
|
|
2014-02-11 17:50:33 -06:00
|
|
|
hwnd _HWND
|
2014-02-12 20:08:10 -06:00
|
|
|
children map[_HMENU]*sysData
|
|
|
|
nextChildID _HMENU
|
|
|
|
childrenLock sync.Mutex
|
2014-02-11 17:50:33 -06:00
|
|
|
shownAlready bool
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type classData struct {
|
2014-02-14 11:16:27 -06:00
|
|
|
name string
|
|
|
|
style uint32
|
|
|
|
xstyle uint32
|
|
|
|
mkid bool
|
2014-02-14 14:54:56 -06:00
|
|
|
altStyle uint32
|
2014-02-14 11:16:27 -06:00
|
|
|
appendMsg uintptr
|
2014-02-15 11:45:17 -06:00
|
|
|
insertBeforeMsg uintptr
|
2014-02-14 11:16:27 -06:00
|
|
|
deleteMsg uintptr
|
2014-02-15 11:32:12 -06:00
|
|
|
selectedIndexMsg uintptr
|
|
|
|
selectedIndexErr int
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
|
|
|
|
2014-02-12 10:29:20 -06:00
|
|
|
const controlstyle = _WS_CHILD | _WS_VISIBLE | _WS_TABSTOP
|
|
|
|
const controlxstyle = 0
|
2014-02-11 15:14:15 -06:00
|
|
|
|
|
|
|
var classTypes = [nctypes]*classData{
|
2014-02-14 11:16:27 -06:00
|
|
|
c_window: &classData{
|
|
|
|
style: _WS_OVERLAPPEDWINDOW,
|
|
|
|
xstyle: 0,
|
2014-02-11 15:14:15 -06:00
|
|
|
},
|
2014-02-12 10:29:20 -06:00
|
|
|
c_button: &classData{
|
2014-02-14 11:16:27 -06:00
|
|
|
name: "BUTTON",
|
|
|
|
style: _BS_PUSHBUTTON | controlstyle,
|
|
|
|
xstyle: 0 | controlxstyle,
|
2014-02-12 10:29:20 -06:00
|
|
|
},
|
2014-02-13 11:26:43 -06:00
|
|
|
c_checkbox: &classData{
|
2014-02-14 11:16:27 -06:00
|
|
|
name: "BUTTON",
|
|
|
|
style: _BS_AUTOCHECKBOX | controlstyle,
|
|
|
|
xstyle: 0 | controlxstyle,
|
|
|
|
},
|
|
|
|
c_combobox: &classData{
|
|
|
|
name: "COMBOBOX",
|
|
|
|
style: _CBS_DROPDOWNLIST | controlstyle,
|
|
|
|
xstyle: 0 | controlxstyle,
|
2014-02-14 14:54:56 -06:00
|
|
|
altStyle: _CBS_DROPDOWN | _CBS_AUTOHSCROLL | controlstyle,
|
2014-02-14 11:16:27 -06:00
|
|
|
appendMsg: _CB_ADDSTRING,
|
2014-02-15 11:06:29 -06:00
|
|
|
insertBeforeMsg: _CB_INSERTSTRING,
|
2014-02-14 11:16:27 -06:00
|
|
|
deleteMsg: _CB_DELETESTRING,
|
2014-02-15 11:32:12 -06:00
|
|
|
selectedIndexMsg: _CB_GETCURSEL,
|
|
|
|
selectedIndexErr: _CB_ERR,
|
2014-02-13 11:26:43 -06:00
|
|
|
},
|
2014-02-14 14:00:59 -06:00
|
|
|
c_lineedit: &classData{
|
|
|
|
name: "EDIT",
|
|
|
|
style: _ES_AUTOHSCROLL | _WS_BORDER | controlstyle,
|
|
|
|
xstyle: 0 | controlxstyle,
|
|
|
|
},
|
2014-02-14 14:12:03 -06:00
|
|
|
c_label: &classData{
|
|
|
|
name: "STATIC",
|
|
|
|
style: _SS_NOPREFIX | controlstyle,
|
|
|
|
xstyle: 0 | controlxstyle,
|
|
|
|
},
|
2014-02-14 15:25:39 -06:00
|
|
|
c_listbox: &classData{
|
|
|
|
name: "LISTBOX",
|
2014-02-14 21:10:35 -06:00
|
|
|
// TODO also _WS_HSCROLL?
|
|
|
|
style: _WS_VSCROLL | controlstyle,
|
2014-02-14 15:25:39 -06:00
|
|
|
xstyle: 0 | controlxstyle,
|
2014-02-14 21:10:35 -06:00
|
|
|
altStyle: _LBS_EXTENDEDSEL | _WS_VSCROLL | controlstyle,
|
2014-02-14 15:25:39 -06:00
|
|
|
appendMsg: _LB_ADDSTRING,
|
2014-02-15 11:06:29 -06:00
|
|
|
insertBeforeMsg: _LB_INSERTSTRING,
|
2014-02-14 15:25:39 -06:00
|
|
|
deleteMsg: _LB_DELETESTRING,
|
2014-02-15 11:32:12 -06:00
|
|
|
selectedIndexMsg: _LB_GETCURSEL,
|
|
|
|
selectedIndexErr: _LB_ERR,
|
2014-02-14 15:25:39 -06:00
|
|
|
},
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
|
|
|
|
2014-02-12 20:33:24 -06:00
|
|
|
func (s *sysData) addChild(child *sysData) _HMENU {
|
2014-02-12 20:08:10 -06:00
|
|
|
s.childrenLock.Lock()
|
|
|
|
defer s.childrenLock.Unlock()
|
|
|
|
s.nextChildID++ // start at 1
|
2014-02-12 20:33:24 -06:00
|
|
|
if s.children == nil {
|
|
|
|
s.children = map[_HMENU]*sysData{}
|
|
|
|
}
|
2014-02-12 20:08:10 -06:00
|
|
|
s.children[s.nextChildID] = child
|
|
|
|
return s.nextChildID
|
|
|
|
}
|
2014-02-12 09:35:15 -06:00
|
|
|
|
2014-02-12 20:08:10 -06:00
|
|
|
func (s *sysData) delChild(id _HMENU) {
|
|
|
|
s.childrenLock.Lock()
|
|
|
|
defer s.childrenLock.Unlock()
|
|
|
|
delete(s.children, id)
|
2014-02-12 09:35:15 -06:00
|
|
|
}
|
|
|
|
|
2014-02-15 12:07:46 -06:00
|
|
|
func (s *sysData) make(initText string, window *sysData) (err error) {
|
2014-02-11 17:50:33 -06:00
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
ct := classTypes[s.ctype]
|
2014-02-12 20:28:58 -06:00
|
|
|
classname := ct.name
|
2014-02-12 20:08:10 -06:00
|
|
|
cid := _HMENU(0)
|
2014-02-12 10:29:20 -06:00
|
|
|
pwin := uintptr(_NULL)
|
2014-02-12 20:08:10 -06:00
|
|
|
if window != nil { // this is a child control
|
|
|
|
cid = window.addChild(s)
|
|
|
|
pwin = uintptr(window.hwnd)
|
2014-02-12 20:28:58 -06:00
|
|
|
} else { // need a new class
|
|
|
|
n, err := registerStdWndClass(s)
|
|
|
|
if err != nil {
|
2014-02-15 12:16:17 -06:00
|
|
|
return fmt.Errorf("error creating window class for new window: %v", err)
|
2014-02-12 20:28:58 -06:00
|
|
|
}
|
|
|
|
classname = n
|
2014-02-12 09:35:15 -06:00
|
|
|
}
|
2014-02-14 11:16:27 -06:00
|
|
|
style := uintptr(ct.style)
|
2014-02-14 14:54:56 -06:00
|
|
|
if s.alternate {
|
|
|
|
style = uintptr(ct.altStyle)
|
2014-02-14 11:16:27 -06:00
|
|
|
}
|
2014-02-11 17:50:33 -06:00
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _createWindowEx,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(ct.xstyle),
|
2014-02-12 20:28:58 -06:00
|
|
|
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(classname))),
|
2014-02-12 09:43:57 -06:00
|
|
|
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(initText))),
|
2014-02-14 11:16:27 -06:00
|
|
|
style,
|
2014-02-11 17:50:33 -06:00
|
|
|
uintptr(_CW_USEDEFAULT),
|
2014-02-15 12:07:46 -06:00
|
|
|
uintptr(_CW_USEDEFAULT),
|
|
|
|
uintptr(_CW_USEDEFAULT),
|
|
|
|
uintptr(_CW_USEDEFAULT),
|
2014-02-12 10:29:20 -06:00
|
|
|
pwin,
|
2014-02-12 20:08:10 -06:00
|
|
|
uintptr(cid),
|
2014-02-11 17:50:33 -06:00
|
|
|
uintptr(hInstance),
|
|
|
|
uintptr(_NULL),
|
|
|
|
},
|
2014-02-11 18:09:10 -06:00
|
|
|
ret: ret,
|
2014-02-11 17:50:33 -06:00
|
|
|
}
|
|
|
|
r := <-ret
|
2014-02-11 18:34:28 -06:00
|
|
|
if r.ret == 0 { // failure
|
2014-02-12 20:08:10 -06:00
|
|
|
if window != nil {
|
|
|
|
window.delChild(cid)
|
|
|
|
}
|
2014-02-15 12:16:17 -06:00
|
|
|
return fmt.Errorf("error actually creating window/control: %v", r.err)
|
2014-02-11 17:50:33 -06:00
|
|
|
}
|
|
|
|
s.hwnd = _HWND(r.ret)
|
|
|
|
return nil
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
|
|
|
|
2014-02-11 17:50:33 -06:00
|
|
|
var (
|
|
|
|
_updateWindow = user32.NewProc("UpdateWindow")
|
|
|
|
)
|
|
|
|
|
|
|
|
// if the object is a window, we need to do the following the first time
|
|
|
|
// ShowWindow(hwnd, nCmdShow);
|
|
|
|
// UpdateWindow(hwnd);
|
|
|
|
// otherwise we go ahead and show the object normally with SW_SHOW
|
2014-02-11 15:14:15 -06:00
|
|
|
func (s *sysData) show() (err error) {
|
2014-02-11 17:50:33 -06:00
|
|
|
if s.ctype != c_window { // don't do the init ShowWindow/UpdateWindow chain on non-windows
|
|
|
|
s.shownAlready = true
|
|
|
|
}
|
|
|
|
show := uintptr(_SW_SHOW)
|
|
|
|
if !s.shownAlready {
|
|
|
|
show = uintptr(nCmdShow)
|
|
|
|
}
|
2014-02-11 15:14:15 -06:00
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
2014-02-11 19:23:49 -06:00
|
|
|
// TODO figure out how to handle error
|
2014-02-11 15:14:15 -06:00
|
|
|
uitask <- &uimsg{
|
2014-02-11 15:23:38 -06:00
|
|
|
call: _showWindow,
|
2014-02-11 18:09:10 -06:00
|
|
|
p: []uintptr{uintptr(s.hwnd), show},
|
2014-02-11 15:14:15 -06:00
|
|
|
ret: ret,
|
|
|
|
}
|
2014-02-11 19:23:49 -06:00
|
|
|
<-ret
|
2014-02-11 17:50:33 -06:00
|
|
|
if !s.shownAlready {
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _updateWindow,
|
|
|
|
p: []uintptr{uintptr(s.hwnd)},
|
|
|
|
ret: ret,
|
|
|
|
}
|
2014-02-11 19:23:49 -06:00
|
|
|
r := <-ret
|
2014-02-11 17:50:33 -06:00
|
|
|
if r.ret == 0 { // failure
|
|
|
|
return fmt.Errorf("error updating window for the first time: %v", r.err)
|
|
|
|
}
|
|
|
|
s.shownAlready = true
|
|
|
|
}
|
|
|
|
return nil
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sysData) hide() (err error) {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
2014-02-11 19:23:49 -06:00
|
|
|
// TODO figure out how to handle error
|
2014-02-11 15:14:15 -06:00
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _showWindow,
|
|
|
|
p: []uintptr{uintptr(s.hwnd), _SW_HIDE},
|
|
|
|
ret: ret,
|
|
|
|
}
|
2014-02-11 19:23:49 -06:00
|
|
|
<-ret
|
|
|
|
return nil
|
2014-02-11 15:14:15 -06:00
|
|
|
}
|
2014-02-12 17:14:37 -06:00
|
|
|
|
|
|
|
func (s *sysData) setText(text string) error {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _setWindowText,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(text))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
if r.ret == 0 { // failure
|
|
|
|
return r.err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-13 04:28:26 -06:00
|
|
|
|
|
|
|
func (s *sysData) setRect(x int, y int, width int, height int) error {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _moveWindow,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(x),
|
|
|
|
uintptr(y),
|
|
|
|
uintptr(width),
|
|
|
|
uintptr(height),
|
|
|
|
uintptr(_TRUE),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
if r.ret == 0 { // failure
|
2014-02-15 12:02:10 -06:00
|
|
|
return fmt.Errorf("error setting window/control rect: %v", r.err)
|
2014-02-13 04:28:26 -06:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-13 14:14:10 -06:00
|
|
|
|
2014-02-15 12:36:24 -06:00
|
|
|
func (s *sysData) isChecked() bool {
|
2014-02-13 14:14:10 -06:00
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_BM_GETCHECK),
|
|
|
|
uintptr(0),
|
|
|
|
uintptr(0),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
2014-02-15 12:36:24 -06:00
|
|
|
return r.ret == _BST_CHECKED
|
2014-02-13 14:14:10 -06:00
|
|
|
}
|
2014-02-14 11:16:27 -06:00
|
|
|
|
2014-02-15 12:36:24 -06:00
|
|
|
func (s *sysData) text() (str string) {
|
2014-02-14 11:16:27 -06:00
|
|
|
var tc []uint16
|
|
|
|
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_WM_GETTEXTLENGTH),
|
|
|
|
uintptr(0),
|
|
|
|
uintptr(0),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
length := r.ret + 1 // terminating null
|
|
|
|
tc = make([]uint16, length)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_WM_GETTEXT),
|
|
|
|
uintptr(_WPARAM(length)),
|
|
|
|
uintptr(_LPARAM(unsafe.Pointer(&tc[0]))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
<-ret
|
2014-02-15 12:36:24 -06:00
|
|
|
return syscall.UTF16ToString(tc)
|
2014-02-14 11:16:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO figure out how to handle errors
|
|
|
|
func (s *sysData) append(what string) (err error) {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(classTypes[s.ctype].appendMsg),
|
|
|
|
uintptr(_WPARAM(0)),
|
|
|
|
uintptr(_LPARAM(unsafe.Pointer(syscall.StringToUTF16Ptr(what)))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
<-ret
|
|
|
|
// TODO error handling
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-15 11:06:29 -06:00
|
|
|
|
|
|
|
// TODO figure out how to handle errors
|
|
|
|
func (s *sysData) insertBefore(what string, index int) (err error) {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(classTypes[s.ctype].insertBeforeMsg),
|
|
|
|
uintptr(_WPARAM(index)),
|
|
|
|
uintptr(_LPARAM(unsafe.Pointer(syscall.StringToUTF16Ptr(what)))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
<-ret
|
|
|
|
// TODO error handling
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-15 11:32:12 -06:00
|
|
|
|
|
|
|
// TODO handle actual errors
|
|
|
|
// TODO differentiate between nothing selected and custom text entered for a Combobox
|
|
|
|
func (s *sysData) selectedIndex() (int, error) {
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(classTypes[s.ctype].selectedIndexMsg),
|
|
|
|
uintptr(_WPARAM(0)),
|
|
|
|
uintptr(_LPARAM(0)),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
2014-02-15 12:16:17 -06:00
|
|
|
if r.ret == uintptr(classTypes[s.ctype].selectedIndexErr) { // no selection
|
2014-02-15 11:32:12 -06:00
|
|
|
return -1, nil
|
|
|
|
}
|
|
|
|
return int(r.ret), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO handle actual errors
|
|
|
|
func (s *sysData) selectedIndices() ([]int, error) {
|
|
|
|
if !s.alternate { // single-selection list box; use single-selection method
|
|
|
|
index, err := s.selectedIndex()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting indices of single-selection list box: %v", err)
|
|
|
|
}
|
|
|
|
return []int{index}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_LB_GETSELCOUNT),
|
|
|
|
uintptr(0),
|
|
|
|
uintptr(0),
|
|
|
|
},
|
2014-02-15 11:45:17 -06:00
|
|
|
ret: ret,
|
2014-02-15 11:32:12 -06:00
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
// TODO handle errors
|
|
|
|
indices := make([]int, r.ret)
|
2014-02-15 11:45:17 -06:00
|
|
|
uitask <- &uimsg{
|
2014-02-15 11:32:12 -06:00
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_LB_GETSELITEMS),
|
|
|
|
uintptr(_WPARAM(r.ret)),
|
|
|
|
uintptr(_LPARAM(unsafe.Pointer(&indices[0]))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
<-ret
|
|
|
|
// TODO handle errors
|
|
|
|
return indices, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *sysData) selectedTexts() ([]string, error) {
|
|
|
|
indices, err := s.selectedIndices()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error getting selected indices for selected texts: %v", err)
|
|
|
|
}
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
strings := make([]string, len(indices))
|
|
|
|
for i, v := range indices {
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_LB_GETTEXTLEN),
|
|
|
|
uintptr(_WPARAM(v)),
|
|
|
|
uintptr(0),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
// TODO handle errors
|
|
|
|
str := make([]uint16, r.ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _sendMessage,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(_LB_GETTEXT),
|
|
|
|
uintptr(_WPARAM(v)),
|
|
|
|
uintptr(_LPARAM(unsafe.Pointer(&str[0]))),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
<-ret
|
|
|
|
// TODO handle errors
|
|
|
|
strings[i] = syscall.UTF16ToString(str)
|
|
|
|
}
|
|
|
|
return strings, nil
|
|
|
|
}
|
2014-02-15 12:02:10 -06:00
|
|
|
|
|
|
|
func (s *sysData) setWindowSize(width int, height int) error {
|
|
|
|
var rect _RECT
|
|
|
|
|
|
|
|
ret := make(chan uiret)
|
|
|
|
defer close(ret)
|
|
|
|
uitask <- &uimsg{
|
|
|
|
call: _getClientRect,
|
|
|
|
p: []uintptr{
|
|
|
|
uintptr(s.hwnd),
|
|
|
|
uintptr(unsafe.Pointer(&rect)),
|
|
|
|
},
|
|
|
|
ret: ret,
|
|
|
|
}
|
|
|
|
r := <-ret
|
|
|
|
if r.ret == 0 {
|
|
|
|
return fmt.Errorf("error getting upper-left of window for resize: %v", r.err)
|
|
|
|
}
|
|
|
|
err := s.setRect(int(rect.Left), int(rect.Top), width, height)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error actually resizing window: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|