2014-02-14 14:00:59 -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:00:59 -06:00
|
|
|
|
|
|
|
// A LineEdit is a control which allows you to enter a single line of text.
|
|
|
|
type LineEdit struct {
|
2014-06-10 10:38:52 -05:00
|
|
|
created bool
|
|
|
|
sysData *sysData
|
|
|
|
initText string
|
|
|
|
password bool
|
2014-02-14 14:00:59 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewLineEdit makes a new LineEdit with the specified text.
|
|
|
|
func NewLineEdit(text string) *LineEdit {
|
|
|
|
return &LineEdit{
|
2014-06-10 10:38:52 -05:00
|
|
|
sysData: mksysdata(c_lineedit),
|
|
|
|
initText: text,
|
2014-02-14 14:00:59 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 14:06:51 -06:00
|
|
|
// NewPasswordEdit makes a new LineEdit which allows the user to enter a password.
|
|
|
|
func NewPasswordEdit() *LineEdit {
|
|
|
|
return &LineEdit{
|
2014-06-10 10:38:52 -05:00
|
|
|
sysData: mksysdata(c_lineedit),
|
|
|
|
password: true,
|
2014-02-25 14:06:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-15 14:51:06 -06:00
|
|
|
// SetText sets the LineEdit's text.
|
2014-03-10 09:45:15 -05:00
|
|
|
func (l *LineEdit) 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
|
|
|
}
|
|
|
|
l.initText = text
|
|
|
|
}
|
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
|
|
|
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 {
|
2014-02-25 14:06:51 -06:00
|
|
|
l.sysData.alternate = l.password
|
2014-04-01 15:43:56 -05:00
|
|
|
err := l.sysData.make(window)
|
2014-02-14 14:00:59 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-04-01 15:43:56 -05:00
|
|
|
l.sysData.setText(l.initText)
|
2014-02-14 14:00:59 -06:00
|
|
|
l.created = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-25 21:17:26 -05:00
|
|
|
func (l *LineEdit) allocate(x int, y int, width int, height int, d *sysSizeData) []*allocation {
|
|
|
|
return []*allocation{&allocation{
|
2014-06-10 10:38:52 -05:00
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
width: width,
|
|
|
|
height: height,
|
2014-06-25 21:17:26 -05:00
|
|
|
this: l,
|
|
|
|
}}
|
2014-02-14 14:00:59 -06:00
|
|
|
}
|
2014-02-24 09:56:35 -06:00
|
|
|
|
2014-06-25 21:17:26 -05:00
|
|
|
func (l *LineEdit) preferredSize(d *sysSizeData) (width int, height int) {
|
|
|
|
return l.sysData.preferredSize(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *LineEdit) commitResize(a *allocation, d *sysSizeData) {
|
2014-06-25 22:21:57 -05:00
|
|
|
l.sysData.commitResize(a, d)
|
2014-06-25 21:17:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *LineEdit) getAuxResizeInfo(d *sysSizeData) {
|
|
|
|
l.sysData.getAuxResizeInfo(d)
|
2014-02-24 09:56:35 -06:00
|
|
|
}
|