tview

package module
v0.0.0-...-b067d14 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2018 License: MIT Imports: 16 Imported by: 0

README

Rich Interactive Widgets for Terminal UIs

Godoc Reference Go Report

This Go package provides commonly needed components for terminal based user interfaces.

Screenshot

Among these components are:

  • Input forms (include input/password fields, drop-down selections, checkboxes, and buttons)
  • Navigable multi-color text views
  • Sophisticated navigable table views
  • Selectable lists
  • Grid, Flexbox and page layouts
  • Modal message windows
  • An application wrapper

They come with lots of customization options and can be easily extended to fit your needs.

Installation

go get github.com/rivo/tview

Hello World

This basic example creates a box titled "Hello, World!" and displays it in your terminal:

package main

import (
	"github.com/rivo/tview"
)

func main() {
	box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
	if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
		panic(err)
	}
}

Check out the GitHub Wiki for more examples along with screenshots. Or try the examples in the "demos" subdirectory.

For a presentation highlighting this package, compile and run the program found in the "demos/presentation" subdirectory.

Documentation

Refer to https://godoc.org/github.com/rivo/tview for the package's documentation.

Dependencies

This package is based on github.com/gdamore/tcell (and its dependencies).

Your Feedback

Add your issue here on GitHub. Feel free to get in touch if you have any questions.

Version History

(There are no corresponding tags in the project. I only keep such a history in this README.)

  • v0.14 (2018-04-13)
    • Added an Escape() function which keep strings like color or region tags from being recognized as such.
    • Added ANSIIWriter() and TranslateANSII() which convert ANSII escape sequences to tview color tags.
  • v0.13 (2018-04-01)
    • Added background colors and text attributes to color tags.
  • v0.12 (2018-03-13)
    • Added "suspended mode" to Application.
  • v0.11 (2018-03-02)
    • Added a RemoveItem() function to Grid and Flex.
  • v0.10 (2018-02-22)
    • Direct access to the screen object through callback in Box (i.e. for all primitives).
  • v0.9 (2018-02-20)
    • Introduced Grid layout.
    • Direct access to the screen object through callbacks in Application.
  • v0.8 (2018-01-17)
    • Color tags can now be used almost everywhere.
  • v0.7 (2018-01-16)
    • Forms can now also have a horizontal layout.
  • v0.6 (2018-01-14)
    • All primitives can now intercept all key events when they have focus.
    • Key events can also be intercepted globally (changed to a more general, consistent handling)
  • v0.5 (2018-01-13)
    • TextView now has word wrapping and text alignment
  • v0.4 (2018-01-12)
    • TextView now accepts color tags with any W3C color (including RGB hex values).
    • Support for wide unicode characters.
  • v0.3 (2018-01-11)
    • Added masking to InputField and password entry to Form.
  • v0.2 (2018-01-10)
    • Added Styles variable with default colors for primitives.
    • Completed some missing InputField functions.
  • v0.1 (2018-01-06)
    • First Release.

Documentation

Overview

Package tview implements rich widgets for terminal based user interfaces. The widgets provided with this package are useful for data exploration and data entry.

Widgets

The package implements the following widgets:

  • TextView: Scrollable windows that display multi-colored text. Text may also be highlighted.
  • Table: Scrollable display of tabular data. Table cells, rows, or columns may also be highlighted.
  • List: A navigable text list with optional keyboard shortcuts.
  • InputField: One-line input fields to enter text.
  • DropDown: Drop-down selection fields.
  • Checkbox: Selectable checkbox for boolean values.
  • Button: Buttons which get activated when the user selects them.
  • Form: Forms composed of input fields, drop down selections, checkboxes, and buttons.
  • Modal: A centered window with a text message and one or more buttons.
  • Flex: A Flexbox based layout manager.
  • Pages: A page based layout manager.

The package also provides Application which is used to poll the event queue and draw widgets on screen.

Hello World

The following is a very basic example showing a box with the title "Hello, world!":

package main

import (
	"github.com/rivo/tview"
)

func main() {
	box := tview.NewBox().SetBorder(true).SetTitle("Hello, world!")
	if err := tview.NewApplication().SetRoot(box, true).Run(); err != nil {
		panic(err)
	}
}

First, we create a box primitive with a border and a title. Then we create an application, set the box as its root primitive, and run the event loop. The application exits when the application's Stop() function is called or when Ctrl-C is pressed.

If we have a primitive which consumes key presses, we call the application's SetFocus() function to redirect all key presses to that primitive. Most primitives then offer ways to install handlers that allow you to react to any actions performed on them.

More Demos

You will find more demos in the "demos" subdirectory. It also contains a presentation (written using tview) which gives an overview of the different widgets and how they can be used.

Colors

Throughout this package, colors are specified using the tcell.Color type. Functions such as tcell.GetColor(), tcell.NewHexColor(), and tcell.NewRGBColor() can be used to create colors from W3C color names or RGB values.

Almost all strings which are displayed can contain color tags. Color tags are W3C color names or six hexadecimal digits following a hash tag, wrapped in square brackets. Examples:

