GEOS
Public Member Functions | Public Attributes | List of all members
geos::TableLayout::Cell Class Reference

Represents a cell in a table with ownership of its text data. More...

#include <TableLayout.hpp>

Public Member Functions

 Cell ()
 Constructor to initialize a Cell with a default settings. Use prepareLayout() after setup.
 
 Cell (CellType cellType, TableLayout::Alignment alignment)
 Constructor to partially initialize a cell with display settings. Use prepareLayout() after setup. More...
 
 Cell (CellType cellType, TableLayout::Alignment alignment, string_view value)
 Constructor to partially initialize a cell with all settings. Use prepareLayout() after setup. More...
 
 Cell (Cell const &other)
 Copy data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice) More...
 
 Cell (Cell &&other)
 Move data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice) More...
 
Celloperator= (Cell const &other)
 Copy data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice) More...
 
Celloperator= (Cell &&other)
 Move data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice) More...
 
string_view getText () const
 
void setText (string_view text)
 Set the full cell text. More...
 
void prepareLayout (size_t maxLineWidth)
 Precompute m_layout display settings and link it with m_text. More...
 

Public Attributes

CellLayout m_layout
 The view & display setting on m_text.
 

Detailed Description

Represents a cell in a table with ownership of its text data.

Note
Unlike CellLayout which is just a view, Cell owns its text data (m_text). For safety & performance reasons, Cell is non-copyable/movable after layout has been prepared.

Definition at line 159 of file TableLayout.hpp.

Constructor & Destructor Documentation

◆ Cell() [1/4]

geos::TableLayout::Cell::Cell ( CellType  cellType,
TableLayout::Alignment  alignment 
)

Constructor to partially initialize a cell with display settings. Use prepareLayout() after setup.

Parameters
cellTypeThe type of the cell.
alignmentThe alignment of the cell (left, right, or center).

◆ Cell() [2/4]

geos::TableLayout::Cell::Cell ( CellType  cellType,
TableLayout::Alignment  alignment,
string_view  value 
)

Constructor to partially initialize a cell with all settings. Use prepareLayout() after setup.

Parameters
cellTypeThe type of the cell.
alignmentThe alignment of the cell (left, right, or center).
valueThe text to set in the cell (stored in m_text).

◆ Cell() [3/4]

geos::TableLayout::Cell::Cell ( Cell const &  other)

Copy data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice)

Parameters
otherThe source data.

◆ Cell() [4/4]

geos::TableLayout::Cell::Cell ( Cell &&  other)

Move data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice)

Parameters
otherThe source data.

Member Function Documentation

◆ getText()

string_view geos::TableLayout::Cell::getText ( ) const
inline
Returns
The full cell text.

Definition at line 218 of file TableLayout.hpp.

◆ operator=() [1/2]

Cell& geos::TableLayout::Cell::operator= ( Cell &&  other)

Move data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice)

Parameters
otherThe source data.
Returns
The instance reference.

◆ operator=() [2/2]

Cell& geos::TableLayout::Cell::operator= ( Cell const &  other)

Copy data, or throw an error if the layout has already been prepared (which means instance will reference potencially outdated reference, and we do not want to compute the layout twice)

Parameters
otherThe source data.
Returns
The instance reference.

◆ prepareLayout()

void geos::TableLayout::Cell::prepareLayout ( size_t  maxLineWidth)

Precompute m_layout display settings and link it with m_text.

Parameters
maxLineWidthThe maximum allowed line width. Use noColumnMaxWidth to disable.

◆ setText()

void geos::TableLayout::Cell::setText ( string_view  text)

Set the full cell text.

Parameters
textThe full cell text, with '
' for manual line breaks.

The documentation for this class was generated from the following file: