2014-02-14 14:00:59 -06:00
|
|
|
// 14 february 2014
|
|
|
|
//package ui
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
// A LineEdit is a control which allows you to enter a single line of text.
|
|
|
|
type LineEdit struct {
|
|
|
|
// TODO Typing event
|
|
|
|
|
|
|
|
lock sync.Mutex
|
|
|
|
created bool
|
|
|
|
sysData *sysData
|
|
|
|
initText string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLineEdit makes a new LineEdit with the specified text.
|
|
|
|
func NewLineEdit(text string) *LineEdit {
|
|
|
|
return &LineEdit{
|
|
|
|
sysData: mksysdata(c_lineedit),
|
|
|
|
initText: text,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 14:51:06 -06:00
|
|
|
// SetText sets the LineEdit's text.
|
|
|
|
func (l *LineEdit) SetText(text string) (err error) {
|
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
|
|
|
|
|
|
|
if l.created {
|
|
|
|
return l.sysData.setText(text)
|
|
|
|
}
|
|
|
|
l.initText = text
|
|
|
|
return nil
|
|
|
|
}
|
2014-02-14 14:00:59 -06:00
|
|
|
|
|
|
|
// Text returns the LineEdit's text.
|
2014-02-15 12:36:24 -06:00
|
|
|
func (l *LineEdit) Text() string {
|
2014-02-14 14:00:59 -06:00
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
|
|
|
|
|
|
|
if l.created {
|
|
|
|
return l.sysData.text()
|
|
|
|
}
|
2014-02-15 12:36:24 -06:00
|
|
|
return l.initText
|
2014-02-14 14:00:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *LineEdit) 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 14:00:59 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
l.created = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *LineEdit) setRect(x int, y int, width int, height int) error {
|
|
|
|
l.lock.Lock()
|
|
|
|
defer l.lock.Unlock()
|
|
|
|
|
|
|
|
return l.sysData.setRect(x, y, width, height)
|
|
|
|
}
|