aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/MichaelMure/gocui/attribute.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-12-25 20:46:55 +0100
committerMichael Muré <batolettre@gmail.com>2018-12-25 20:49:54 +0100
commitebcf3a75879360ee64c5ea9ce3dafcc766f16e88 (patch)
treec8c2c0ce6de867ec6754ff5ba4e552776480d6cd /vendor/github.com/MichaelMure/gocui/attribute.go
parent60d44f750ed7929e90a394e232f069e47bc78170 (diff)
downloadgit-bug-ebcf3a75879360ee64c5ea9ce3dafcc766f16e88.tar.gz
termui: use a forked gocui to fix large character handling
Diffstat (limited to 'vendor/github.com/MichaelMure/gocui/attribute.go')
-rw-r--r--vendor/github.com/MichaelMure/gocui/attribute.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/github.com/MichaelMure/gocui/attribute.go b/vendor/github.com/MichaelMure/gocui/attribute.go
new file mode 100644
index 00000000..bad758a1
--- /dev/null
+++ b/vendor/github.com/MichaelMure/gocui/attribute.go
@@ -0,0 +1,32 @@
+// Copyright 2014 The gocui Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package gocui
+
+import "github.com/nsf/termbox-go"
+
+// Attribute represents a terminal attribute, like color, font style, etc. They
+// can be combined using bitwise OR (|). Note that it is not possible to
+// combine multiple color attributes.
+type Attribute termbox.Attribute
+
+// Color attributes.
+const (
+ ColorDefault Attribute = Attribute(termbox.ColorDefault)
+ ColorBlack = Attribute(termbox.ColorBlack)
+ ColorRed = Attribute(termbox.ColorRed)
+ ColorGreen = Attribute(termbox.ColorGreen)
+ ColorYellow = Attribute(termbox.ColorYellow)
+ ColorBlue = Attribute(termbox.ColorBlue)
+ ColorMagenta = Attribute(termbox.ColorMagenta)
+ ColorCyan = Attribute(termbox.ColorCyan)
+ ColorWhite = Attribute(termbox.ColorWhite)
+)
+
+// Text style attributes.
+const (
+ AttrBold Attribute = Attribute(termbox.AttrBold)
+ AttrUnderline = Attribute(termbox.AttrUnderline)
+ AttrReverse = Attribute(termbox.AttrReverse)
+)