Represents a cell in a table with ownership of its text data.
More...
#include <TableLayout.hpp>
|
| 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...
|
|
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) More...
|
|
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) 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...
|
|
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.
◆ Cell() [1/4]
Constructor to partially initialize a cell with display settings. Use prepareLayout() after setup.
- Parameters
-
cellType | The type of the cell. |
alignment | The alignment of the cell (left, right, or center). |
◆ Cell() [2/4]
Constructor to partially initialize a cell with all settings. Use prepareLayout() after setup.
- Parameters
-
cellType | The type of the cell. |
alignment | The alignment of the cell (left, right, or center). |
value | The 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
-
◆ 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
-
◆ getText()
◆ 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
-
- 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
-
- 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
-
maxLineWidth | The maximum allowed line width. Use noColumnMaxWidth to disable. |
◆ setText()
void geos::TableLayout::Cell::setText |
( |
string_view |
text | ) |
|
Set the full cell text.
- Parameters
-
text | The full cell text, with '
' for manual line breaks. |
The documentation for this class was generated from the following file: