2014-02-14 14:12:03 -06:00
|
|
|
// 14 february 2014
|
2014-03-12 20:55:45 -05:00
|
|
|
|
2014-02-19 10:41:10 -06:00
|
|
|
package ui
|
2014-02-14 14:12:03 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
// A Label is a static line of text used to mark other controls.
|
|
|
|
type Label struct {
|
|
|
|
lock sync.Mutex
|
|
|
|
created bool
|
|
|
|
sysData *sysData
|
|
|
|
initText string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLabel creates a new Label with the specified text.
|
|
|
|
func NewLabel(text string) *Label {
|
|
|
|
return &Label{
|
|
|
|
sysData: mksysdata(c_label),
|
|
|
|
initText: text,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 14:51:06 -06:00
|
|
|
// SetText sets the Label's text.
|
2014-03-10 09:45:15 -05:00
|
|
|
func (l *Label) SetText(text string) {
|
2014-02-15 14:51:06 -06:00
|
|
|
if l.created {
|
2014-03-10 09:45:15 -05:00
|
|
|
l.sysData.setText(text)
|
|
|
|
return
|
2014-02-15 14:51:06 -06:00
|
|
|
}
|
2014-03-17 12:37:51 -05:00
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
2014-02-15 14:51:06 -06:00
|
|
|
l.initText = text
|
|
|
|
}
|
|
|
|
|
|
|
|
// Text returns the Label's text.
|
|
|
|
func (l *Label) Text() string {
|
|
|
|
if l.created {
|
|
|
|
return l.sysData.text()
|
|
|
|
}
|
2014-03-17 12:37:51 -05:00
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
2014-02-15 14:51:06 -06:00
|
|
|
return l.initText
|
|
|
|
}
|
2014-02-14 14:12:03 -06:00
|
|
|
|
|
|
|
func (l *Label) make(window *sysData) error {
|
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
|
|
|
|
2014-02-15 12:07:46 -06:00
|
|
|
err := l.sysData.make(l.initText, window)
|
2014-02-14 19:41:36 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
l.created = true
|
|
|
|
return nil
|
2014-02-14 14:12:03 -06:00
|
|
|
}
|
|
|
|
|
2014-03-03 16:44:03 -06:00
|
|
|
func (l *Label) setRect(x int, y int, width int, height int, winheight int) error {
|
|
|
|
return l.sysData.setRect(x, y, width, height, winheight)
|
2014-02-14 14:12:03 -06:00
|
|
|
}
|
2014-02-24 09:56:35 -06:00
|
|
|
|
2014-03-09 18:44:41 -05:00
|
|
|
func (l *Label) preferredSize() (width int, height int) {
|
|
|
|
return l.sysData.preferredSize()
|
2014-02-24 09:56:35 -06:00
|
|
|
}
|