Migrated dialog_windows.go to the new string handling.
This commit is contained in:
parent
a46668ca22
commit
ea95d5559d
|
@ -5,8 +5,6 @@ package ui
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"syscall"
|
|
||||||
"unsafe"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO change what the default window titles are?
|
// TODO change what the default window titles are?
|
||||||
|
@ -22,14 +20,16 @@ func _msgBox(primarytext string, secondarytext string, uType uint32) (result int
|
||||||
text += "\n\n" + secondarytext
|
text += "\n\n" + secondarytext
|
||||||
}
|
}
|
||||||
uType |= _MB_TASKMODAL // make modal to every window in the program (they're all windows of the uitask, which is a single thread)
|
uType |= _MB_TASKMODAL // make modal to every window in the program (they're all windows of the uitask, which is a single thread)
|
||||||
|
ptext := toUTF16(text)
|
||||||
|
ptitle := toUTF16(os.Args[0])
|
||||||
ret := make(chan uiret)
|
ret := make(chan uiret)
|
||||||
defer close(ret)
|
defer close(ret)
|
||||||
uitask <- &uimsg{
|
uitask <- &uimsg{
|
||||||
call: _messageBox,
|
call: _messageBox,
|
||||||
p: []uintptr{
|
p: []uintptr{
|
||||||
uintptr(_NULL),
|
uintptr(_NULL),
|
||||||
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(text))),
|
utf16ToArg(ptext),
|
||||||
uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(os.Args[0]))),
|
utf16ToArg(ptitle),
|
||||||
uintptr(uType),
|
uintptr(uType),
|
||||||
},
|
},
|
||||||
ret: ret,
|
ret: ret,
|
||||||
|
|
Loading…
Reference in New Issue