mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 15:20:39 +01:00
86 lines
3.2 KiB
C++
86 lines
3.2 KiB
C++
#include <escher/table_cell.h>
|
|
#include <escher/palette.h>
|
|
#include <escher/metric.h>
|
|
|
|
TableCell::TableCell(Layout layout) :
|
|
HighlightCell(),
|
|
m_layout(layout)
|
|
{
|
|
}
|
|
|
|
View * TableCell::labelView() const {
|
|
return nullptr;
|
|
}
|
|
|
|
View * TableCell::accessoryView() const {
|
|
return nullptr;
|
|
}
|
|
|
|
View * TableCell::subAccessoryView() const {
|
|
return nullptr;
|
|
}
|
|
|
|
int TableCell::numberOfSubviews() const {
|
|
return (labelView() != nullptr) + (accessoryView()!= nullptr) + (subAccessoryView()!= nullptr);
|
|
}
|
|
|
|
View * TableCell::subviewAtIndex(int index) {
|
|
if (index == 0) {
|
|
return labelView();
|
|
}
|
|
if (index == 1) {
|
|
return accessoryView();
|
|
}
|
|
return subAccessoryView();
|
|
}
|
|
|
|
void TableCell::layoutSubviews() {
|
|
KDCoordinate width = bounds().width();
|
|
KDCoordinate height = bounds().height();
|
|
View * label = labelView();
|
|
if (label) {
|
|
KDSize labelSize = label->minimalSizeForOptimalDisplay();
|
|
switch (m_layout) {
|
|
case Layout::Vertical:
|
|
label->setFrame(KDRect(k_separatorThickness+k_labelMargin, k_separatorThickness+Metric::TableCellLabelTopMargin, width-2*k_separatorThickness-k_labelMargin, labelSize.height()));
|
|
break;
|
|
default:
|
|
label->setFrame(KDRect(k_separatorThickness+k_labelMargin, k_separatorThickness, labelSize.width(), height - 2*k_separatorThickness));
|
|
break;
|
|
}
|
|
}
|
|
View * accessory = accessoryView();
|
|
if (accessory) {
|
|
KDSize accessorySize = accessory->minimalSizeForOptimalDisplay();
|
|
switch (m_layout) {
|
|
case Layout::Vertical:
|
|
accessory->setFrame(KDRect(k_separatorThickness+k_accessoryMargin, height-k_separatorThickness-accessorySize.height()-k_accessoryBottomMargin,
|
|
width-2*k_separatorThickness - k_accessoryMargin, accessorySize.height()));
|
|
break;
|
|
default:
|
|
accessory->setFrame(KDRect(width - accessorySize.width() - k_separatorThickness-k_accessoryMargin, k_separatorThickness,
|
|
accessorySize.width(), height-2*k_separatorThickness));
|
|
break;
|
|
}
|
|
}
|
|
View * subAccessory = subAccessoryView();
|
|
if (subAccessory && accessory) {
|
|
KDSize accessorySize = accessory->minimalSizeForOptimalDisplay();
|
|
KDSize subAccessorySize = subAccessory->minimalSizeForOptimalDisplay();
|
|
subAccessory->setFrame(KDRect(width-k_separatorThickness-k_accessoryMargin-accessorySize.width()-subAccessorySize.width(), k_separatorThickness,
|
|
subAccessorySize.width(), height-2*k_separatorThickness));
|
|
}
|
|
}
|
|
|
|
void TableCell::drawRect(KDContext * ctx, KDRect rect) const {
|
|
KDCoordinate width = bounds().width();
|
|
KDCoordinate height = bounds().height();
|
|
KDColor backgroundColor = isHighlighted() ? Palette::Select : KDColorWhite;
|
|
ctx->fillRect(KDRect(k_separatorThickness, k_separatorThickness, width-2*k_separatorThickness, height-k_separatorThickness), backgroundColor);
|
|
// Draw rectangle around cell
|
|
ctx->fillRect(KDRect(0, 0, width, k_separatorThickness), Palette::GreyBright);
|
|
ctx->fillRect(KDRect(0, k_separatorThickness, k_separatorThickness, height-k_separatorThickness), Palette::GreyBright);
|
|
ctx->fillRect(KDRect(width-k_separatorThickness, k_separatorThickness, k_separatorThickness, height-k_separatorThickness), Palette::GreyBright);
|
|
ctx->fillRect(KDRect(0, height-k_separatorThickness, width, k_separatorThickness), Palette::GreyBright);
|
|
}
|