|
FTXUI 6.1.9
C++ functional terminal UI.
|
#include <table.hpp>
Public Member Functions | |
| Table () | |
| Create an empty table. | |
| Table (std::vector< std::vector< std::string > >) | |
| Create a table from a vector of vector of string. | |
| Table (std::vector< std::vector< Element > >) | |
| Create a table from a vector of vector of Element. | |
| Table (std::initializer_list< std::vector< std::string > > init) | |
| TableSelection | SelectAll () |
| Select all the table. | |
| TableSelection | SelectCell (int column, int row) |
| Select a cell of the table. | |
| TableSelection | SelectRow (int row_index) |
| Select a row of the table. | |
| TableSelection | SelectRows (int row_min, int row_max) |
| Select a range of rows of the table. | |
| TableSelection | SelectColumn (int column_index) |
| Select a column of the table. | |
| TableSelection | SelectColumns (int column_min, int column_max) |
| Select a range of columns of the table. | |
| TableSelection | SelectRectangle (int column_min, int column_max, int row_min, int row_max) |
| Select a rectangle of the table. | |
| Element | Render () |
| Render the table. | |
| Table | ( | std::initializer_list< std::vector< std::string > > | init | ) |
Definition at line 79 of file src/ftxui/dom/table.cpp.