| 5 | #define INITIAL_CELL_SIZE 12 |
| 6 | |
| 7 | ComponentListComponent::ComponentListComponent(Window* window, Eigen::Vector2i gridDimensions) : GuiComponent(window), mGrid(NULL), mColumnWidths(NULL), mRowHeights(NULL) |
| 8 | { |
| 9 | mEntries.reserve(gridDimensions.x() * gridDimensions.y()); |
| 10 | makeCells(gridDimensions); |
| 11 | } |
| 12 | |
| 13 | void ComponentListComponent::makeCells(Eigen::Vector2i size) |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected