aboutsummaryrefslogtreecommitdiff
path: root/vendor/maunium.net/go/tview/borders.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2019-01-11 23:28:47 +0200
committerTulir Asokan <tulir@maunium.net>2019-01-11 23:28:47 +0200
commit331597b9f8a7942cbcb233a328301e4d5bf94fb0 (patch)
tree5ec624585ebf66c63549a098acb6f7421f1193a7 /vendor/maunium.net/go/tview/borders.go
parent2fc3378b717f40f37f3a188b68407887242d9c06 (diff)
Switch to Go modules and make other changes
Diffstat (limited to 'vendor/maunium.net/go/tview/borders.go')
-rw-r--r--vendor/maunium.net/go/tview/borders.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/maunium.net/go/tview/borders.go b/vendor/maunium.net/go/tview/borders.go
deleted file mode 100644
index 946c878..0000000
--- a/vendor/maunium.net/go/tview/borders.go
+++ /dev/null
@@ -1,45 +0,0 @@
-package tview
-
-// Borders defines various borders used when primitives are drawn.
-// These may be changed to accommodate a different look and feel.
-var Borders = struct {
- Horizontal rune
- Vertical rune
- TopLeft rune
- TopRight rune
- BottomLeft rune
- BottomRight rune
-
- LeftT rune
- RightT rune
- TopT rune
- BottomT rune
- Cross rune
-
- HorizontalFocus rune
- VerticalFocus rune
- TopLeftFocus rune
- TopRightFocus rune
- BottomLeftFocus rune
- BottomRightFocus rune
-}{
- Horizontal: BoxDrawingsLightHorizontal,
- Vertical: BoxDrawingsLightVertical,
- TopLeft: BoxDrawingsLightDownAndRight,
- TopRight: BoxDrawingsLightDownAndLeft,
- BottomLeft: BoxDrawingsLightUpAndRight,
- BottomRight: BoxDrawingsLightUpAndLeft,
-
- LeftT: BoxDrawingsLightVerticalAndRight,
- RightT: BoxDrawingsLightVerticalAndLeft,
- TopT: BoxDrawingsLightDownAndHorizontal,
- BottomT: BoxDrawingsLightUpAndHorizontal,
- Cross: BoxDrawingsLightVerticalAndHorizontal,
-
- HorizontalFocus: BoxDrawingsDoubleHorizontal,
- VerticalFocus: BoxDrawingsDoubleVertical,
- TopLeftFocus: BoxDrawingsDoubleDownAndRight,
- TopRightFocus: BoxDrawingsDoubleDownAndLeft,
- BottomLeftFocus: BoxDrawingsDoubleUpAndRight,
- BottomRightFocus: BoxDrawingsDoubleUpAndLeft,
-}