GEOS
|
Variation of the TableLayout to store precomputed layout information, ready to be formatted. More...
#include <TableLayout.hpp>
Public Member Functions | |
PreparedTableLayout () | |
Construct a default Table Formatter without layout specification (to only insert data in it, without any column / title). Feature is not tested. | |
PreparedTableLayout (TableLayout const &other) | |
Precompute various information for formatting from a configurated TableLayout: More... | |
PreparedTableLayout (PreparedTableLayout const &)=delete | |
As prepared CellLayout & Column types have internal pointers, we cannot copy this class. | |
PreparedTableLayout (PreparedTableLayout &&)=delete | |
as prepared CellLayout & Column types have internal pointers, we cannot move this class (SSO breaks string<-string_view move). | |
size_t | getColumnLayersCount () const |
size_t | getLowermostColumnsCount () const |
![]() | |
DeepFirstIterator | beginDeepFirst () const |
DeepFirstIterator | endDeepFirst () const |
TableLayout (string_view title, std::vector< TableLayout::Column > const &columns) | |
Construct a new Table Layout object. More... | |
TableLayout (string_view title, TableLayoutArgs args) | |
Construct a new Table Layout object. More... | |
TableLayout (TableLayoutArgs args) | |
Construct a new Table Layout object. More... | |
TableLayout (string_view title, std::vector< string > const &args) | |
Construct a new Table Layout object. More... | |
ColumnsList const & | getColumns () const |
ColumnsList & | getColumns () |
CellLayout const & | getTitleLayout () const |
CellLayout & | getTitleLayout () |
string_view | getTitleStr () const |
TableLayout & | setTitle (string_view title) |
TableLayout & | enableLineBreak (bool value) |
Remove the return line at the end & begenning of the table. More... | |
TableLayout & | setMargin (MarginValue marginValue) |
Set the minimal margin width between cell content and borders. More... | |
TableLayout & | setMaxColumnWidth (size_t width) |
Set the maximal width for each column. More... | |
bool | isMaxColumnWidthSet () |
check if a column max width has been set More... | |
bool | isLineBreakEnabled () const |
integer const & | getBorderMargin () const |
integer const & | getColumnMargin () const |
integer const & | getMarginValue () const |
size_t const & | getMaxColumnWidth () const |
void | addColumns (std::vector< TableLayout::Column > const &columnNames) |
Create and add columns to the columns vector given a string vector. More... | |
void | addColumns (std::vector< string > const &columns) |
Create and add columns to the columns vector given a string vector. More... | |
void | addColumn (string_view columnName) |
Create and add a column to the columns vector given a string. More... | |
void | addColumn (TableLayout::Column const &column) |
Create and add a column to the columns vector given a Column. More... | |
Additional Inherited Members | |
![]() | |
enum | Alignment { right , left , center } |
Type of aligment for a column. | |
enum | MarginValue : integer { tiny = 0 , small = 1 , medium = 2 , large = 3 } |
Space to apply between all data and border. | |
enum | Section { header , values } |
Enumeration for table sections. | |
using | TableLayoutArgs = std::initializer_list< std::variant< string_view, TableLayout::Column > > |
Alias for an initializer list of variants that can contain either a string or a layout column. | |
using | ColumnsList = Column::ColumnsList |
Alias for the list of columns. | |
![]() | |
static constexpr size_t | noColumnMaxWidth = std::numeric_limits< size_t >::max() |
default value for m_maxColumnWidth when it is not set | |
static constexpr Alignment | defaultHeaderAlignment = Alignment::center |
default value for columns header cells alignement | |
static constexpr Alignment | defaultValueAlignment = Alignment::right |
default value for data cells alignement | |
![]() | |
void | processArguments (TableLayoutArgs args) |
Add a column to the table given an initializer_list of string & Column. More... | |
template<typename ... Ts> | |
void | processArguments (Ts &... args) |
![]() | |
ColumnsList | m_tableColumns |
Columns settings hierarchy. | |
bool | m_lineBreakAtBegin = true |
Indicate if we have a line break a the beginning of the table. | |
string | m_tableTitleStr |
Table title text. | |
CellLayout | m_tableTitleLayout = CellLayout( CellType::Header, Alignment::center ) |
Table title cell layout settings. | |
size_t | m_maxColumnWidth = noColumnMaxWidth |
Max width for each column. | |
integer | m_borderMargin |
The number of spaces at each table sides. | |
integer | m_columnMargin |
The number of character between two columns (spaces + the separacting character). | |
integer | m_marginValue |
The number of margin spaces around contents. | |
Variation of the TableLayout to store precomputed layout information, ready to be formatted.
Definition at line 753 of file TableLayout.hpp.
geos::PreparedTableLayout::PreparedTableLayout | ( | TableLayout const & | other | ) |
Precompute various information for formatting from a configurated TableLayout:
other | The table layout configuration. |
|
inline |
Definition at line 789 of file TableLayout.hpp.
|
inline |
Definition at line 796 of file TableLayout.hpp.