diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-29 10:41:02 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-29 10:41:02 -0400 |
| commit | 7e0a0db4928ffba4ff882bbddea6b2ad22a4213e (patch) | |
| tree | 81fbc5f4c2c345ec309100326a43c4c05eb01388 /dialog_darwin.go | |
| parent | f4677247f19177cb8a3521839dac3cbe7ffde417 (diff) | |
Did most of the conversion of dialog_darwin.go/.m to the new API.
Diffstat (limited to 'dialog_darwin.go')
| -rw-r--r-- | dialog_darwin.go | 56 |
1 files changed, 23 insertions, 33 deletions
diff --git a/dialog_darwin.go b/dialog_darwin.go index 038c640..6ce28c0 100644 --- a/dialog_darwin.go +++ b/dialog_darwin.go @@ -3,6 +3,7 @@ package ui import ( + "fmt" "unsafe" ) @@ -17,43 +18,32 @@ func dialog_send(pchan unsafe.Pointer, res C.intptr_t) { }() } -func _msgBox(parent *Window, primarytext string, secondarytext string, style uintptr) chan int { - ret := make(chan int) - uitask <- func() { - var pwin C.id = nil +func _msgBox(parent *Window, primarytext string, secondarytext string, style uintptr) Response { + var pwin C.id = nil - if parent != dialogWindow { - pwin = parent.sysData.id - } - primary := toNSString(primarytext) - secondary := C.id(nil) - if secondarytext != "" { - secondary = toNSString(secondarytext) - } - switch style { - case 0: // normal - C.msgBox(pwin, primary, secondary, unsafe.Pointer(&ret)) - case 1: // error - C.msgBoxError(pwin, primary, secondary, unsafe.Pointer(&ret)) - } + if parent != dialogWindow { + pwin = parent.sysData.id } - return ret + primary := toNSString(primarytext) + secondary := C.id(nil) + if secondarytext != "" { + secondary = toNSString(secondarytext) + } + switch style { + case 0: // normal + C.msgBox(pwin, primary, secondary, nil) + return OK + case 1: // error + C.msgBoxError(pwin, primary, secondary, nil) + return OK + } + panic(fmt.Errorf("unknown message box style %d\n", style)) } -func (w *Window) msgBox(primarytext string, secondarytext string) (done chan struct{}) { - done = make(chan struct{}) - go func() { - <-_msgBox(w, primarytext, secondarytext, 0) - done <- struct{}{} - }() - return done +func (w *Window) msgBox(primarytext string, secondarytext string) { + _msgBox(w, primarytext, secondarytext, 0) } -func (w *Window) msgBoxError(primarytext string, secondarytext string) (done chan struct{}) { - done = make(chan struct{}) - go func() { - <-_msgBox(w, primarytext, secondarytext, 1) - done <- struct{}{} - }() - return done +func (w *Window) msgBoxError(primarytext string, secondarytext string) { + _msgBox(w, primarytext, secondarytext, 1) } |
