Documentation
¶
Index ¶
- type Char
- type Color
- type ColorMode
- type Cursor
- type PositionedChar
- type Renderer
- func (r *Renderer) Debug(s string)
- func (r *Renderer) DemoKeypress(str string)
- func (r *Renderer) GetRune(x, y int) rune
- func (r *Renderer) HandleCh(ch PositionedChar)
- func (r *Renderer) HardRefresh()
- func (r *Renderer) ListenToQueue()
- func (r *Renderer) Resize(w, h int)
- func (r *Renderer) SetCursor(x, y int)
- type Style
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ColorMode ¶
type ColorMode int
ColorMode is the type of color associated with a cursor
const ( // ColorNone is the default unset color state ColorNone ColorMode = iota // ColorBit3Normal is for the 8 default non-bright colors ColorBit3Normal // ColorBit3Bright is for the 8 default bright colors ColorBit3Bright // ColorBit8 is specified at https://en.wikipedia.org/w/index.php?title=ANSI_escape_code&oldid=873901864#8-bit ColorBit8 // ColorBit24 is specified at https://en.wikipedia.org/w/index.php?title=ANSI_escape_code&oldid=873901864#24-bit ColorBit24 )
type PositionedChar ¶
A PositionedChar is a Char with a specific location on the screen
type Renderer ¶
type Renderer struct { Pause chan bool Resume chan bool DemoText string // contains filtered or unexported fields }
Renderer is our simplified implemention of ncurses
func (*Renderer) DemoKeypress ¶
DemoKeypress is used for demos of 3mux
func (*Renderer) HandleCh ¶
func (r *Renderer) HandleCh(ch PositionedChar)
HandleCh places a PositionedChar in the pending screen buffer
func (*Renderer) HardRefresh ¶
func (r *Renderer) HardRefresh()
HardRefresh force clears all cached chars
func (*Renderer) ListenToQueue ¶
func (r *Renderer) ListenToQueue()
ListenToQueue is a blocking function that processes data sent to the RenderQueue
Click to show internal directories.
Click to hide internal directories.