This is a [red]warning[white]!
The sky is [#8080ff]blue[#ffffff].

A color tag changes the color of the characters following that color tag. This applies to almost everything from box titles, list text, form item labels, to table cells. In a TextView, this functionality has to be switched on explicitly. See the TextView documentation for more information.

Color tags may contain not just the foreground (text) color but also the background color and additional flags. In fact, the full definition of a color tag is as follows:

[<foreground>:<background>:<flags>]

Each of the three fields can be left blank and trailing fields can be ommitted. (Empty square brackets "[]", however, are not considered color tags.) Colors that are not specified will be left unchanged. A field with just a dash ("-") means "reset to default".

You can specify the following flags (some flags may not be supported by your terminal):

l: blink
b: bold
d: dim
r: reverse (switch foreground and background color)
u: underline

Examples:

[yellow]Yellow text
[yellow:red]Yellow text on red background
[:red]Red background, text color unchanged
[yellow::u]Yellow text underlined
[::bl]Bold, blinking text
[::-]Colors unchanged, flags reset
[-]Reset foreground color
[-:-:-]Reset everything
[:]No effect
[]Not a valid color tag, will print square brackets as they are

In the rare event that you want to display a string such as "[red]" or "[#00ff1a]" without applying its effect, you need to put an opening square bracket before the closing square bracket. Note that the text inside the brackets will be matched less strictly than region or colors tags. I.e. any character that may be used in color or region tags will be recognized. Examples:

[red[]      will be output as [red]
["123"[]    will be output as ["123"]
[#6aff00[[] will be output as [#6aff00[]
[a#"[[[]    will be output as [a#"[[]
[]          will be output as [] (see color tags above)
[[]         will be output as [[] (not an escaped tag)

You can use the Escape() function to insert brackets automatically where needed.

Styles

When primitives are instantiated, they are initialized with colors taken from the global Styles variable. You may change this variable to adapt the look and feel of the primitives to your preferred style.

Unicode Support

This package supports unicode characters including wide characters.

Type Hierarchy

All widgets listed above contain the Box type. All of Box's functions are therefore available for all widgets, too.

All widgets also implement the Primitive interface. There is also the Focusable interface which is used to override functions in subclassing types.

The tview package is based on https://github.com/gdamore/tcell. It uses types and constants from that package (e.g. colors and keyboard values).

This package does not process mouse input (yet).

Index

Constants

View Source
const (
	FlexRow = iota
	FlexColumn
)

Configuration values.

View Source
const (
	AlignLeft = iota
	AlignCenter
	AlignRight
)

Text alignment within a box.

Variables

View Source
var (
	// InputFieldInteger accepts integers.
	InputFieldInteger func(text string, ch rune) bool

	// InputFieldFloat accepts floating-point numbers.
	InputFieldFloat func(text string, ch rune) bool

	// InputFieldMaxLength returns an input field accept handler which accepts
	// input strings up to a given length. Use it like this:
	//
	//   inputField.SetAcceptanceFunc(InputFieldMaxLength(10)) // Accept up to 10 characters.
	InputFieldMaxLength func(maxLength int) func(text string, ch rune) bool
)

Predefined InputField acceptance functions.

View Source
var DefaultFormFieldWidth = 10

DefaultFormFieldWidth is the default field screen width of form elements whose field width is flexible (0). This is used in the Form class for horizontal layouts.

View Source
var Styles = struct {
	ModalBackgroundColor        tcell.Color
	LabelTextColor              tcell.Color
	FieldBackgroundColor        tcell.Color
	FieldTextColor              tcell.Color
	FieldDisableBackgroundColor tcell.Color
	FieldDisableTextColor       tcell.Color
	ButtonBackgroundColor       tcell.Color
	ButtonTextColor             tcell.Color
	PrimitiveBackgroundColor    tcell.Color // Main background color for primitives.
	ContrastBackgroundColor     tcell.Color // Background color for contrasting elements.
	MoreContrastBackgroundColor tcell.Color // Background color for even more contrasting elements.
	BorderColor                 tcell.Color // Box borders.
	TitleColor                  tcell.Color // Box titles.
	GraphicsColor               tcell.Color // Graphics.
	PrimaryTextColor            tcell.Color // Primary text.
	SecondaryTextColor          tcell.Color // Secondary text (e.g. labels).
	TertiaryTextColor           tcell.Color // Tertiary text (e.g. subtitles, notes).
	InverseTextColor            tcell.Color // Text on primary-colored backgrounds.
	ContrastSecondaryTextColor  tcell.Color // Secondary text on ContrastBackgroundColor-colored backgrounds.

	// Semigraphical runes.
	GraphicsHoriBar             rune
	GraphicsVertBar             rune
	GraphicsTopLeftCorner       rune
	GraphicsTopRightCorner      rune
	GraphicsBottomLeftCorner    rune
	GraphicsBottomRightCorner   rune
	GraphicsLeftT               rune
	GraphicsRightT              rune
	GraphicsTopT                rune
	GraphicsBottomT             rune
	GraphicsCross               rune
	GraphicsDbVertBar           rune
	GraphicsDbHorBar            rune
	GraphicsDbTopLeftCorner     rune
	GraphicsDbTopRightCorner    rune
	GraphicsDbBottomRightCorner rune
	GraphicsDbBottomLeftCorner  rune
	GraphicsEllipsis            rune

	GraphicsRadioChecked   string
	GraphicsRadioUnchecked string

	GraphicsCheckboxChecked   string
	GraphicsCheckboxUnchecked string
}{
	ModalBackgroundColor:        tcell.ColorBlack,
	LabelTextColor:              tcell.ColorWhite,
	FieldBackgroundColor:        tcell.ColorGrey,
	FieldTextColor:              tcell.ColorBlack,
	FieldDisableBackgroundColor: tcell.ColorBlack,
	FieldDisableTextColor:       tcell.ColorWhite,
	ButtonBackgroundColor:       tcell.ColorBlack,
	ButtonTextColor:             tcell.ColorWhite,
	PrimitiveBackgroundColor:    tcell.ColorBlack,
	ContrastBackgroundColor:     tcell.ColorBlue,
	MoreContrastBackgroundColor: tcell.ColorGreen,
	BorderColor:                 tcell.ColorWhite,
	TitleColor:                  tcell.ColorWhite,
	GraphicsColor:               tcell.ColorWhite,
	PrimaryTextColor:            tcell.ColorWhite,
	SecondaryTextColor:          tcell.ColorYellow,
	TertiaryTextColor:           tcell.ColorGreen,
	InverseTextColor:            tcell.ColorBlue,
	ContrastSecondaryTextColor:  tcell.ColorDarkCyan,

	GraphicsHoriBar:             '\u2500',
	GraphicsVertBar:             '\u2502',
	GraphicsTopLeftCorner:       '\u250c',
	GraphicsTopRightCorner:      '\u2510',
	GraphicsBottomLeftCorner:    '\u2514',
	GraphicsBottomRightCorner:   '\u2518',
	GraphicsLeftT:               '\u251c',
	GraphicsRightT:              '\u2524',
	GraphicsTopT:                '\u252c',
	GraphicsBottomT:             '\u2534',
	GraphicsCross:               '\u253c',
	GraphicsDbVertBar:           '\u2550',
	GraphicsDbHorBar:            '\u2551',
	GraphicsDbTopLeftCorner:     '\u2554',
	GraphicsDbTopRightCorner:    '\u2557',
	GraphicsDbBottomRightCorner: '\u255d',
	GraphicsDbBottomLeftCorner:  '\u255a',
	GraphicsEllipsis:            '\u2026',

	GraphicsRadioChecked:   "\u25c9",
	GraphicsRadioUnchecked: "\u25ef",

	GraphicsCheckboxChecked:   "X",
	GraphicsCheckboxUnchecked: " ",
}

Styles defines various colors used when primitives are initialized. These may be changed to accommodate a different look and feel.

The default is for applications with a black background and basic colors: black, white, yellow, green, and blue.

View Source
var TabSize = 4

TabSize is the number of spaces with which a tab character will be replaced.

Functions

func ANSIIWriter

func ANSIIWriter(writer io.Writer) io.Writer

ANSIIWriter returns an io.Writer which translates any ANSII escape codes written to it into tview color tags. Other escape codes don't have an effect and are simply removed. The translated text is written to the provided writer.

func Escape

func Escape(text string) string

Escape escapes the given text such that color and/or region tags are not recognized and substituted by the print functions of this package. For example, to include a tag-like string in a box title or in a TextView:

box.SetTitle(tview.Escape("[squarebrackets]"))
fmt.Fprint(textView, tview.Escape(`["quoted"]`))

func Print

func Print(screen tcell.Screen, text string, x, y, maxWidth, align int, color tcell.Color) (int, int)

Print prints text onto the screen into the given box at (x,y,maxWidth,1), not exceeding that box. "align" is one of AlignLeft, AlignCenter, or AlignRight. The screen's background color will not be changed.

You can change the colors and text styles mid-text by inserting a color tag. See the package description for details.

Returns the number of actual runes printed (not including color tags) and the actual width used for the printed runes.

func PrintJoinedBorder

func PrintJoinedBorder(screen tcell.Screen, x, y int, ch rune, color tcell.Color)

PrintJoinedBorder prints a border graphics rune into the screen at the given position with the given color, joining it with any existing border graphics rune. Background colors are preserved. At this point, only regular single line borders are supported.

func PrintSimple

func PrintSimple(screen tcell.Screen, text string, x, y int)

PrintSimple prints white text to the screen at the given position.

func StringWidth

func StringWidth(text string) int

StringWidth returns the width of the given string needed to print it on screen. The text may contain color tags which are not counted.

func TranslateANSII

func TranslateANSII(text string) string

TranslateANSII replaces ANSII escape sequences found in the provided string with tview's color tags and returns the resulting string.

func WordWrap

func WordWrap(text string, width int) (lines []string)

WordWrap splits a text such that each resulting line does not exceed the given screen width. Possible split points are after any punctuation or whitespace. Whitespace after split points will be dropped.

This function considers color tags to have no width.

Text is always split at newline characters ('\n').

Types

type Application

type Application struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

Application represents the top node of an application.

It is not strictly required to use this class as none of the other classes depend on it. However, it provides useful tools to set up an application and plays nicely with all widgets.

func NewApplication

func NewApplication() *Application

NewApplication creates and returns a new application.

func (*Application) Draw

func (a *Application) Draw() *Application

Draw refreshes the screen. It calls the Draw() function of the application's root primitive and then syncs the screen buffer.

func (*Application) GetAfterDrawFunc

func (a *Application) GetAfterDrawFunc() func(screen tcell.Screen)

GetAfterDrawFunc returns the callback function installed with SetAfterDrawFunc() or nil if none has been installed.

func (*Application) GetBeforeDrawFunc

func (a *Application) GetBeforeDrawFunc() func(screen tcell.Screen) bool

GetBeforeDrawFunc returns the callback function installed with SetBeforeDrawFunc() or nil if none has been installed.

func (*Application) GetFocus

func (a *Application) GetFocus() Primitive

GetFocus returns the primitive which has the current focus. If none has it, nil is returned.

func (*Application) GetInputCapture

func (a *Application) GetInputCapture() func(event *tcell.EventKey) *tcell.EventKey

GetInputCapture returns the function installed with SetInputCapture() or nil if no such function has been installed.

func (*Application) ResizeToFullScreen

func (a *Application) ResizeToFullScreen(p Primitive) *Application

ResizeToFullScreen resizes the given primitive such that it fills the entire screen.

func (*Application) Run

func (a *Application) Run() error

Run starts the application and thus the event loop. This function returns when Stop() was called.

func (*Application) SetAfterDrawFunc

func (a *Application) SetAfterDrawFunc(handler func(screen tcell.Screen)) *Application

SetAfterDrawFunc installs a callback function which is invoked after the root primitive was drawn during screen updates.

Provide nil to uninstall the callback function.

func (*Application) SetBeforeDrawFunc

func (a *Application) SetBeforeDrawFunc(handler func(screen tcell.Screen) bool) *Application

SetBeforeDrawFunc installs a callback function which is invoked just before the root primitive is drawn during screen updates. If the function returns true, drawing will not continue, i.e. the root primitive will not be drawn (and an after-draw-handler will not be called).

Note that the screen is not cleared by the application. To clear the screen, you may call screen.Clear().

Provide nil to uninstall the callback function.

func (*Application) SetFocus

func (a *Application) SetFocus(p Primitive) *Application

SetFocus sets the focus on a new primitive. All key events will be redirected to that primitive. Callers must ensure that the primitive will handle key events.

Blur() will be called on the previously focused primitive. Focus() will be called on the new primitive.

func (*Application) SetInputCapture

func (a *Application) SetInputCapture(capture func(event *tcell.EventKey) *tcell.EventKey) *Application

SetInputCapture sets a function which captures all key events before they are forwarded to the key event handler of the primitive which currently has focus. This function can then choose to forward that key event (or a different one) by returning it or stop the key event processing by returning nil.

Note that this also affects the default event handling of the application itself: Such a handler can intercept the Ctrl-C event which closes the applicatoon.

func (*Application) SetRoot

func (a *Application) SetRoot(root Primitive, fullscreen bool) *Application

SetRoot sets the root primitive for this application. If "fullscreen" is set to true, the root primitive's position will be changed to fill the screen.

This function must be called at least once or nothing will be displayed when the application starts.

It also calls SetFocus() on the primitive.

func (*Application) Stop

func (a *Application) Stop()

Stop stops the application, causing Run() to return.

func (*Application) Suspend

func (a *Application) Suspend(f func()) bool

Suspend temporarily suspends the application by exiting terminal UI mode and invoking the provided function "f". When "f" returns, terminal UI mode is entered again and the application resumes.

A return value of true indicates that the application was suspended and "f" was called. If false is returned, the application was already suspended, terminal UI mode was not exited, and "f" was not called.

type Box

type Box struct {
	// contains filtered or unexported fields
}

Box implements Primitive with a background and optional elements such as a border and a title. Most subclasses keep their content contained in the box but don't necessarily have to.

Note that all classes which subclass from Box will also have access to its functions.

See https://github.com/rivo/tview/wiki/Box for an example.

func NewBox

func NewBox() *Box

NewBox returns a Box without a border.

func (*Box) Blur

func (b *Box) Blur()

Blur is called when this primitive loses focus.

func (*Box) Draw

func (b *Box) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Box) Focus

func (b *Box) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*Box) GetBorder

func (b *Box) GetBorder() bool

GetBorder returns the flag indicating whether or not the box was set

func (*Box) GetBorderPadding

func (b *Box) GetBorderPadding() (top, bottom, left, right int)

GetBorderPadding returns padding of the box

func (*Box) GetDrawFunc

func (b *Box) GetDrawFunc() func(screen tcell.Screen, x, y, width, height int) (int, int, int, int)

GetDrawFunc returns the callback function which was installed with SetDrawFunc() or nil if no such function has been installed.

func (*Box) GetFocusable

func (b *Box) GetFocusable() Focusable

GetFocusable returns the item's Focusable.

func (*Box) GetID

func (b *Box) GetID() int

GetID returns unique id of box

func (*Box) GetInnerRect

func (b *Box) GetInnerRect() (int, int, int, int)

GetInnerRect returns the position of the inner rectangle (x, y, width, height), without the border and without any padding.

func (*Box) GetInputCapture

func (b *Box) GetInputCapture() func(event *tcell.EventKey) *tcell.EventKey

GetInputCapture returns the function installed with SetInputCapture() or nil if no such function has been installed.

func (*Box) GetRect

func (b *Box) GetRect() (int, int, int, int)

GetRect returns the current position of the rectangle, x, y, width, and height.

func (*Box) HasFocus

func (b *Box) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Box) InputHandler

func (b *Box) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns nil.

func (*Box) IsDisable

func (b *Box) IsDisable() bool

IsDisable returns a state of the box

func (*Box) SetBackgroundColor

func (b *Box) SetBackgroundColor(color tcell.Color) *Box

SetBackgroundColor sets the box's background color.

func (*Box) SetBorder

func (b *Box) SetBorder(show bool) *Box

SetBorder sets the flag indicating whether or not the box should have a border.

func (*Box) SetBorderColor

func (b *Box) SetBorderColor(color tcell.Color) *Box

SetBorderColor sets the box's border color.

func (*Box) SetBorderPadding

func (b *Box) SetBorderPadding(top, bottom, left, right int) *Box

SetBorderPadding sets the size of the borders around the box content.

func (*Box) SetDisable

func (b *Box) SetDisable(disable bool) *Box

SetDisable sets an input field like disabled

func (*Box) SetDrawFunc

func (b *Box) SetDrawFunc(handler func(screen tcell.Screen, x, y, width, height int) (int, int, int, int)) *Box

SetDrawFunc sets a callback function which is invoked after the box primitive has been drawn. This allows you to add a more individual style to the box (and all primitives which extend it).

The function is provided with the box's dimensions (set via SetRect()). It must return the box's inner dimensions (x, y, width, height) which will be returned by GetInnerRect(), used by descendent primitives to draw their own content.

func (*Box) SetInputCapture

func (b *Box) SetInputCapture(capture func(event *tcell.EventKey) *tcell.EventKey) *Box

SetInputCapture installs a function which captures key events before they are forwarded to the primitive's default key event handler. This function can then choose to forward that key event (or a different one) to the default handler by returning it. If nil is returned, the default handler will not be called.

Providing a nil handler will remove a previously existing handler.

func (*Box) SetMaxSize

func (b *Box) SetMaxSize(width, height int) *Box

SetMaxSize sets max size of the box

func (*Box) SetMinSize

func (b *Box) SetMinSize(width, height int) *Box

SetMinSize sets min size of the box

func (*Box) SetPercentPadding

func (b *Box) SetPercentPadding(top, bottom, left, right int) *Box

SetPercentPadding sets border in percents. This feature implements resizable paddingPercent of the box relative to the size of the screen

func (*Box) SetRect

func (b *Box) SetRect(x, y, width, height int)

SetRect sets a new position of the primitive.

func (*Box) SetSize

func (b *Box) SetSize(width, height int) *Box

SetSize sets size of the box

func (*Box) SetTitle

func (b *Box) SetTitle(title string) *Box

SetTitle sets the box's title.

func (*Box) SetTitleAlign

func (b *Box) SetTitleAlign(align int) *Box

SetTitleAlign sets the alignment of the title, one of AlignLeft, AlignCenter, or AlignRight.

func (*Box) SetTitleColor

func (b *Box) SetTitleColor(color tcell.Color) *Box

SetTitleColor sets the box's title color.

func (*Box) WrapInputHandler

func (b *Box) WrapInputHandler(inputHandler func(*tcell.EventKey, func(p Primitive))) func(*tcell.EventKey, func(p Primitive))

WrapInputHandler wraps an input handler (see InputHandler()) with the functionality to capture input (see SetInputCapture()) before passing it on to the provided (default) input handler.

This is only meant to be used by subclassing primitives.

type Button

type Button struct {
	*Box
	// contains filtered or unexported fields
}

Button is labeled box that triggers an action when selected.

See https://github.com/rivo/tview/wiki/Button for an example.

func NewButton

func NewButton(label string) *Button

NewButton returns a new input field.

func (*Button) Draw

func (b *Button) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Button) GetHidden

func (b *Button) GetHidden() bool

GetHidden returns state of button

func (*Button) GetLabel

func (b *Button) GetLabel() string

GetLabel returns the button text.

func (*Button) InputHandler

func (b *Button) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*Button) SetBackgroundColorActivated

func (b *Button) SetBackgroundColorActivated(color tcell.Color) *Button

SetBackgroundColorActivated sets the background color of the button text when the button is in focus.

func (*Button) SetBlurFunc

func (b *Button) SetBlurFunc(handler func(key tcell.Key)) *Button

SetBlurFunc sets a handler which is called when the user leaves the button. The callback function is provided with the key that was pressed, which is one of the following:

  • KeyEscape: Leaving the button with no specific direction.
  • KeyTab: Move to the next field.
  • KeyBacktab: Move to the previous field.

func (*Button) SetHidden

func (b *Button) SetHidden(hidden bool) *Button

SetHidden hides button

func (*Button) SetLabel

func (b *Button) SetLabel(label string) *Button

SetLabel sets the button text.

func (*Button) SetLabelColor

func (b *Button) SetLabelColor(color tcell.Color) *Button

SetLabelColor sets the color of the button text.

func (*Button) SetLabelColorActivated

func (b *Button) SetLabelColorActivated(color tcell.Color) *Button

SetLabelColorActivated sets the color of the button text when the button is in focus.

func (*Button) SetSelectedFunc

func (b *Button) SetSelectedFunc(handler func()) *Button

SetSelectedFunc sets a handler which is called when the button was selected.

type Checkbox

type Checkbox struct {
	*Box
	// contains filtered or unexported fields
}

Checkbox implements a simple box for boolean values which can be checked and unchecked.

See https://github.com/rivo/tview/wiki/Checkbox for an example.

func NewCheckbox

func NewCheckbox() *Checkbox

NewCheckbox returns a new input field.

func (*Checkbox) Draw

func (c *Checkbox) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Checkbox) GetFieldAlign

func (c *Checkbox) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the checkbox box.

func (*Checkbox) GetFieldWidth

func (c *Checkbox) GetFieldWidth() int

GetFieldWidth returns this primitive's field width.

func (*Checkbox) GetFinishedFunc

func (c *Checkbox) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (*Checkbox) GetLabel

func (c *Checkbox) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (*Checkbox) GetLabelWidth

func (c *Checkbox) GetLabelWidth() int

GetLabelWidth returns label width.

func (*Checkbox) InputHandler

func (c *Checkbox) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*Checkbox) IsChecked

