13Cell::Cell(std::string contentText, std::string backgroundColor,
int borderThickness, std::string borderColor,
14 int borderOpacity,
bool isEditable)
15 : m_contentText(
std::move(contentText)), m_backgroundColor(
std::move(backgroundColor)),
16 m_borderThickness(borderThickness), m_borderOpacity(borderOpacity), m_borderColor(
std::move(borderColor)),
17 m_iconFilePath(), m_isEditable(isEditable), m_toolTip(
""), m_direction(
Direction::INPUT) {}
20 : m_contentText(
std::move(contentText)), m_backgroundColor(
"white"), m_borderThickness(1), m_borderOpacity(255),
21 m_borderColor(
"darkGrey"), m_iconFilePath(), m_isEditable(true), m_toolTip(
""), m_direction(
Direction::INPUT) {}
96 auto paddedCells = cells;
97 for (
auto i =
static_cast<int>(cells.size()); i < paddedWidth; i++)
98 paddedCells.emplace_back(paddingCell);
const std::vector< double > & rhs