-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtextfield.go
67 lines (56 loc) · 1.32 KB
/
textfield.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// mauview - A Go TUI library based on tcell.
// Copyright © 2019 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package mauview
import (
"sync"
"github.com/gdamore/tcell/v2"
)
type TextField struct {
sync.Mutex
*SimpleEventHandler
text string
style tcell.Style
}
func NewTextField() *TextField {
return &TextField{
SimpleEventHandler: &SimpleEventHandler{},
text: "",
style: tcell.StyleDefault.Foreground(Styles.PrimaryTextColor),
}
}
func (tf *TextField) SetText(text string) *TextField {
tf.Lock()
tf.text = text
tf.Unlock()
return tf
}
func (tf *TextField) SetTextColor(color tcell.Color) *TextField {
tf.Lock()
tf.style = tf.style.Foreground(color)
tf.Unlock()
return tf
}
func (tf *TextField) SetBackgroundColor(color tcell.Color) *TextField {
tf.Lock()
tf.style = tf.style.Background(color)
tf.Unlock()
return tf
}
func (tf *TextField) SetStyle(style tcell.Style) *TextField {
tf.Lock()
tf.style = style
tf.Unlock()
return tf
}
func (tf *TextField) Draw(screen Screen) {
tf.Lock()
width, _ := screen.Size()
screen.SetStyle(tf.style)
screen.Clear()
PrintWithStyle(screen, tf.text, 0, 0, width, AlignLeft, tf.style)
tf.Unlock()
}