func (c *Checkbox) IsChecked() bool

IsChecked returns whether or not the box is checked.

func (*Checkbox) SetChangedFunc

func (c *Checkbox) SetChangedFunc(handler func(checked bool)) *Checkbox

SetChangedFunc sets a handler which is called when the checked state of this checkbox was changed by the user. The handler function receives the new state.

func (*Checkbox) SetChecked

func (c *Checkbox) SetChecked(checked bool) *Checkbox

SetChecked sets the state of the checkbox.

func (*Checkbox) SetDoneFunc

func (c *Checkbox) SetDoneFunc(handler func(key tcell.Key)) *Checkbox

SetDoneFunc sets a handler which is called when the user is done entering text. The callback function is provided with the key that was pressed, which is one of the following:

  • KeyEscape: Abort text input.
  • KeyTab: Move to the next field.
  • KeyBacktab: Move to the previous field.

func (*Checkbox) SetFieldAlign

func (c *Checkbox) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the checkbox box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*Checkbox) SetFieldBackgroundColor

func (c *Checkbox) SetFieldBackgroundColor(color tcell.Color) *Checkbox

SetFieldBackgroundColor sets the background color of the input area.

func (*Checkbox) SetFieldTextColor

func (c *Checkbox) SetFieldTextColor(color tcell.Color) *Checkbox

SetFieldTextColor sets the text color of the input area.

func (*Checkbox) SetFinishedFunc

func (c *Checkbox) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc sets a callback invoked when the user leaves this form item.

func (*Checkbox) SetFormAttributes

func (c *Checkbox) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (*Checkbox) SetLabel

func (c *Checkbox) SetLabel(label string) *Checkbox

SetLabel sets the text to be displayed before the input area.

func (*Checkbox) SetLabelColor

func (c *Checkbox) SetLabelColor(color tcell.Color) *Checkbox

SetLabelColor sets the color of the label.

func (*Checkbox) SetLabelFiller

func (c *Checkbox) SetLabelFiller(Filler string) FormItem

SetLabelFiller sets a sign which will be fill the label when this one need to stretch

func (*Checkbox) SetLabelWidth

func (c *Checkbox) SetLabelWidth(width int) *Checkbox

SetLabelWidth sets the screen width of the label. A value of 0 will cause the primitive to use the width of the label string.

func (*Checkbox) SetLockColors

func (c *Checkbox) SetLockColors(lock bool) *Checkbox

SetLockColors locks the change of colors by form

func (*Checkbox) SetSubLabel

func (c *Checkbox) SetSubLabel(label string) *Checkbox

SetSubLabel sets the text to be displayed before the input area.

func (*Checkbox) SetSubLabelColor

func (c *Checkbox) SetSubLabelColor(color tcell.Color) *Checkbox

SetSubLabelColor sets the color of the subLabel.

type DropDown struct {
	*Box
	// contains filtered or unexported fields
}

DropDown implements a selection widget whose options become visible in a drop-down list when activated.

See https://github.com/rivo/tview/wiki/DropDown for an example.

func NewDropDown

func NewDropDown() *DropDown

NewDropDown returns a new drop-down.

func (d *DropDown) AddOption(option *DropDownOption) *DropDown

AddOption adds a new selectable option to this drop-down. The "selected" callback is called when this option was selected. It may be nil.

func (d *DropDown) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (d *DropDown) Focus(delegate func(p Primitive))

Focus is called by the application when the primitive receives focus.

func (d *DropDown) GetCurrentOption() (int, string)

GetCurrentOption returns the index of the currently selected option as well as its text. If no option was selected, -1 and an empty string is returned.

func (d *DropDown) GetCurrentOptionName() string

GetCurrentOptionName returns the name of the currently selected option.

func (d *DropDown) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the radiobutton box.

func (d *DropDown) GetFieldWidth() int

GetFieldWidth returns this primitive's field screen width.

func (d *DropDown) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (d *DropDown) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (d *DropDown) GetLabelWidth() int

GetLabelWidth returns label width.

func (d *DropDown) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (d *DropDown) HasOpen() bool

HasOpen returns whether or not this primitive has open.

func (d *DropDown) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (d *DropDown) SetCurrentOption(index int) *DropDown

SetCurrentOption sets the index of the currently selected option. This may be a negative value to indicate that no option is currently selected.

func (d *DropDown) SetCurrentOptionByName(name string) *DropDown

SetCurrentOptionByName sets the index of the currently selected option. This may be a negative value to indicate that no option is currently selected.

func (d *DropDown) SetDoneFunc(handler func(key tcell.Key)) *DropDown

SetDoneFunc sets a handler which is called when the user is done selecting options. The callback function is provided with the key that was pressed, which is one of the following:

  • KeyEscape: Abort selection.
  • KeyTab: Move to the next field.
  • KeyBacktab: Move to the previous field.
func (d *DropDown) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the radiobutton box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (d *DropDown) SetFieldBackgroundColor(color tcell.Color) *DropDown

SetFieldBackgroundColor sets the background color of the options area.

func (d *DropDown) SetFieldTextColor(color tcell.Color) *DropDown

SetFieldTextColor sets the text color of the options area.

func (d *DropDown) SetFieldWidth(width int) *DropDown

SetFieldWidth sets the screen width of the options area. A value of 0 means extend to as long as the longest option text.

func (d *DropDown) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc sets a callback invoked when the user leaves this form item.

func (d *DropDown) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (d *DropDown) SetLabel(label string) *DropDown

SetLabel sets the text to be displayed before the input area.

func (d *DropDown) SetLabelColor(color tcell.Color) *DropDown

SetLabelColor sets the color of the label.

func (d *DropDown) SetLabelWidth(width int) *DropDown

SetLabelWidth sets the screen width of the label. A value of 0 will cause the primitive to use the width of the label string.

func (d *DropDown) SetOptions(options []*DropDownOption, selected func(option *DropDownOption, index int)) *DropDown

SetOptions replaces all current options with the ones provided and installs one callback function which is called when one of the options is selected. It will be called with the option's text and its index into the options slice. The "selected" parameter may be nil.

func (d *DropDown) SetPrefixTextColor(color tcell.Color) *DropDown

SetPrefixTextColor sets the color of the prefix string. The prefix string is shown when the user starts typing text, which directly selects the first option that starts with the typed string.

type DropDownOption struct {
	Name     string
	Text     string // The text to be displayed in the drop-down.
	Selected func() // The (optional) callback for when this option was selected.
}

DropDownOption is one option that can be selected in a drop-down primitive.

func NewDropDownOption

func NewDropDownOption(name, text string) *DropDownOption

NewDropDownOption returns a new option for dropdown

type Flex

type Flex struct {
	*Box
	// contains filtered or unexported fields
}

Flex is a basic implementation of the Flexbox layout. The contained primitives are arranged horizontally or vertically. The way they are distributed along that dimension depends on their layout settings, which is either a fixed length or a proportional length. See AddItem() for details.

See https://github.com/rivo/tview/wiki/Flex for an example.

func NewFlex

func NewFlex() *Flex

NewFlex returns a new flexbox layout container with no primitives and its direction set to FlexColumn. To add primitives to this layout, see AddItem(). To change the direction, see SetDirection().

func (*Flex) AddItem

func (f *Flex) AddItem(item Primitive, fixedSize, proportion int, focus bool) *Flex

AddItem adds a new item to the container. The "fixedSize" argument is a width or height that may not be changed by the layout algorithm. A value of 0 means that its size is flexible and may be changed. The "proportion" argument defines the relative size of the item compared to other flexible-size items. For example, items with a proportion of 2 will be twice as large as items with a proportion of 1. The proportion must be at least 1 if fixedSize == 0 (ignored otherwise).

If "focus" is set to true, the item will receive focus when the Flex primitive receives focus. If multiple items have the "focus" flag set to true, the first one will receive focus.

You can provide a nil value for the primitive. This will still consume screen space but nothing will be drawn.

func (*Flex) AddModal

func (f *Flex) AddModal(item Primitive) *Flex

AddModal adds a new model window

func (*Flex) Draw

func (f *Flex) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Flex) Focus

func (f *Flex) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*Flex) HasFocus

func (f *Flex) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Flex) RemoveItem

func (f *Flex) RemoveItem(p Primitive) *Flex

RemoveItem removes all items for the given primitive from the container, keeping the order of the remaining items intact.

func (*Flex) RemoveItems

func (f *Flex) RemoveItems() *Flex

RemoveItems removes all items

func (*Flex) SetDirection

func (f *Flex) SetDirection(direction int) *Flex

SetDirection sets the direction in which the contained primitives are distributed. This can be either FlexColumn (default) or FlexRow.

func (*Flex) SetFullScreen

func (f *Flex) SetFullScreen(fullScreen bool) *Flex

SetFullScreen sets the flag which, when true, causes the flex layout to use the entire screen space instead of whatever size it is currently assigned to.

type Focusable

type Focusable interface {
	HasFocus() bool
}

Focusable provides a method which determines if a primitive has focus. Composed primitives may be focused based on the focused state of their contained primitives.

type Form

type Form struct {
	*Box
	// contains filtered or unexported fields
}

