andlabs-ui/button.go

71 lines
1.4 KiB
Go
Raw Normal View History

// 12 february 2014
package ui
import (
"sync"
)
// A Button represents a clickable button with some text.
type Button struct {
// Clicked gets a message when the button is clicked.
// You cannot change it once the Window containing the Button has been opened.
Clicked chan struct{}
lock sync.Mutex
created bool
sysData *sysData
initText string
}
// NewButton creates a new button with the specified text.
func NewButton(text string) (b *Button) {
return &Button{
sysData: mksysdata(c_button),
initText: text,
Clicked: newEvent(),
}
}
// SetText sets the button's text.
func (b *Button) SetText(text string) {
2014-02-14 19:41:36 -06:00
if b.created {
b.sysData.setText(text)
return
2014-02-14 19:41:36 -06:00
}
b.lock.Lock()
defer b.lock.Unlock()
b.initText = text
}
// Text returns the button's text.
func (b *Button) Text() string {
if b.created {
return b.sysData.text()
}
b.lock.Lock()
defer b.lock.Unlock()
return b.initText
}
func (b *Button) make(window *sysData) error {
b.lock.Lock()
defer b.lock.Unlock()
b.sysData.event = b.Clicked
err := b.sysData.make(b.initText, window)
2014-02-14 19:41:36 -06:00
if err != nil {
return err
}
b.created = true
return nil
}
func (b *Button) setRect(x int, y int, width int, height int, winheight int) error {
return b.sysData.setRect(x, y, width, height, winheight)
}
func (b *Button) preferredSize() (width int, height int) {
return b.sysData.preferredSize()
}