aboutsummaryrefslogtreecommitdiff
path: root/ui/widget
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-03-22 16:44:24 +0200
committerTulir Asokan <tulir@maunium.net>2018-03-22 16:44:24 +0200
commit492a8752f1f5493915da4e2bec9516ed7557dc23 (patch)
tree20f853026aeff884be5979e74abc5bfd4eeb4749 /ui/widget
parent9fd67102ad2cca16c092e23ffd928b77ab08d7e0 (diff)
Move input field to RoomView
Diffstat (limited to 'ui/widget')
-rw-r--r--ui/widget/room-view.go70
1 files changed, 65 insertions, 5 deletions
diff --git a/ui/widget/room-view.go b/ui/widget/room-view.go
index b103490..69d5b29 100644
--- a/ui/widget/room-view.go
+++ b/ui/widget/room-view.go
@@ -23,7 +23,7 @@ import (
"time"
"github.com/gdamore/tcell"
- rooms "maunium.net/go/gomuks/matrix/room"
+ "maunium.net/go/gomuks/matrix/room"
"maunium.net/go/gomuks/ui/types"
"maunium.net/go/tview"
)
@@ -35,6 +35,7 @@ type RoomView struct {
content *MessageView
status *tview.TextView
userList *tview.TextView
+ input *AdvancedInputField
Room *rooms.Room
FetchHistoryLock *sync.Mutex
@@ -47,33 +48,92 @@ func NewRoomView(room *rooms.Room) *RoomView {
content: NewMessageView(),
status: tview.NewTextView(),
userList: tview.NewTextView(),
+ input: NewAdvancedInputField(),
FetchHistoryLock: &sync.Mutex{},
Room: room,
}
+
+ view.input.
+ SetFieldBackgroundColor(tcell.ColorDefault).
+ SetPlaceholder("Send a message...").
+ SetPlaceholderExtColor(tcell.ColorGray)
+
view.topic.
SetText(strings.Replace(room.GetTopic(), "\n", " ", -1)).
SetBackgroundColor(tcell.ColorDarkGreen)
+
view.status.SetBackgroundColor(tcell.ColorDimGray)
+
view.userList.SetDynamicColors(true)
+
+ return view
+}
+
+func (view *RoomView) SetTabCompleteFunc(fn func(room *RoomView, text string, cursorOffset int) string) *RoomView {
+ view.input.SetTabCompleteFunc(func(text string, cursorOffset int) string {
+ return fn(view, text, cursorOffset)
+ })
+ return view
+}
+
+func (view *RoomView) SetInputCapture(fn func(room *RoomView, event *tcell.EventKey) *tcell.EventKey) *RoomView {
+ view.input.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
+ return fn(view, event)
+ })
return view
}
+func (view *RoomView) SetInputSubmitFunc(fn func(room *RoomView, text string)) *RoomView {
+ view.input.SetDoneFunc(func(key tcell.Key) {
+ if key == tcell.KeyEnter {
+ fn(view, view.input.GetText())
+ }
+ })
+ return view
+}
+
+func (view *RoomView) SetInputChangedFunc(fn func(room *RoomView, text string)) *RoomView {
+ view.input.SetChangedFunc(func(text string) {
+ fn(view, text)
+ })
+ return view
+}
+
+func (view *RoomView) SetInputText(newText string) *RoomView {
+ view.input.SetText(newText)
+ return view
+}
+
+func (view *RoomView) GetInputText() string {
+ return view.input.GetText()
+}
+
+func (view *RoomView) GetInputField() *AdvancedInputField {
+ return view.input
+}
+
+func (view *RoomView) Focus(delegate func(p tview.Primitive)) {
+ delegate(view.input)
+}
+
func (view *RoomView) Draw(screen tcell.Screen) {
view.Box.Draw(screen)
x, y, width, height := view.GetRect()
view.topic.SetRect(x, y, width, 1)
- view.content.SetRect(x, y+1, width-30, height-2)
- view.status.SetRect(x, y+height-1, width, 1)
- view.userList.SetRect(x+width-29, y+1, 29, height-2)
+ view.content.SetRect(x, y+1, width-30, height-3)
+ view.status.SetRect(x, y+height-2, width, 1)
+ view.userList.SetRect(x+width-29, y+1, 29, height-3)
+ view.input.SetRect(x, y+height-1, width, 1)
view.topic.Draw(screen)
view.content.Draw(screen)
view.status.Draw(screen)
+ view.input.Draw(screen)
borderX := x + width - 30
background := tcell.StyleDefault.Background(view.GetBackgroundColor()).Foreground(view.GetBorderColor())
- for borderY := y + 1; borderY < y+height-1; borderY++ {
+ for borderY := y + 1; borderY < y+height-2; borderY++ {
screen.SetContent(borderX, borderY, tview.GraphicsVertBar, nil, background)
}
view.userList.Draw(screen)