Form allows you to combine multiple one-line form elements into a vertical or horizontal layout. Form elements include types such as InputField or Checkbox. These elements can be optionally followed by one or more buttons for which you can define form-wide actions (e.g. Save, Clear, Cancel).

See https://github.com/rivo/tview/wiki/Form for an example.

func NewForm

func NewForm() *Form

NewForm returns a new form.

func (*Form) AddButton

func (f *Form) AddButton(label string, selected func()) *Form

AddButton adds a new button to the form. The "selected" function is called when the user selects this button. It may be nil.

func (*Form) AddCheckbox

func (f *Form) AddCheckbox(label string, checked bool, changed func(checked bool)) *Form

AddCheckbox adds a checkbox to the form. It has a label, an initial state, and an (optional) callback function which is invoked when the state of the checkbox was changed by the user.

func (*Form) AddDropDown

func (f *Form) AddDropDown(label string, options []*DropDownOption, initialOption int, selected func(option *DropDownOption, optionIndex int)) *Form

AddDropDown adds a drop-down element to the form. It has a label, options, and an (optional) callback function which is invoked when an option was selected. The initial option may be a negative value to indicate that no option is currently selected.

func (*Form) AddFormItem

func (f *Form) AddFormItem(item FormItem) *Form

AddFormItem adds a new item to the form. This can be used to add your own objects to the form. Note, however, that the Form class will override some of its attributes to make it work in the form context. Specifically, these are:

  • The label width
  • The label color
  • The background color
  • The field text color
  • The field background color

func (*Form) AddFormItemWithColumn

func (f *Form) AddFormItemWithColumn(item FormItem, column int) *Form

AddFormItemWithColumn adds a new item to the form and sets the column.

func (*Form) AddInputField

func (f *Form) AddInputField(label, value string, fieldWidth int, accept func(textToCheck string, lastChar rune) bool, changed func(text string)) *Form

AddInputField adds an input field to the form. It has a label, an optional initial value, a field width (a value of 0 extends it as far as possible), an optional accept function to validate the item's value (set to nil to accept any text), and an (optional) callback function which is invoked when the input field's text has changed.

func (*Form) AddPasswordField

func (f *Form) AddPasswordField(label, value string, fieldWidth int, mask rune, changed func(text string)) *Form

AddPasswordField adds a password field to the form. This is similar to an input field except that the user's input not shown. Instead, a "mask" character is displayed. The password field has a label, an optional initial value, a field width (a value of 0 extends it as far as possible), and an (optional) callback function which is invoked when the input field's text has changed.

func (*Form) AddRadioButton

func (f *Form) AddRadioButton(label string, options []*RadioOption, initialOption int, selected func(option *RadioOption, optionIndex int)) *Form

AddRadioButton adds a radio button element to the form

func (*Form) Buttons

func (f *Form) Buttons() []*Button

Buttons returns active buttons

func (*Form) Clear

func (f *Form) Clear(includeButtons bool) *Form

Clear removes all input elements from the form, including the buttons if specified.

func (*Form) ClearButtons

func (f *Form) ClearButtons() *Form

ClearButtons removes all buttons.

func (*Form) Draw

func (f *Form) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Form) Focus

func (f *Form) Focus(delegate func(p Primitive))

Focus is called by the application when the primitive receives focus.

func (*Form) GetFormButton

func (f *Form) GetFormButton(index int) *Button

GetFormButton returns the form element at the given position, starting with index 0. Elements are referenced in the order they were added. Buttons are not included.

func (*Form) GetFormItem

func (f *Form) GetFormItem(index int) FormItem

GetFormItem returns the form element at the given position, starting with index 0. Elements are referenced in the order they were added. Buttons are not included.

func (*Form) GetFormItemByLabel

func (f *Form) GetFormItemByLabel(label string) FormItem

GetFormItemByLabel returns the first form element with the given label. If no such element is found, nil is returned. Buttons are not searched and will therefore not be returned.

func (*Form) GetRect

func (f *Form) GetRect() (int, int, int, int)

GetRect returns the current position of the rectangle, x, y, width, and height.

func (*Form) HasFocus

func (f *Form) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Form) HiddenButton

func (f *Form) HiddenButton(index int, state bool) *Form

HiddenButton hides button by index

func (*Form) ResetFocus

func (f *Form) ResetFocus()

ResetFocus sets focus on the first element

func (*Form) SetAlign

func (f *Form) SetAlign(align int) *Form

SetAlign sets the content alignment within the flex. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*Form) SetButtonBackgroundColor

func (f *Form) SetButtonBackgroundColor(color tcell.Color) *Form

SetButtonBackgroundColor sets the background color of the buttons.

func (*Form) SetButtonIndent

func (f *Form) SetButtonIndent(padding int) *Form

SetButtonIndent makes indent between buttons

func (*Form) SetButtonPadding

func (f *Form) SetButtonPadding(padding int) *Form

SetButtonPadding sets the number of empty rows between fields.

func (*Form) SetButtonTextColor

func (f *Form) SetButtonTextColor(color tcell.Color) *Form

SetButtonTextColor sets the color of the button texts.

func (*Form) SetButtonsAlign

func (f *Form) SetButtonsAlign(align int) *Form

SetButtonsAlign sets how the buttons align horizontally, one of AlignLeft (the default), AlignCenter, and AlignRight. This is only

func (*Form) SetCancelFunc

func (f *Form) SetCancelFunc(callback func()) *Form

SetCancelFunc sets a handler which is called when the user hits the Escape key.

func (*Form) SetColumnPadding

func (f *Form) SetColumnPadding(padding int) *Form

SetColumnPadding sets the number of empty rows between form columns.

func (*Form) SetFieldBackgroundColor

func (f *Form) SetFieldBackgroundColor(color tcell.Color) *Form

SetFieldBackgroundColor sets the background color of the input areas.

func (*Form) SetFieldTextColor

func (f *Form) SetFieldTextColor(color tcell.Color) *Form

SetFieldTextColor sets the text color of the input areas.

func (*Form) SetHorizontal

func (f *Form) SetHorizontal(horizontal bool) *Form

SetHorizontal sets the direction the form elements are laid out. If set to true, instead of positioning them from top to bottom (the default), they are positioned from left to right, moving into the next row if there is not enough space.

func (*Form) SetItemPadding

func (f *Form) SetItemPadding(padding int) *Form

SetItemPadding sets the number of empty rows between form items for vertical layouts and the number of empty cells between form items for horizontal layouts.

func (*Form) SetLabelColor

func (f *Form) SetLabelColor(color tcell.Color) *Form

SetLabelColor sets the color of the labels.

type FormItem

type FormItem interface {
	Primitive

	// GetLabel returns the item's label text.
	GetLabel() string
	// GetLabelWidth returns the item's label width.
	GetLabelWidth() int

	// GetFieldWidth returns the item's field width.
	GetFieldWidth() int

	GetFieldAlign() (align int)

	GetBorderPadding() (top, bottom, left, right int)

	// SetFormAttributes sets a number of item attributes at once.
	SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

	// SetEnteredFunc sets the handler function for when the user finished
	// entering data into the item. The handler may receive events for the
	// Enter key (we're done), the Escape key (cancel input), the Tab key (move to
	// next field), and the Backtab key (move to previous field).
	SetFinishedFunc(handler func(key tcell.Key)) FormItem

	GetID() int
}

FormItem is the interface all form items must implement to be able to be included in a form.

type Frame

type Frame struct {
	*Box
	// contains filtered or unexported fields
}

Frame is a wrapper which adds a border around another primitive. The top area (header) and the bottom area (footer) may also contain text.

See https://github.com/rivo/tview/wiki/Frame for an example.

func NewFrame

func NewFrame(primitive Primitive) *Frame

NewFrame returns a new frame around the given primitive. The primitive's size will be changed to fit within this frame.

func (*Frame) AddText

func (f *Frame) AddText(text string, header bool, align int, color tcell.Color) *Frame

AddText adds text to the frame. Set "header" to true if the text is to appear in the header, above the contained primitive. Set it to false for it to appear in the footer, below the contained primitive. "align" must be one of the Align constants. Rows in the header are printed top to bottom, rows in the footer are printed bottom to top. Note that long text can overlap as different alignments will be placed on the same row.

func (*Frame) Clear

func (f *Frame) Clear() *Frame

Clear removes all text from the frame.

func (*Frame) Draw

func (f *Frame) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Frame) Focus

func (f *Frame) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*Frame) HasFocus

func (f *Frame) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Frame) SetBorders

func (f *Frame) SetBorders(top, bottom, header, footer, left, right int) *Frame

SetBorders sets the width of the frame borders as well as "header" and "footer", the vertical space between the header and footer text and the contained primitive (does not apply if there is no text).

type Grid

type Grid struct {
	*Box
	// contains filtered or unexported fields
}

Grid is an implementation of a grid-based layout. It works by defining the size of the rows and columns, then placing primitives into the grid.

Some settings can lead to the grid exceeding its available space. SetOffset() can then be used to scroll in steps of rows and columns. These offset values can also be controlled with the arrow keys (or the "g","G", "j", "k", "h", and "l" keys) while the grid has focus and none of its contained primitives do.

See https://github.com/rivo/tview/wiki/Grid for an example.

func NewGrid

func NewGrid() *Grid

NewGrid returns a new grid-based layout container with no initial primitives.

func (*Grid) AddItem

func (g *Grid) AddItem(p Primitive, row, column, height, width, minGridHeight, minGridWidth int, focus bool) *Grid

AddItem adds a primitive and its position to the grid. The top-left corner of the primitive will be located in the top-left corner of the grid cell at the given row and column and will span "width" rows and "height" columns. For example, for a primitive to occupy rows 2, 3, and 4 and columns 5 and 6:

grid.AddItem(p, 2, 4, 3, 2, true)

If width or height is 0, the primitive will not be drawn.

You can add the same primitive multiple times with different grid positions. The minGridWidth and minGridHeight values will then determine which of those positions will be used. This is similar to CSS media queries. These minimum values refer to the overall size of the grid. If multiple items for the same primitive apply, the one that has at least one highest minimum value will be used, or the primitive added last if those values are the same. Example:

grid.AddItem(p, 0, 0, 0, 0, 0, 0, true). // Hide in small grids.
  AddItem(p, 0, 0, 1, 2, 100, 0, true).  // One-column layout for medium grids.
  AddItem(p, 1, 1, 3, 2, 300, 0, true)   // Multi-column layout for large grids.

To use the same grid layout for all sizes, simply set minGridWidth and minGridHeight to 0.

If the item's focus is set to true, it will receive focus when the grid receives focus. If there are multiple items with a true focus flag, the last visible one that was added will receive focus.

func (*Grid) Blur

func (g *Grid) Blur()

Blur is called when this primitive loses focus.

func (*Grid) Clear

func (g *Grid) Clear() *Grid

Clear removes all items from the grid.

func (*Grid) Draw

func (g *Grid) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Grid) Focus

func (g *Grid) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*Grid) GetOffset

func (g *Grid) GetOffset() (rows, columns int)

GetOffset returns the current row and column offset (see SetOffset() for details).

func (*Grid) HasFocus

func (g *Grid) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Grid) InputHandler

func (g *Grid) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*Grid) RemoveItem

func (g *Grid) RemoveItem(p Primitive) *Grid

RemoveItem removes all items for the given primitive from the grid, keeping the order of the remaining items intact.

func (*Grid) SetBorders

func (g *Grid) SetBorders(borders bool) *Grid

SetBorders sets whether or not borders are drawn around grid items. Setting this value to true will cause the gap values (see SetGap()) to be ignored and automatically assumed to be 1 where the border graphics are drawn.

func (*Grid) SetBordersColor

func (g *Grid) SetBordersColor(color tcell.Color) *Grid

SetBordersColor sets the color of the item borders.

func (*Grid) SetColumns

func (g *Grid) SetColumns(columns ...int) *Grid

SetColumns defines how the columns of the grid are distributed. These values behave the same as the row values provided with SetRows(), see there for a definition and examples.

The provided values correspond to column heights, the first value defining the height of the topmost column.

