diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-30 23:01:08 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-30 23:01:08 -0400 |
| commit | 155899c65ed32245e2ccad4197a10c77017d835b (patch) | |
| tree | 4c337130ff5d1640efc1e94258ab3b8a9eef0c55 /lineedit.go | |
| parent | 3d4e54822dc6117306d5a4ac0e79017c4810b657 (diff) | |
Out with the old...
Diffstat (limited to 'lineedit.go')
| -rw-r--r-- | lineedit.go | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/lineedit.go b/lineedit.go deleted file mode 100644 index 56ac97c..0000000 --- a/lineedit.go +++ /dev/null @@ -1,77 +0,0 @@ -// 14 february 2014 - -package ui - -// A LineEdit is a control which allows you to enter a single line of text. -type LineEdit struct { - created bool - sysData *sysData - initText string - password bool -} - -// NewLineEdit makes a new LineEdit with the specified text. -func NewLineEdit(text string) *LineEdit { - return &LineEdit{ - sysData: mksysdata(c_lineedit), - initText: text, - } -} - -// NewPasswordEdit makes a new LineEdit which allows the user to enter a password. -func NewPasswordEdit() *LineEdit { - return &LineEdit{ - sysData: mksysdata(c_lineedit), - password: true, - } -} - -// SetText sets the LineEdit's text. -func (l *LineEdit) SetText(text string) { - if l.created { - l.sysData.setText(text) - return - } - l.initText = text -} - -// Text returns the LineEdit's text. -func (l *LineEdit) Text() string { - if l.created { - return l.sysData.text() - } - return l.initText -} - -func (l *LineEdit) make(window *sysData) error { - l.sysData.alternate = l.password - err := l.sysData.make(window) - if err != nil { - return err - } - l.sysData.setText(l.initText) - l.created = true - return nil -} - -func (l *LineEdit) allocate(x int, y int, width int, height int, d *sysSizeData) []*allocation { - return []*allocation{&allocation{ - x: x, - y: y, - width: width, - height: height, - this: l, - }} -} - -func (l *LineEdit) preferredSize(d *sysSizeData) (width int, height int) { - return l.sysData.preferredSize(d) -} - -func (l *LineEdit) commitResize(a *allocation, d *sysSizeData) { - l.sysData.commitResize(a, d) -} - -func (l *LineEdit) getAuxResizeInfo(d *sysSizeData) { - l.sysData.getAuxResizeInfo(d) -} |
