go-prompt/console_interface.go

90 lines
1.1 KiB
Go
Raw Normal View History

2017-07-16 08:20:58 +00:00
package prompt
type WinSize struct {
Row uint16
Col uint16
}
2017-07-18 16:16:51 +00:00
type Color int
2017-08-03 06:53:38 +00:00
2017-07-18 16:16:51 +00:00
const (
DefaultColor Color = iota
// Low intensity
Black
DarkRed
DarkGreen
Brown
DarkBlue
Purple
Cyan
LightGray
// High intensity
DarkGray
Red
Green
Yellow
Blue
Fuchsia
Turquoise
White
)
2017-07-16 08:20:58 +00:00
type ConsoleParser interface {
// Setup
Setup() error
// TearDown
TearDown() error
// GetSCIICode returns ASCIICode correspond to input byte codes.
2017-08-03 06:53:38 +00:00
GetKey(b []byte) Key
2017-07-16 08:20:58 +00:00
// GetWinSize returns winsize struct which is the response of ioctl(2).
GetWinSize() *WinSize
}
type ConsoleWriter interface {
/* Write */
2017-07-18 10:06:38 +00:00
WriteRaw(data []byte)
2017-07-16 08:20:58 +00:00
Write(data []byte)
WriteStr(data string)
2017-07-18 10:06:38 +00:00
WriteRawStr(data string)
2017-07-16 08:20:58 +00:00
Flush() error
/* Erasing */
EraseScreen()
EraseUp()
EraseDown()
EraseStartOfLine()
EraseEndOfLine()
EraseLine()
/* Cursor */
ShowCursor()
HideCursor()
CursorGoTo(row, col int)
CursorUp(n int)
CursorDown(n int)
CursorForward(n int)
CursorBackward(n int)
AskForCPR()
SaveCursor()
UnSaveCursor()
/* Scrolling */
ScrollDown()
ScrollUp()
/* Title */
SetTitle(title string)
ClearTitle()
2017-07-18 16:16:51 +00:00
/* Font */
2017-07-16 08:20:58 +00:00
2017-07-18 16:16:51 +00:00
SetColor(fg, bg Color, bold bool)
2017-07-16 08:20:58 +00:00
}