func (*Grid) SetGap

func (g *Grid) SetGap(row, column int) *Grid

SetGap sets the size of the gaps between neighboring primitives on the grid. If borders are drawn (see SetBorders()), these values are ignored and a gap of 1 is assumed. Panics if negative values are provided.

func (*Grid) SetMinSize

func (g *Grid) SetMinSize(row, column int) *Grid

SetMinSize sets an absolute minimum width for rows and an absolute minimum height for columns. Panics if negative values are provided.

func (*Grid) SetOffset

func (g *Grid) SetOffset(rows, columns int) *Grid

SetOffset sets the number of rows and columns which are skipped before drawing the first grid cell in the top-left corner. As the grid will never completely move off the screen, these values may be adjusted the next time the grid is drawn. The actual position of the grid may also be adjusted such that contained primitives that have focus are visible.

func (*Grid) SetRows

func (g *Grid) SetRows(rows ...int) *Grid

SetRows defines how the rows of the grid are distributed. Each value defines the size of one row, starting with the leftmost row. Values greater 0 represent absolute row widths (gaps not included). Values less or equal 0 represent proportional row widths or fractions of the remaining free space, where 0 is treated the same as -1. That is, a row with a value of -3 will have three times the width of a row with a value of -1 (or 0). The minimum width set with SetMinSize() is always observed.

Primitives may extend beyond the rows defined explicitly with this function. A value of 0 is assumed for any undefined row. In fact, if you never call this function, all rows occupied by primitives will have the same width. On the other hand, unoccupied rows defined with this function will always take their place.

Assuming a total width of the grid of 100 cells and a minimum width of 0, the following call will result in rows with widths of 30, 10, 15, 15, and 30 cells:

grid.SetRows(30, 10, -1, -1, -2)

If a primitive were then placed in the 6th and 7th row, the resulting widths would be: 30, 10, 10, 10, 20, 10, and 10 cells.

If you then called SetMinSize() as follows:

grid.SetMinSize(15, 20)

The resulting widths would be: 30, 15, 15, 15, 20, 15, and 15 cells, a total of 125 cells, 25 cells wider than the available grid width.

func (*Grid) SetSize

func (g *Grid) SetSize(numRows, numColumns, rowSize, columnSize int) *Grid

SetSize is a shortcut for SetRows() and SetColumns() where all row and column values are set to the given size values. See SetRows() for details on sizes.

type InputField

type InputField struct {
	*Box
	// contains filtered or unexported fields
}

InputField is a one-line box (three lines if there is a title) where the user can enter text.

Use SetMaskCharacter() to hide input from onlookers (e.g. for password input).

See https://github.com/rivo/tview/wiki/InputField for an example.

func NewInputField

func NewInputField() *InputField

NewInputField returns a new input field.

func (*InputField) Draw

func (i *InputField) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*InputField) Focus

func (i *InputField) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*InputField) GetFieldAlign

func (i *InputField) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the radiobutton box.

func (*InputField) GetFieldWidth

func (i *InputField) GetFieldWidth() int

GetFieldWidth returns this primitive's field width.

func (*InputField) GetFinishedFunc

func (i *InputField) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (*InputField) GetLabel

func (i *InputField) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (*InputField) GetLabelWidth

func (i *InputField) GetLabelWidth() int

GetLabelWidth returns label width.

func (*InputField) GetText

func (i *InputField) GetText() string

GetText returns the current text of the input field.

func (*InputField) InputHandler

func (i *InputField) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*InputField) SetAcceptanceFunc

func (i *InputField) SetAcceptanceFunc(handler func(textToCheck string, lastChar rune) bool) *InputField

SetAcceptanceFunc sets a handler which may reject the last character that was entered (by returning false).

This package defines a number of variables Prefixed with InputField which may be used for common input (e.g. numbers, maximum text length).

func (*InputField) SetChangedFunc

func (i *InputField) SetChangedFunc(handler func(text string)) *InputField

SetChangedFunc sets a handler which is called whenever the text of the input field has changed. It receives the current text (after the change).

func (*InputField) SetDoneFunc

func (i *InputField) SetDoneFunc(handler func(key tcell.Key)) *InputField

SetDoneFunc sets a handler which is called when the user is done entering text. The callback function is provided with the key that was pressed, which is one of the following:

  • KeyEnter: Done entering text.
  • KeyEscape: Abort text input.
  • KeyTab: Move to the next field.
  • KeyBacktab: Move to the previous field.

func (*InputField) SetFieldAlign

func (i *InputField) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the radiobutton box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*InputField) SetFieldBackgroundColor

func (i *InputField) SetFieldBackgroundColor(color tcell.Color) *InputField

SetFieldBackgroundColor sets the background color of the input area.

func (*InputField) SetFieldTextColor

func (i *InputField) SetFieldTextColor(color tcell.Color) *InputField

SetFieldTextColor sets the text color of the input area.

func (*InputField) SetFieldWidth

func (i *InputField) SetFieldWidth(width int) *InputField

SetFieldWidth sets the screen width of the input area. A value of 0 means extend as much as possible.

func (*InputField) SetFinishedFunc

func (i *InputField) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc sets a callback invoked when the user leaves this form item.

func (*InputField) SetFormAttributes

func (i *InputField) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (*InputField) SetLabel

func (i *InputField) SetLabel(label string) *InputField

SetLabel sets the text to be displayed before the input area.

func (*InputField) SetLabelColor

func (i *InputField) SetLabelColor(color tcell.Color) *InputField

SetLabelColor sets the color of the label.

func (*InputField) SetLabelWidth

func (i *InputField) SetLabelWidth(width int) *InputField

SetLabelWidth sets the screen width of the label. A value of 0 will cause the primitive to use the width of the label string.

func (*InputField) SetLockColors

func (i *InputField) SetLockColors(lock bool) *InputField

SetLockColors locks the change of colors by form

func (*InputField) SetMaskCharacter

func (i *InputField) SetMaskCharacter(mask rune) *InputField

SetMaskCharacter sets a character that masks user input on a screen. A value of 0 disables masking.

func (*InputField) SetPlaceholder

func (i *InputField) SetPlaceholder(text string) *InputField

SetPlaceholder sets the text to be displayed when the input text is empty.

func (*InputField) SetPlaceholderTextColor

func (i *InputField) SetPlaceholderTextColor(color tcell.Color) *InputField

SetPlaceholderTextColor sets the text color of placeholder text.

func (*InputField) SetSubLabel

func (i *InputField) SetSubLabel(label string) *InputField

SetSubLabel sets the text to be displayed before the input area.

func (*InputField) SetSubLabelColor

func (i *InputField) SetSubLabelColor(color tcell.Color) *InputField

SetSubLabelColor sets the color of the subLabel.

func (*InputField) SetText

func (i *InputField) SetText(text string) *InputField

SetText sets the current text of the input field.

type List

type List struct {
	*Box
	// contains filtered or unexported fields
}

List displays rows of items, each of which can be selected.

See https://github.com/rivo/tview/wiki/List for an example.

func NewList

func NewList() *List

NewList returns a new form.

func (*List) AddItem

func (l *List) AddItem(mainText, secondaryText string, shortcut rune, selected func()) *List

AddItem adds a new item to the list. An item has a main text which will be highlighted when selected. It also has a secondary text which is shown underneath the main text (if it is set to visible) but which may remain empty.

The shortcut is a key binding. If the specified rune is entered, the item is selected immediately. Set to 0 for no binding.

The "selected" callback will be invoked when the user selects the item. You may provide nil if no such item is needed or if all events are handled through the selected callback set with SetSelectedFunc().

func (*List) Clear

func (l *List) Clear() *List

Clear removes all items from the list.

func (*List) Draw

func (l *List) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*List) GetCurrentItem

func (l *List) GetCurrentItem() int

GetCurrentItem returns the index of the currently selected list item.

func (*List) GetItemCount

func (l *List) GetItemCount() int

GetItemCount returns the number of items in the list.

func (*List) GetItemText

func (l *List) GetItemText(index int) (main, secondary string)

GetItemText returns an item's texts (main and secondary). Panics if the index is out of range.

func (*List) InputHandler

func (l *List) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*List) SetChangedFunc

func (l *List) SetChangedFunc(handler func(int, string, string, rune)) *List

SetChangedFunc sets the function which is called when the user navigates to a list item. The function receives the item's index in the list of items (starting with 0), its main text, secondary text, and its shortcut rune.

This function is also called when the first item is added or when SetCurrentItem() is called.

func (*List) SetCurrentItem

func (l *List) SetCurrentItem(index int) *List

SetCurrentItem sets the currently selected item by its index. This triggers a "changed" event.

func (*List) SetDoneFunc

func (l *List) SetDoneFunc(handler func()) *List

SetDoneFunc sets a function which is called when the user presses the Escape key.

func (*List) SetItemText

func (l *List) SetItemText(index int, main, secondary string) *List

SetItemText sets an item's main and secondary text. Panics if the index is out of range.

func (*List) SetMainTextColor

func (l *List) SetMainTextColor(color tcell.Color) *List

SetMainTextColor sets the color of the items' main text.

func (*List) SetSecondaryTextColor

func (l *List) SetSecondaryTextColor(color tcell.Color) *List

SetSecondaryTextColor sets the color of the items' secondary text.

func (*List) SetSelectedBackgroundColor

func (l *List) SetSelectedBackgroundColor(color tcell.Color) *List

SetSelectedBackgroundColor sets the background color of selected items.

func (*List) SetSelectedFunc

func (l *List) SetSelectedFunc(handler func(int, string, string, rune)) *List

SetSelectedFunc sets the function which is called when the user selects a list item by pressing Enter on the current selection. The function receives the item's index in the list of items (starting with 0), its main text, secondary text, and its shortcut rune.

func (*List) SetSelectedTextColor

func (l *List) SetSelectedTextColor(color tcell.Color) *List

SetSelectedTextColor sets the text color of selected items.

func (*List) SetShortcutColor

func (l *List) SetShortcutColor(color tcell.Color) *List

SetShortcutColor sets the color of the items' shortcut.

func (*List) ShowSecondaryText

func (l *List) ShowSecondaryText(show bool) *List

ShowSecondaryText determines whether or not to show secondary item texts.

type ListBox

type ListBox struct {
	*Box
	// contains filtered or unexported fields
}

ListBox displays rows of items, each of which can be selected.

See https://github.com/rivo/tview/wiki/ListBox for an example.

func NewListBox

func NewListBox() *ListBox

NewListBox returns a new form.

func (*ListBox) AddItem

func (l *ListBox) AddItem(name, title string, selected func()) *ListBox

AddItem adds a new item to the list. An item has a main text which will be highlighted when selected. It also has a secondary text which is shown underneath the main text (if it is set to visible) but which may remain empty.

The shortcut is a key binding. If the specified rune is entered, the item is selected immediately. Set to 0 for no binding.

The "selected" callback will be invoked when the user selects the item. You may provide nil if no such item is needed or if all events are handled through the selected callback set with SetSelectedFunc().

func (*ListBox) Clear

func (l *ListBox) Clear() *ListBox

Clear removes all items from the list.

func (*ListBox) Draw

func (l *ListBox) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*ListBox) GetCurrentItemIndex

func (l *ListBox) GetCurrentItemIndex() int

GetCurrentItemIndex returns the index of the currently selected list item.

func (*ListBox) GetCurrentItemName

func (l *ListBox) GetCurrentItemName() string

GetCurrentItemName returns the selected name

func (*ListBox) GetCurrentItemText

func (l *ListBox) GetCurrentItemText() string

GetCurrentItemText returns the index of the currently selected list item.

func (*ListBox) GetFieldAlign

func (l *ListBox) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the inputfield.

func (*ListBox) GetFieldWidth

func (l *ListBox) GetFieldWidth() int

GetFieldWidth returns this primitive's field width.

func (*ListBox) GetFinishedFunc

func (l *ListBox) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (*ListBox) GetLabel

func (l *ListBox) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (*ListBox) GetLabelFiller

