about summary refs log tree commit diff stats
path: root/lib/ui/text.go
diff options
context:
space:
mode:
authorKalyan Sriram <coder.kalyan@gmail.com>2020-07-27 01:03:55 -0700
committerReto Brunner <reto@labrat.space>2020-08-06 21:42:06 +0200
commit905cb9dfd3ef197bb4b59039a1be76ce2c8e3099 (patch)
tree2d923c42ec224b1d525d942a7bb17416f4a62dd5 /lib/ui/text.go
parent548a5fff68a648a5e0b6fd909e3c21463addc8af (diff)
downloadaerc-905cb9dfd3ef197bb4b59039a1be76ce2c8e3099.tar.gz
Implement style configuration.
Introduce the ability to configure stylesets, allowing customization of
aerc's look (color scheme, font weight, etc). Default styleset is
installed to /path/to/aerc/stylesets/default.
Diffstat (limited to 'lib/ui/text.go')
-rw-r--r--lib/ui/text.go42
1 files changed, 6 insertions, 36 deletions
diff --git a/lib/ui/text.go b/lib/ui/text.go
index 2b82598..455c2eb 100644
--- a/lib/ui/text.go
+++ b/lib/ui/text.go
@@ -15,17 +15,13 @@ type Text struct {
 	Invalidatable
 	text     string
 	strategy uint
-	fg       tcell.Color
-	bg       tcell.Color
-	bold     bool
-	reverse  bool
+	style    tcell.Style
 }
 
-func NewText(text string) *Text {
+func NewText(text string, style tcell.Style) *Text {
 	return &Text{
-		bg:   tcell.ColorDefault,
-		fg:   tcell.ColorDefault,
-		text: text,
+		text:  text,
+		style: style,
 	}
 }
 
@@ -41,25 +37,6 @@ func (t *Text) Strategy(strategy uint) *Text {
 	return t
 }
 
-func (t *Text) Bold(bold bool) *Text {
-	t.bold = bold
-	t.Invalidate()
-	return t
-}
-
-func (t *Text) Color(fg tcell.Color, bg tcell.Color) *Text {
-	t.fg = fg
-	t.bg = bg
-	t.Invalidate()
-	return t
-}
-
-func (t *Text) Reverse(reverse bool) *Text {
-	t.reverse = reverse
-	t.Invalidate()
-	return t
-}
-
 func (t *Text) Draw(ctx *Context) {
 	size := runewidth.StringWidth(t.text)
 	x := 0
@@ -69,15 +46,8 @@ func (t *Text) Draw(ctx *Context) {
 	if t.strategy == TEXT_RIGHT {
 		x = ctx.Width() - size
 	}
-	style := tcell.StyleDefault.Background(t.bg).Foreground(t.fg)
-	if t.bold {
-		style = style.Bold(true)
-	}
-	if t.reverse {
-		style = style.Reverse(true)
-	}
-	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', style)
-	ctx.Printf(x, 0, style, "%s", t.text)
+	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', t.style)
+	ctx.Printf(x, 0, t.style, "%s", t.text)
 }
 
 func (t *Text) Invalidate() {