|
| colored_grid (unsigned int rows, unsigned int cols, unsigned int height=1u) |
|
virtual std::optional< std::string > | contents_of (const std::shared_ptr< cell > &c) const noexcept override |
| Get detailed information of a cell in the grid.
|
|
virtual std::optional< std::uint32_t > | background_color_for (const std::shared_ptr< cell > &c) const noexcept override |
| Get the background color for a cell in the grid.
|
|
| grid (unsigned int rows, unsigned int columns, unsigned int height=1u) |
| Constructor for grid.
|
|
| grid (std::tuple< unsigned int, unsigned int, unsigned int > dimensions) |
| Constructor for grid.
|
|
| grid (const grid &other) |
| Copy constructor.
|
|
grid & | operator= (const grid &other) |
| Assignment operator.
|
|
| grid (grid &&other) noexcept |
| Move constructor.
|
|
grid & | operator= (grid &&other) noexcept |
| Move assignment operator.
|
|
virtual | ~grid () |
| Destructor.
|
|
virtual std::tuple< unsigned int, unsigned int, unsigned int > | get_dimensions () const noexcept override |
| Provides dimensions of grid in no assumed ordering.
|
|
virtual void | to_vec (std::vector< std::shared_ptr< cell > > &cells) const noexcept override |
| Convert a 2D grid to a vector of cells (sorted by row then column)
|
|
virtual void | to_vec2 (std::vector< std::vector< std::shared_ptr< cell > > > &cells) const noexcept override |
| Convert a 2D grid to a vector of vectors of cells (sorted by row then column)
|
|
virtual void | append (std::shared_ptr< grid_interface > const &other_grid) noexcept |
|
virtual void | insert (std::shared_ptr< cell > const &parent, int index) noexcept |
|
virtual bool | update (std::shared_ptr< cell > &parent, int old_index, int new_index) noexcept |
|
virtual std::shared_ptr< cell > | search (std::shared_ptr< cell > const &start, int index) const noexcept |
|
virtual void | del (std::shared_ptr< cell > parent, int index) noexcept |
|
Extension of the grid class to include color information.