func (l *ListBox) GetLabelFiller() (labelFiller string)

GetLabelFiller gets a sign which uses for stretching

func (*ListBox) GetLabelWidth

func (l *ListBox) GetLabelWidth() int

GetLabelWidth returns label width.

func (*ListBox) InputHandler

func (l *ListBox) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*ListBox) SetChangedFunc

func (l *ListBox) SetChangedFunc(handler func(int, string, string, rune)) *ListBox

SetChangedFunc sets the function which is called when the user navigates to a list item. The function receives the item's index in the list of items (starting with 0), its main text, secondary text, and its shortcut rune.

This function is also called when the first item is added or when SetCurrentItem() is called.

func (*ListBox) SetCurrentItem

func (l *ListBox) SetCurrentItem(index int) *ListBox

SetCurrentItem sets the currently selected item by its index. This triggers a "changed" event.

func (*ListBox) SetCurrentItemByName

func (l *ListBox) SetCurrentItemByName(text string) *ListBox

SetCurrentItemByName sets the currently selected item by its name. This triggers a "changed" event.

func (*ListBox) SetCurrentItemByText

func (l *ListBox) SetCurrentItemByText(text string) *ListBox

SetCurrentItemByText sets the currently selected item by its text. This triggers a "changed" event.

func (*ListBox) SetDoneFunc

func (l *ListBox) SetDoneFunc(handler func(tcell.Key)) *ListBox

SetDoneFunc sets a function which is called when the user presses the Escape key.

func (*ListBox) SetFieldAlign

func (l *ListBox) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the inputfield. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*ListBox) SetFieldWidth

func (l *ListBox) SetFieldWidth(width int) FormItem

SetFieldWidth sets the screen width of the input area. A value of 0 means extend as much as possible.

func (*ListBox) SetFinishedFunc

func (l *ListBox) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc calls SetDoneFunc().

func (*ListBox) SetFormAttributes

func (l *ListBox) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (*ListBox) SetLabel

func (l *ListBox) SetLabel(label string) *ListBox

SetLabel sets the text to be displayed before the input area.

func (*ListBox) SetLabelFiller

func (l *ListBox) SetLabelFiller(labelFiller string) FormItem

SetLabelFiller sets a sign which will be fill the label when this one need to stretch

func (*ListBox) SetLabelWidth

func (l *ListBox) SetLabelWidth(width int) *ListBox

SetLabelWidth sets the screen width of the label. A value of 0 will cause the primitive to use the width of the label string.

func (*ListBox) SetMainTextColor

func (l *ListBox) SetMainTextColor(color tcell.Color) *ListBox

SetMainTextColor sets the color of the items' main text.

func (*ListBox) SetSecondaryTextColor

func (l *ListBox) SetSecondaryTextColor(color tcell.Color) *ListBox

SetSecondaryTextColor sets the color of the items' secondary text.

func (*ListBox) SetSelectedBackgroundColor

func (l *ListBox) SetSelectedBackgroundColor(color tcell.Color) *ListBox

SetSelectedBackgroundColor sets the background color of selected items.

func (*ListBox) SetSelectedFunc

func (l *ListBox) SetSelectedFunc(handler func(int, string, string, rune)) *ListBox

SetSelectedFunc sets the function which is called when the user selects a list item by pressing Enter on the current selection. The function receives the item's index in the list of items (starting with 0), its main text, secondary text, and its shortcut rune.

func (*ListBox) SetSelectedTextColor

func (l *ListBox) SetSelectedTextColor(color tcell.Color) *ListBox

SetSelectedTextColor sets the text color of selected items.

func (*ListBox) SetShortcutColor

func (l *ListBox) SetShortcutColor(color tcell.Color) *ListBox

SetShortcutColor sets the color of the items' shortcut.

func (*ListBox) ShowSecondaryText

func (l *ListBox) ShowSecondaryText(show bool) *ListBox

ShowSecondaryText determines whether or not to show secondary item texts.

type Modal struct {
	*Box
	// contains filtered or unexported fields
}

Modal is a centered message window used to inform the user or prompt them for an immediate decision. It needs to have at least one button (added via AddButtons()) or it will never disappear.

See https://github.com/rivo/tview/wiki/Modal for an example.

func NewModal

func NewModal() *Modal

NewModal returns a new modal message window.

func (*Modal) AddButtons

func (m *Modal) AddButtons(labels []string) *Modal

AddButtons adds buttons to the window. There must be at least one button and a "done" handler so the window can be closed again.

func (*Modal) Draw

func (m *Modal) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Modal) Focus

func (m *Modal) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*Modal) HasFocus

func (m *Modal) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Modal) SetDoneFunc

func (m *Modal) SetDoneFunc(handler func(buttonIndex int, buttonLabel string)) *Modal

SetDoneFunc sets a handler which is called when one of the buttons was pressed. It receives the index of the button as well as its label text. The handler is also called when the user presses the Escape key. The index will then be negative and the label text an emptry string.

func (*Modal) SetText

func (m *Modal) SetText(text string) *Modal

SetText sets the message text of the window. The text may contain line breaks. Note that words are wrapped, too, based on the final size of the window.

func (*Modal) SetTextColor

func (m *Modal) SetTextColor(color tcell.Color) *Modal

SetTextColor sets the color of the message text.

func (*Modal) SetTip

func (m *Modal) SetTip() *Modal

SetTip is hard code, which will need to fix

type Pages

type Pages struct {
	*Box
	// contains filtered or unexported fields
}

Pages is a container for other primitives often used as the application's root primitive. It allows to easily switch the visibility of the contained primitives.

See https://github.com/rivo/tview/wiki/Pages for an example.

func NewPages

func NewPages() *Pages

NewPages returns a new Pages object.

func (*Pages) AddAndSwitchToPage

func (p *Pages) AddAndSwitchToPage(name string, item Primitive, resize bool) *Pages

AddAndSwitchToPage calls AddPage(), then SwitchToPage() on that newly added page.

func (*Pages) AddPage

func (p *Pages) AddPage(name string, item Primitive, resize, visible bool) *Pages

AddPage adds a new page with the given name and primitive. If there was previously a page with the same name, it is overwritten. Leaving the name empty may cause conflicts in other functions.

Visible pages will be drawn in the order they were added (unless that order was changed in one of the other functions). If "resize" is set to true, the primitive will be set to the size available to the Pages primitive whenever the pages are drawn.

func (*Pages) Draw

func (p *Pages) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Pages) Focus

func (p *Pages) Focus(delegate func(p Primitive))

Focus is called by the application when the primitive receives focus.

func (*Pages) HasFocus

func (p *Pages) HasFocus() bool

HasFocus returns whether or not this primitive has focus.

func (*Pages) HasPage

func (p *Pages) HasPage(name string) bool

HasPage returns true if a page with the given name exists in this object.

func (*Pages) HidePage

func (p *Pages) HidePage(name string) *Pages

HidePage sets a page's visibility to "false".

func (*Pages) RemovePage

func (p *Pages) RemovePage(name string) *Pages

RemovePage removes the page with the given name.

func (*Pages) SendToBack

func (p *Pages) SendToBack(name string) *Pages

SendToBack changes the order of the pages such that the page with the given name comes first, causing it to be drawn first with the next update (if visible).

func (*Pages) SendToFront

func (p *Pages) SendToFront(name string) *Pages

SendToFront changes the order of the pages such that the page with the given name comes last, causing it to be drawn last with the next update (if visible).

func (*Pages) SetChangedFunc

func (p *Pages) SetChangedFunc(handler func()) *Pages

SetChangedFunc sets a handler which is called whenever the visibility or the order of any visible pages changes. This can be used to redraw the pages.

func (*Pages) ShowPage

func (p *Pages) ShowPage(name string) *Pages

ShowPage sets a page's visibility to "true" (in addition to any other pages which are already visible).

func (*Pages) SwitchToPage

func (p *Pages) SwitchToPage(name string) *Pages

SwitchToPage sets a page's visibility to "true" and all other pages' visibility to "false".

type Primitive

type Primitive interface {
	// Draw draws this primitive onto the screen. Implementers can call the
	// screen's ShowCursor() function but should only do so when they have focus.
	// (They will need to keep track of this themselves.)
	Draw(screen tcell.Screen)

	// GetRect returns the current position of the primitive, x, y, width, and
	// height.
	GetRect() (int, int, int, int)

	// SetRect sets a new position of the primitive.
	SetRect(x, y, width, height int)

	// InputHandler returns a handler which receives key events when it has focus.
	// It is called by the Application class.
	//
	// A value of nil may also be returned, in which case this primitive cannot
	// receive focus and will not process any key events.
	//
	// The handler will receive the key event and a function that allows it to
	// set the focus to a different primitive, so that future key events are sent
	// to that primitive.
	//
	// The Application's Draw() function will be called automatically after the
	// handler returns.
	//
	// The Box class provides functionality to intercept keyboard input. If you
	// subclass from Box, it is recommended that you wrap your handler using
	// Box.WrapInputHandler() so you inherit that functionality.
	InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

	// Focus is called by the application when the primitive receives focus.
	// Implementers may call delegate() to pass the focus on to another primitive.
	Focus(delegate func(p Primitive))

	// Blur is called by the application when the primitive loses focus.
	Blur()

	// IsDisable returns a state of the primitive
	IsDisable() bool

	// GetFocusable returns the item's Focusable.
	GetFocusable() Focusable
}

Primitive is the top-most interface for all graphical primitives.

type RadioButtons

type RadioButtons struct {
	*Box
	// contains filtered or unexported fields
}

RadioButtons implements a simple primitive for radio button selections.

func NewRadioButtons

func NewRadioButtons() *RadioButtons

NewRadioButtons returns a new radio button primitive.

func (*RadioButtons) AddOptions

func (r *RadioButtons) AddOptions(pos int, options ...*RadioOption) *RadioButtons

AddOptions addes options in the specified position

func (*RadioButtons) Draw

func (r *RadioButtons) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*RadioButtons) Focus

func (r *RadioButtons) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*RadioButtons) GetCurrentOption

func (r *RadioButtons) GetCurrentOption() *RadioOption

GetCurrentOption returns the index of the currently selected option as well as its text. If no option was selected, -1 and an empty string is returned.

func (*RadioButtons) GetCurrentOptionName

func (r *RadioButtons) GetCurrentOptionName() string

GetCurrentOptionName returns the name of the currently selected option.

func (*RadioButtons) GetFieldAlign

func (r *RadioButtons) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the radiobutton box.

func (*RadioButtons) GetFieldWidth

func (r *RadioButtons) GetFieldWidth() int

GetFieldWidth returns field width.

func (*RadioButtons) GetFinishedFunc

func (r *RadioButtons) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (*RadioButtons) GetLabel

func (r *RadioButtons) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (*RadioButtons) GetLabelWidth

func (r *RadioButtons) GetLabelWidth() int

GetLabelWidth returns label width.

func (*RadioButtons) GetRect

func (r *RadioButtons) GetRect() (int, int, int, int)

GetRect returns the current position of the rectangle, x, y, width, and height.

func (*RadioButtons) InputHandler

func (r *RadioButtons) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*RadioButtons) Join

func (r *RadioButtons) Join(elements ...*RadioButtons) *RadioButtons

Join combines two element the same type in one, for navigation

func (*RadioButtons) SetAlign

func (r *RadioButtons) SetAlign(align int) *RadioButtons

SetAlign sets the radiobox alignment within the box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*RadioButtons) SetChangedFunc

func (r *RadioButtons) SetChangedFunc(handler func(*RadioOption)) *RadioButtons

SetChangedFunc sets the function which is called when the user navigates to a list item. The function receives the item's index in the list of items (starting with 0), its main text, secondary text, and its shortcut rune.

This function is also called when the first item is added or when SetCurrentItem() is called.

func (*RadioButtons) SetCurrentOption

func (r *RadioButtons) SetCurrentOption(index int) *RadioButtons

SetCurrentOption sets the index of the currently selected option. This may be a negative value to indicate that no option is currently selected.

