gomuks/ui/widget/util.go

74 lines
2.3 KiB
Go
Raw Permalink Normal View History

2018-03-25 13:21:59 +02:00
// gomuks - A terminal Matrix client written in Go.
2020-04-19 17:10:14 +02:00
// Copyright (C) 2020 Tulir Asokan
2018-03-25 13:21:59 +02:00
//
// This program is free software: you can redistribute it and/or modify
2019-01-17 13:13:25 +01:00
// it under the terms of the GNU Affero General Public License as published by
2018-03-25 13:21:59 +02:00
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-01-17 13:13:25 +01:00
// GNU Affero General Public License for more details.
2018-03-25 13:21:59 +02:00
//
2019-01-17 13:13:25 +01:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-03-25 13:21:59 +02:00
package widget
import (
2018-05-22 16:24:47 +02:00
"fmt"
2019-03-25 23:37:35 +01:00
"strconv"
2018-03-25 13:21:59 +02:00
"github.com/mattn/go-runewidth"
2019-03-25 23:37:35 +01:00
2022-04-15 11:53:09 +02:00
"go.mau.fi/mauview"
"go.mau.fi/tcell"
2018-03-25 13:21:59 +02:00
)
2019-03-25 23:37:35 +01:00
func WriteLineSimple(screen mauview.Screen, line string, x, y int) {
WriteLine(screen, mauview.AlignLeft, line, x, y, 1<<30, tcell.StyleDefault)
}
2019-03-25 23:37:35 +01:00
func WriteLineSimpleColor(screen mauview.Screen, line string, x, y int, color tcell.Color) {
WriteLine(screen, mauview.AlignLeft, line, x, y, 1<<30, tcell.StyleDefault.Foreground(color))
}
2019-03-25 23:37:35 +01:00
func WriteLineColor(screen mauview.Screen, align int, line string, x, y, maxWidth int, color tcell.Color) {
WriteLine(screen, align, line, x, y, maxWidth, tcell.StyleDefault.Foreground(color))
}
2019-03-25 23:37:35 +01:00
func WriteLine(screen mauview.Screen, align int, line string, x, y, maxWidth int, style tcell.Style) {
2018-03-25 13:21:59 +02:00
offsetX := 0
2019-03-25 23:37:35 +01:00
if align == mauview.AlignRight {
2022-04-17 22:54:40 +02:00
offsetX = maxWidth - runewidth.StringWidth(line)
2018-03-25 13:21:59 +02:00
}
if offsetX < 0 {
offsetX = 0
}
for _, ch := range line {
chWidth := runewidth.RuneWidth(ch)
if chWidth == 0 {
continue
}
for localOffset := 0; localOffset < chWidth; localOffset++ {
screen.SetContent(x+offsetX+localOffset, y, ch, nil, style)
2018-03-25 13:21:59 +02:00
}
offsetX += chWidth
2019-03-26 18:57:44 +01:00
if offsetX >= maxWidth {
2018-03-25 13:21:59 +02:00
break
}
}
}
2019-03-25 23:37:35 +01:00
func WriteLinePadded(screen mauview.Screen, align int, line string, x, y, maxWidth int, style tcell.Style) {
padding := strconv.Itoa(maxWidth)
2019-03-25 23:37:35 +01:00
if align == mauview.AlignRight {
line = fmt.Sprintf("%"+padding+"s", line)
} else {
line = fmt.Sprintf("%-"+padding+"s", line)
}
2019-03-25 23:37:35 +01:00
WriteLine(screen, mauview.AlignLeft, line, x, y, maxWidth, style)
}