summaryrefslogtreecommitdiff
path: root/newctrl/textfield_darwin.go
blob: bf630731d999bcbc49bab7e5f8c89138d5455fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// 16 july 2014

package ui

import (
	"unsafe"
)

// #include "objc_darwin.h"
import "C"

type textfield struct {
	*controlSingleObject
	changed *event
	invalid C.id
	chainpreferredSize	func(d *sizing) (int, int)
}

func finishNewTextField(id C.id) *textfield {
	t := &textfield{
		controlSingleObject:		newControlSingleObject(id),
		changed: newEvent(),
	}
	C.textfieldSetDelegate(t.id, unsafe.Pointer(t))
	t.chainpreferredSize = t.fpreferredSize
	t.fpreferredSize = t.xpreferredSize
	return t
}

func newTextField() *textfield {
	return finishNewTextField(C.newTextField())
}

func newPasswordField() *textfield {
	return finishNewTextField(C.newPasswordField())
}

func (t *textfield) Text() string {
	return C.GoString(C.textfieldText(t.id))
}

func (t *textfield) SetText(text string) {
	ctext := C.CString(text)
	defer C.free(unsafe.Pointer(ctext))
	C.textfieldSetText(t.id, ctext)
}

func (t *textfield) OnChanged(f func()) {
	t.changed.set(f)
}

func (t *textfield) Invalid(reason string) {
	if t.invalid != nil {
		C.textfieldCloseInvalidPopover(t.invalid)
		t.invalid = nil
	}
	if reason == "" {
		return
	}
	creason := C.CString(reason)
	defer C.free(unsafe.Pointer(creason))
	t.invalid = C.textfieldOpenInvalidPopover(t.id, creason)
}

//export textfieldChanged
func textfieldChanged(data unsafe.Pointer) {
	t := (*textfield)(data)
	t.changed.fire()
}

func (t *textfield) xpreferredSize(d *sizing) (width, height int) {
	_, height = t.chainpreferredSize(d)
	// the returned width is based on the contents; use this instead
	return C.textfieldWidth, height
}