func (*RadioButtons) SetCurrentOptionByName

func (r *RadioButtons) SetCurrentOptionByName(name string) *RadioButtons

SetCurrentOptionByName sets the index of the currently selected option. This may be a negative value to indicate that no option is currently selected.

func (*RadioButtons) SetDoneFunc

func (r *RadioButtons) SetDoneFunc(handler func(key tcell.Key)) *RadioButtons

SetDoneFunc sets a handler which is called when the user is done selecting options. The callback function is provided with the key that was pressed, which is one of the following:

  • KeyEscape: Abort selection.
  • KeyTab: Move to the next field.
  • KeyBacktab: Move to the previous field.

func (*RadioButtons) SetFieldAlign

func (r *RadioButtons) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the radiobutton box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*RadioButtons) SetFieldBackgroundColor

func (r *RadioButtons) SetFieldBackgroundColor(color tcell.Color) *RadioButtons

SetFieldBackgroundColor sets the background color of the options area.

func (*RadioButtons) SetFieldTextColor

func (r *RadioButtons) SetFieldTextColor(color tcell.Color) *RadioButtons

SetFieldTextColor sets the text color of the options area.

func (*RadioButtons) SetFieldWidth

func (r *RadioButtons) SetFieldWidth(width int) FormItem

SetFieldWidth sets the screen width of the options area. A value of 0 means extend to as long as the longest option text.

func (*RadioButtons) SetFinishedFunc

func (r *RadioButtons) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc calls SetDoneFunc().

func (*RadioButtons) SetFormAttributes

func (r *RadioButtons) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (*RadioButtons) SetHorizontal

func (r *RadioButtons) SetHorizontal(horizontal bool) *RadioButtons

SetHorizontal sets the direction the form elements are laid out. If set to true, instead of positioning them from top to bottom (the default), they are positioned from left to right, moving into the next row if there is not enough space.

func (*RadioButtons) SetItemPadding

func (r *RadioButtons) SetItemPadding(padding int) *RadioButtons

SetItemPadding sets the number of empty rows between form items for vertical layouts and the number of empty cells between form items for horizontal layouts.

func (*RadioButtons) SetLabel

func (r *RadioButtons) SetLabel(label string) *RadioButtons

SetLabel sets the text to be displayed before the input area.

func (*RadioButtons) SetLabelColor

func (r *RadioButtons) SetLabelColor(color tcell.Color) *RadioButtons

SetLabelColor sets the color of the label.

func (*RadioButtons) SetLabelFiller

func (r *RadioButtons) SetLabelFiller(filler string) FormItem

SetLabelFiller sets a sign which will be fill the label when this one need to stretch

func (*RadioButtons) SetLockColors

func (r *RadioButtons) SetLockColors(lock bool) *RadioButtons

SetLockColors locks the change of colors by form

func (*RadioButtons) SetOptions

func (r *RadioButtons) SetOptions(options []*RadioOption) *RadioButtons

SetOptions replaces all current options with the ones provided

func (*RadioButtons) SetSubLabel

func (r *RadioButtons) SetSubLabel(label string) *RadioButtons

SetSubLabel sets the text to be displayed before the input area.

func (*RadioButtons) SetSubLabelColor

func (r *RadioButtons) SetSubLabelColor(color tcell.Color) *RadioButtons

SetSubLabelColor sets the color of the subLabel.

type RadioOption

type RadioOption struct {
	Name  string
	Title string
}

RadioOption holds key and title for radio option

func NewRadioOption

func NewRadioOption(name, text string) *RadioOption

NewRadioOption returns a new option for RadioOption

type Table

type Table struct {
	*Box
	// contains filtered or unexported fields
}

Table visualizes two-dimensional data consisting of rows and columns. Each Table cell is defined via SetCell() by the TableCell type. They can be added dynamically to the table and changed any time.

The most compact display of a table is without borders. Each row will then occupy one row on screen and columns are separated by the rune defined via SetSeparator() (a space character by default).

When borders are turned on (via SetBorders()), each table cell is surrounded by lines. Therefore one table row will require two rows on screen.

Columns will use as much horizontal space as they need. You can constrain their size with the MaxWidth parameter of the TableCell type.

Fixed Columns

You can define fixed rows and rolumns via SetFixed(). They will always stay in their place, even when the table is scrolled. Fixed rows are always the top rows. Fixed columns are always the leftmost columns.

Selections

You can call SetSelectable() to set columns and/or rows to "selectable". If the flag is set only for columns, entire columns can be selected by the user. If it is set only for rows, entire rows can be selected. If both flags are set, individual cells can be selected. The "selected" handler set via SetSelectedFunc() is invoked when the user presses Enter on a selection.

Navigation

If the table extends beyond the available space, it can be navigated with key bindings similar to Vim:

  • h, left arrow: Move left by one column.
  • l, right arrow: Move right by one column.
  • j, down arrow: Move down by one row.
  • k, up arrow: Move up by one row.
  • g, home: Move to the top.
  • G, end: Move to the bottom.
  • Ctrl-F, page down: Move down by one page.
  • Ctrl-B, page up: Move up by one page.

When there is no selection, this affects the entire table (except for fixed rows and columns). When there is a selection, the user moves the selection. The class will attempt to keep the selection from moving out of the screen.

Use SetInputCapture() to override or modify keyboard input.

See https://github.com/rivo/tview/wiki/Table for an example.

func NewTable

func NewTable() *Table

NewTable returns a new table.

func (*Table) Clear

func (t *Table) Clear() *Table

Clear removes all table data.

func (*Table) Draw

func (t *Table) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*Table) GetCell

func (t *Table) GetCell(row, column int) *TableCell

GetCell returns the contents of the cell at the specified position. A valid TableCell object is always returns but it will be uninitialized if the cell was not previously set.

func (*Table) GetColumnCount

func (t *Table) GetColumnCount() int

GetColumnCount returns the (maximum) number of columns in the table.

func (*Table) GetOffset

func (t *Table) GetOffset() (row, column int)

GetOffset returns the current row and column offset. This indicates how many rows and columns the table is scrolled down and to the right.

func (*Table) GetPageCount

func (t *Table) GetPageCount() int

GetPageCount returns quantity of pages

func (*Table) GetRowCount

func (t *Table) GetRowCount() int

GetRowCount returns the number of rows in the table.

func (*Table) GetSelectable

func (t *Table) GetSelectable() (rows, columns bool)

GetSelectable returns what can be selected in a table. Refer to SetSelectable() for details.

func (*Table) GetSelection

func (t *Table) GetSelection() (row, column int)

GetSelection returns the position of the current selection. If entire rows are selected, the column index is undefined. Likewise for entire columns.

func (*Table) InputHandler

func (t *Table) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*Table) ScrollToBeginning

func (t *Table) ScrollToBeginning() *Table

ScrollToBeginning scrolls the table to the beginning to that the top left corner of the table is shown. Note that this position may be corrected if there is a selection.

func (*Table) ScrollToEnd

func (t *Table) ScrollToEnd() *Table

ScrollToEnd scrolls the table to the beginning to that the bottom left corner of the table is shown. Adding more rows to the table will cause it to automatically scroll with the new data. Note that this position may be corrected if there is a selection.

func (*Table) Select

func (t *Table) Select(row, column int) *Table

Select sets the selected cell. Depending on the selection settings specified via SetSelectable(), this may be an entire row or column, or even ignored completely.

func (*Table) SetBorders

func (t *Table) SetBorders(show bool) *Table

SetBorders sets whether or not each cell in the table is surrounded by a border.

func (*Table) SetBordersColor

func (t *Table) SetBordersColor(color tcell.Color) *Table

SetBordersColor sets the color of the cell borders.

func (*Table) SetCell

func (t *Table) SetCell(row, column int, cell *TableCell) *Table

SetCell sets the content of a cell the specified position. It is ok to directly instantiate a TableCell object. If the cell has contain, at least the Text and Color fields should be set.

Note that setting cells in previously unknown rows and columns will automatically extend the internal table representation, e.g. starting with a row of 100,000 will immediately create 100,000 empty rows.

To avoid unnecessary garbage collection, fill columns from left to right.

func (*Table) SetCellSimple

func (t *Table) SetCellSimple(row, column int, text string) *Table

SetCellSimple calls SetCell() with the given text, left-aligned, in white.

func (*Table) SetDoneFunc

func (t *Table) SetDoneFunc(handler func(key tcell.Key)) *Table

SetDoneFunc sets a handler which is called whenever the user presses the Escape, Tab, or Backtab key. If nothing is selected, it is also called when user presses the Enter key (because pressing Enter on a selection triggers the "selected" handler set via SetSelectedFunc()).

func (*Table) SetFixed

func (t *Table) SetFixed(rows, columns int) *Table

SetFixed sets the number of fixed rows and columns which are always visible even when the rest of the cells are scrolled out of view. Rows are always the top-most ones. Columns are always the left-most ones.

func (*Table) SetOffset

func (t *Table) SetOffset(row, column int) *Table

SetOffset sets how many rows and columns should be skipped when drawing the table. This is useful for large tables that do not fit on the screen. Navigating a selection can change these values.

Fixed rows and columns are never skipped.

func (*Table) SetSelectable

func (t *Table) SetSelectable(rows, columns bool) *Table

SetSelectable sets the flags which determine what can be selected in a table. There are three selection modi:

  • rows = false, columns = false: Nothing can be selected.
  • rows = true, columns = false: Rows can be selected.
  • rows = false, columns = true: Columns can be selected.
  • rows = true, columns = true: Individual cells can be selected.

func (*Table) SetSelectedFunc

func (t *Table) SetSelectedFunc(handler func(row, column int)) *Table

SetSelectedFunc sets a handler which is called whenever the user presses the Enter key on a selected cell/row/column. The handler receives the position of the selection and its cell contents. If entire rows are selected, the column index is undefined. Likewise for entire columns.

func (*Table) SetSelectionChangedFunc

func (t *Table) SetSelectionChangedFunc(handler func(row, column int)) *Table

SetSelectionChangedFunc sets a handler which is called whenever the user navigates to a new selection. The handler receives the position of the new selection. If entire rows are selected, the column index is undefined. Likewise for entire columns.

func (*Table) SetSeparator

func (t *Table) SetSeparator(separator rune) *Table

SetSeparator sets the character used to fill the space between two neighboring cells. This is a space character ' ' per default but you may want to set it to GraphicsVertBar (or any other rune) if the column separation should be more visible. If cell borders are activated, this is ignored.

Separators have the same color as borders.

type TableCell

type TableCell struct {
	// The text to be displayed in the table cell.
	Text string

	// The alignment of the cell text. One of AlignLeft (default), AlignCenter,
	// or AlignRight.
	Align int

	// The maximum width of the cell in screen space. This is used to give a
	// column a maximum width. Any cell text whose screen width exceeds this width
	// is cut off. Set to 0 if there is no maximum width.
	MaxWidth int

	// If the total table width is less than the available width, this value is
	// used to add extra width to a column. See SetExpansion() for details.
	Expansion int

	// The color of the cell text.
	Color tcell.Color

	// The background color of the cell.
	BackgroundColor tcell.Color

	// The style attributes of the cell.
	Attributes tcell.AttrMask

	// If set to true, this cell cannot be selected.
	NotSelectable bool
	// contains filtered or unexported fields
}

TableCell represents one cell inside a Table. You can instantiate this type directly but all colors (background and text) will be set to their default which is black.

func NewTableCell

func NewTableCell(text string) *TableCell

NewTableCell returns a new table cell with sensible defaults. That is, left aligned text with the primary text color (see Styles) and a transparent background (using the background of the Table).

func (*TableCell) GetLastPosition

func (c *TableCell) GetLastPosition() (x, y, width int)

GetLastPosition returns the position of the table cell the last time it was drawn on screen. If the cell is not on screen, the return values are undefined.

Because the Table class will attempt to keep selected cells on screen, this function is most useful in response to a "selected" event (see SetSelectedFunc()) or a "selectionChanged" event (see SetSelectionChangedFunc()).

