Merge branch 'master' of github.com:andlabs/ui

This commit is contained in:
Pietro Gagliardi 2016-06-19 15:09:41 -04:00
commit 28012570b0
5 changed files with 16 additions and 12 deletions

View File

@ -2,7 +2,7 @@
package ui package ui
// #cgo LDFLAGS: ${SRCDIR}/static_windows_386.o ${SRCDIR}/libui_windows_386.a ${SRCDIR}/libui_windows_386.res.o // #cgo LDFLAGS: ${SRCDIR}/libui_windows_386.a ${SRCDIR}/libui_windows_386.res.o
// /* note the order; also note the lack of uuid */ // /* note the order; also note the lack of uuid */
// #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++ // #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++
import "C" import "C"

View File

@ -2,7 +2,7 @@
package ui package ui
// #cgo LDFLAGS: ${SRCDIR}/static_windows_amd64.o ${SRCDIR}/libui_windows_amd64.a ${SRCDIR}/libui_windows_amd64.res.o // #cgo LDFLAGS: ${SRCDIR}/libui_windows_amd64.a ${SRCDIR}/libui_windows_amd64.res.o
// /* note the order; also note the lack of uuid */ // /* note the order; also note the lack of uuid */
// #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++ // #cgo LDFLAGS: -luser32 -lkernel32 -lusp10 -lgdi32 -lcomctl32 -luxtheme -lmsimg32 -lcomdlg32 -ld2d1 -ldwrite -lole32 -loleaut32 -loleacc -static -static-libgcc -static-libstdc++
import "C" import "C"

View File

@ -8,30 +8,34 @@ import "C"
// TODO // TODO
func MsgBoxError(w *Window, title string, description string) { func MsgBoxError(w *Window, title string, description string) {
ctitle := C.CString(title) ctitle := C.CString(title)
defer freestr(ctitle)
cdescription := C.CString(description) cdescription := C.CString(description)
defer freestr(cdescription)
C.uiMsgBoxError(w.w, ctitle, cdescription) C.uiMsgBoxError(w.w, ctitle, cdescription)
freestr(ctitle)
freestr(cdescription)
} }
func OpenFile(w *Window) string { func OpenFile(w *Window) string {
cname := C.uiOpenFile(w.w) cname := C.uiOpenFile(w.w)
name := C.GoString(cname) if cname == nil {
C.uiFreeText(cname) return ""
return name }
defer C.uiFreeText(cname)
return C.GoString(cname)
} }
func SaveFile(w *Window) string { func SaveFile(w *Window) string {
cname := C.uiSaveFile(w.w) cname := C.uiSaveFile(w.w)
name := C.GoString(cname) if cname == nil {
C.uiFreeText(cname) return ""
return name }
defer C.uiFreeText(cname)
return C.GoString(cname)
} }
func MsgBox(w *Window, title string, description string) { func MsgBox(w *Window, title string, description string) {
ctitle := C.CString(title) ctitle := C.CString(title)
defer freestr(ctitle)
cdescription := C.CString(description) cdescription := C.CString(description)
defer freestr(cdescription)
C.uiMsgBox(w.w, ctitle, cdescription) C.uiMsgBox(w.w, ctitle, cdescription)
freestr(ctitle)
freestr(cdescription)
} }