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
|
|
|
|
|
|
|
// A Label is a static line of text used to mark other controls.
|
2014-04-13 17:05:07 -05:00
|
|
|
// Label text is drawn on a single line; text that does not fit is truncated.
|
2014-06-25 10:39:06 -05:00
|
|
|
// A Label can appear in one of two places: bound to a control or standalone.
|
|
|
|
// This determines the vertical alignment of the label.
|
2014-02-14 14:12:03 -06:00
|
|
|
type Label struct {
|
2014-06-10 10:38:52 -05:00
|
|
|
created bool
|
|
|
|
sysData *sysData
|
|
|
|
initText string
|
2014-06-25 10:39:06 -05:00
|
|
|
standalone bool
|
2014-02-14 14:12:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewLabel creates a new Label with the specified text.
|
2014-06-25 10:39:06 -05:00
|
|
|
// The label is set to be bound to a control, so its vertical position depends on its vertical cell size in an implementation-defined manner.
|
2014-02-14 14:12:03 -06:00
|
|
|
func NewLabel(text string) *Label {
|
|
|
|
return &Label{
|
2014-06-10 10:38:52 -05:00
|
|
|
sysData: mksysdata(c_label),
|
|
|
|
initText: text,
|
2014-02-14 14:12:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-25 10:39:06 -05:00
|
|
|
// NewStandaloneLabel creates a new Label with the specified text.
|
|
|
|
// The label is set to be standalone, so its vertical position will always be at the top of the vertical space assigned to it.
|
|
|
|
func NewStandaloneLabel(text string) *Label {
|
|
|
|
return &Label{
|
|
|
|
sysData: mksysdata(c_label),
|
|
|
|
initText: text,
|
|
|
|
standalone: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
l.initText = text
|
|
|
|
}
|
|
|
|
|
|
|
|
// Text returns the Label's text.
|
|
|
|
func (l *Label) Text() string {
|
|
|
|
if l.created {
|
|
|
|
return l.sysData.text()
|
|
|
|
}
|
|
|
|
return l.initText
|
|
|
|
}
|
2014-02-14 14:12:03 -06:00
|
|
|
|
|
|
|
func (l *Label) make(window *sysData) error {
|
2014-06-25 10:39:06 -05:00
|
|
|
l.sysData.alternate = l.standalone
|
2014-04-01 15:43:56 -05:00
|
|
|
err := l.sysData.make(window)
|
2014-02-14 19:41:36 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-04-01 15:43:56 -05:00
|
|
|
l.sysData.setText(l.initText)
|
2014-02-14 19:41:36 -06:00
|
|
|
l.created = true
|
|
|
|
return nil
|
2014-02-14 14:12:03 -06:00
|
|
|
}
|
|
|
|
|
2014-06-25 21:17:26 -05:00
|
|
|
func (l *Label) 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:12:03 -06:00
|
|
|
}
|
2014-02-24 09:56:35 -06:00
|
|
|
|
2014-06-25 21:17:26 -05:00
|
|
|
func (l *Label) preferredSize(d *sysSizeData) (width int, height int) {
|
|
|
|
return l.sysData.preferredSize(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Label) 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 *Label) getAuxResizeInfo(d *sysSizeData) {
|
|
|
|
l.sysData.getAuxResizeInfo(d)
|
2014-02-24 09:56:35 -06:00
|
|
|
}
|