func (*TableCell) SetAlign

func (c *TableCell) SetAlign(align int) *TableCell

SetAlign sets the cell's text alignment, one of AlignLeft, AlignCenter, or AlignRight.

func (*TableCell) SetAttributes

func (c *TableCell) SetAttributes(attr tcell.AttrMask) *TableCell

SetAttributes sets the cell's text attributes. You can combine different attributes using bitmask operations:

cell.SetAttributes(tcell.AttrUnderline | tcell.AttrBold)

func (*TableCell) SetBackgroundColor

func (c *TableCell) SetBackgroundColor(color tcell.Color) *TableCell

SetBackgroundColor sets the cell's background color. Set to tcell.ColorDefault to use the table's background color.

func (*TableCell) SetExpansion

func (c *TableCell) SetExpansion(expansion int) *TableCell

SetExpansion sets the value by which the column of this cell expands if the available width for the table is more than the table width (prior to applying this expansion value). This is a proportional value. The amount of unused horizontal space is divided into widths to be added to each column. How much extra width a column receives depends on the expansion value: A value of 0 (the default) will not cause the column to increase in width. Other values are proportional, e.g. a value of 2 will cause a column to grow by twice the amount of a column with a value of 1.

Since this value affects an entire column, the maximum over all visible cells in that column is used.

This function panics if a negative value is provided.

func (*TableCell) SetMaxWidth

func (c *TableCell) SetMaxWidth(maxWidth int) *TableCell

SetMaxWidth sets maximum width of the cell in screen space. This is used to give a column a maximum width. Any cell text whose screen width exceeds this width is cut off. Set to 0 if there is no maximum width.

func (*TableCell) SetSelectable

func (c *TableCell) SetSelectable(selectable bool) *TableCell

SetSelectable sets whether or not this cell can be selected by the user.

func (*TableCell) SetStyle

func (c *TableCell) SetStyle(style tcell.Style) *TableCell

SetStyle sets the cell's style (foreground color, background color, and attributes) all at once.

func (*TableCell) SetText

func (c *TableCell) SetText(text string) *TableCell

SetText sets the cell's text.

func (*TableCell) SetTextColor

func (c *TableCell) SetTextColor(color tcell.Color) *TableCell

SetTextColor sets the cell's text color.

type TextView

type TextView struct {
	sync.Mutex
	*Box
	// contains filtered or unexported fields
}

TextView is a box which displays text. It implements the io.Writer interface so you can stream text to it. This does not trigger a redraw automatically but if a handler is installed via SetChangedFunc(), you can cause it to be redrawn.

Navigation

If the text view is scrollable (the default), text is kept in a buffer which may be larger than the screen and can be navigated similarly to Vim:

  • h, left arrow: Move left.
  • l, right arrow: Move right.
  • j, down arrow: Move down.
  • k, up arrow: Move up.
  • g, home: Move to the top.
  • G, end: Move to the bottom.
  • Ctrl-F, page down: Move down by one page.
  • Ctrl-B, page up: Move up by one page.

If the text is not scrollable, any text above the top visible line is discarded.

Use SetInputCapture() to override or modify keyboard input.

Colors

If dynamic colors are enabled via SetDynamicColors(), text color can be changed dynamically by embedding color strings in square brackets. This works the same way as anywhere else. Please see the package documentation for more information.

Regions and Highlights

If regions are enabled via SetRegions(), you can define text regions within the text and assign region IDs to them. Text regions start with region tags. Region tags are square brackets that contain a region ID in double quotes, for example:

We define a ["rg"]region[""] here.

A text region ends with the next region tag. Tags with no region ID ([""]) don't start new regions. They can therefore be used to mark the end of a region. Region IDs must satisfy the following regular expression:

[a-zA-Z0-9_,;: \-\.]+

Regions can be highlighted by calling the Highlight() function with one or more region IDs. This can be used to display search results, for example.

The ScrollToHighlight() function can be used to jump to the currently highlighted region once when the text view is drawn the next time.

See https://github.com/rivo/tview/wiki/TextView for an example.

func NewTextView

func NewTextView() *TextView

NewTextView returns a new text view.

func (*TextView) Clear

func (t *TextView) Clear() *TextView

Clear removes all text from the buffer.

func (*TextView) Draw

func (t *TextView) Draw(screen tcell.Screen)

Draw draws this primitive onto the screen.

func (*TextView) Focus

func (t *TextView) Focus(delegate func(p Primitive))

Focus is called when this primitive receives focus.

func (*TextView) GetFieldAlign

func (t *TextView) GetFieldAlign() (align int)

GetFieldAlign returns the input alignment within the radiobutton box.

func (*TextView) GetFieldWidth

func (t *TextView) GetFieldWidth() int

GetFieldWidth returns this primitive's field width.

func (*TextView) GetFinishedFunc

func (t *TextView) GetFinishedFunc() func(key tcell.Key)

GetFinishedFunc returns SetDoneFunc().

func (*TextView) GetHighlights

func (t *TextView) GetHighlights() (regionIDs []string)

GetHighlights returns the IDs of all currently highlighted regions.

func (*TextView) GetInnerRect

func (t *TextView) GetInnerRect() (int, int, int, int)

GetInnerRect returns the position of the inner rectangle (x, y, width, height), without the border and without any padding.

func (*TextView) GetLabel

func (t *TextView) GetLabel() string

GetLabel returns the text to be displayed before the input area.

func (*TextView) GetLabelWidth

func (t *TextView) GetLabelWidth() int

GetLabelWidth returns label width.

func (*TextView) GetRegionText

func (t *TextView) GetRegionText(regionID string) string

GetRegionText returns the text of the region with the given ID. If dynamic colors are enabled, color tags are stripped from the text. Newlines are always returned as '\n' runes.

If the region does not exist or if regions are turned off, an empty string is returned.

func (*TextView) Highlight

func (t *TextView) Highlight(regionIDs ...string) *TextView

Highlight specifies which regions should be highlighted. See class description for details on regions. Empty region strings are ignored.

Text in highlighted regions will be drawn inverted, i.e. with their background and foreground colors swapped.

Calling this function will remove any previous highlights. To remove all highlights, call this function without any arguments.

func (*TextView) InputHandler

func (t *TextView) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive))

InputHandler returns the handler for this primitive.

func (*TextView) ScrollToBeginning

func (t *TextView) ScrollToBeginning() *TextView

ScrollToBeginning scrolls to the top left corner of the text if the text view is scrollable.

func (*TextView) ScrollToEnd

func (t *TextView) ScrollToEnd() *TextView

ScrollToEnd scrolls to the bottom left corner of the text if the text view is scrollable. Adding new rows to the end of the text view will cause it to scroll with the new data.

func (*TextView) ScrollToHighlight

func (t *TextView) ScrollToHighlight() *TextView

ScrollToHighlight will cause the visible area to be scrolled so that the highlighted regions appear in the visible area of the text view. This repositioning happens the next time the text view is drawn. It happens only once so you will need to call this function repeatedly to always keep highlighted regions in view.

Nothing happens if there are no highlighted regions or if the text view is not scrollable.

func (*TextView) SetChangedFunc

func (t *TextView) SetChangedFunc(handler func()) *TextView

SetChangedFunc sets a handler function which is called when the text of the text view has changed. This is typically used to cause the application to redraw the screen.

func (*TextView) SetDoneFunc

func (t *TextView) SetDoneFunc(handler func(key tcell.Key)) *TextView

SetDoneFunc sets a handler which is called when the user presses on the following keys: Escape, Enter, Tab, Backtab. The key is passed to the handler.

func (*TextView) SetDynamicColors

func (t *TextView) SetDynamicColors(dynamic bool) *TextView

SetDynamicColors sets the flag that allows the text color to be changed dynamically. See class description for details.

func (*TextView) SetFieldAlign

func (t *TextView) SetFieldAlign(align int) FormItem

SetFieldAlign sets the input alignment within the radiobutton box. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*TextView) SetFinishedFunc

func (t *TextView) SetFinishedFunc(handler func(key tcell.Key)) FormItem

SetFinishedFunc sets a callback invoked when the user leaves this form item.

func (*TextView) SetFormAttributes

func (t *TextView) SetFormAttributes(labelWidth, fieldWidth int, labelColor, bgColor, fieldTextColor, fieldBgColor tcell.Color) FormItem

SetFormAttributes sets attributes shared by all form items.

func (*TextView) SetMaxSize

func (t *TextView) SetMaxSize(width, height int) *TextView

SetMaxSize sets max size of the box

func (*TextView) SetMinSize

func (t *TextView) SetMinSize(width, height int) *TextView

SetMinSize sets min size of the box

func (*TextView) SetRegions

func (t *TextView) SetRegions(regions bool) *TextView

SetRegions sets the flag that allows to define regions in the text. See class description for details.

func (*TextView) SetScrollEndedFunc

func (t *TextView) SetScrollEndedFunc(handler func(screen tcell.Screen)) *TextView

SetScrollEndedFunc sets a handler function which is called when the text of the text view has changed. This is typically used to cause the application to redraw the screen.

func (*TextView) SetScrollable

func (t *TextView) SetScrollable(scrollable bool) *TextView

SetScrollable sets the flag that decides whether or not the text view is scrollable. If true, text is kept in a buffer and can be navigated.

func (*TextView) SetText

func (t *TextView) SetText(text string) *TextView

SetText sets the text of this text view to the provided string. Previously contained text will be removed.

func (*TextView) SetTextAlign

func (t *TextView) SetTextAlign(align int) *TextView

SetTextAlign sets the text alignment within the text view. This must be either AlignLeft, AlignCenter, or AlignRight.

func (*TextView) SetTextColor

func (t *TextView) SetTextColor(color tcell.Color) *TextView

SetTextColor sets the initial color of the text (which can be changed dynamically by sending color strings in square brackets to the text view if dynamic colors are enabled).

func (*TextView) SetWordWrap

func (t *TextView) SetWordWrap(wrapOnWords bool) *TextView

SetWordWrap sets the flag that, if true and if the "wrap" flag is also true (see SetWrap()), wraps the line at spaces or after punctuation marks. Note that trailing spaces will not be printed.

This flag is ignored if the "wrap" flag is false.

func (*TextView) SetWrap

func (t *TextView) SetWrap(wrap bool) *TextView

SetWrap sets the flag that, if true, leads to lines that are longer than the available width being wrapped onto the next line. If false, any characters beyond the available width are not displayed.

func (*TextView) Write

func (t *TextView) Write(p []byte) (n int, err error)

Write lets us implement the io.Writer interface. Tab characters will be replaced with TabSize space characters. A "\n" or "\r\n" will be interpreted as a new line.

Directories

Path Synopsis
demos
box
Demo code for the Box primitive.
Demo code for the Box primitive.
button
Demo code for the Button primitive.
Demo code for the Button primitive.
checkbox
Demo code for the Checkbox primitive.
Demo code for the Checkbox primitive.
dropdown
Demo code for the DropDown primitive.
Demo code for the DropDown primitive.
flex
Demo code for the Flex primitive.
Demo code for the Flex primitive.
form
Demo code for the Form primitive.
Demo code for the Form primitive.
frame
Demo code for the Frame primitive.
Demo code for the Frame primitive.
inputfield
Demo code for the InputField primitive.
Demo code for the InputField primitive.
list
Demo code for the List primitive.
Demo code for the List primitive.
modal
Demo code for the Modal primitive.
Demo code for the Modal primitive.
pages
Demo code for the Pages primitive.
Demo code for the Pages primitive.
presentation
A presentation of the tview package, implemented with tview.
A presentation of the tview package, implemented with tview.
primitive
Demo code which illustrates how to implement your own primitive.
Demo code which illustrates how to implement your own primitive.
table
Demo code for the Table primitive.
Demo code for the Table primitive.
textview
Demo code for the TextView primitive.
Demo code for the TextView primitive.
unicode
Demo code for unicode support (demonstrates wide Chinese characters).
Demo code for unicode support (demonstrates wide Chinese characters).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL