1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
#if defined(Hiro_TableView)
auto mTableViewCell::allocate() -> pObject* {
return new pTableViewCell(*this);
}
//
auto mTableViewCell::alignment(bool recursive) const -> Alignment {
if(auto alignment = state.alignment) return alignment;
if(recursive) {
if(auto parent = parentTableViewItem()) {
if(auto alignment = parent->state.alignment) return alignment;
if(auto grandparent = parent->parentTableView()) {
if(offset() < grandparent->columnCount()) {
if(auto column = grandparent->state.columns[offset()]) {
if(auto alignment = column->state.alignment) return alignment;
}
}
if(auto alignment = grandparent->state.alignment) return alignment;
}
}
}
return {};
}
auto mTableViewCell::backgroundColor(bool recursive) const -> Color {
if(auto color = state.backgroundColor) return color;
if(recursive) {
if(auto parent = parentTableViewItem()) {
if(auto color = parent->state.backgroundColor) return color;
if(auto grandparent = parent->parentTableView()) {
if(offset() < grandparent->columnCount()) {
if(auto column = grandparent->state.columns[offset()]) {
if(auto color = column->state.backgroundColor) return color;
}
}
if(auto color = grandparent->state.backgroundColor) return color;
}
}
}
return {};
}
auto mTableViewCell::checkable() const -> bool {
return state.checkable;
}
auto mTableViewCell::checked() const -> bool {
return state.checkable && state.checked;
}
auto mTableViewCell::font(bool recursive) const -> Font {
if(auto font = mObject::font()) return font;
if(recursive) {
if(auto parent = parentTableViewItem()) {
if(auto font = parent->font()) return font;
if(auto grandparent = parent->parentTableView()) {
if(offset() < grandparent->columnCount()) {
if(auto column = grandparent->state.columns[offset()]) {
if(auto font = column->font()) return font;
}
}
if(auto font = grandparent->font(true)) return font;
}
}
}
return {};
}
auto mTableViewCell::foregroundColor(bool recursive) const -> Color {
if(auto color = state.foregroundColor) return color;
if(recursive) {
if(auto parent = parentTableViewItem()) {
if(auto color = parent->state.foregroundColor) return color;
if(auto grandparent = parent->parentTableView()) {
if(offset() < grandparent->columnCount()) {
if(auto column = grandparent->state.columns[offset()]) {
if(auto color = column->state.foregroundColor) return color;
}
}
if(auto color = grandparent->state.foregroundColor) return color;
}
}
}
return state.foregroundColor;
}
auto mTableViewCell::icon() const -> multiFactorImage {
return state.icon;
}
auto mTableViewCell::setAlignment(Alignment alignment) -> type& {
state.alignment = alignment;
signal(setAlignment, alignment);
return *this;
}
auto mTableViewCell::setBackgroundColor(Color color) -> type& {
state.backgroundColor = color;
signal(setBackgroundColor, color);
return *this;
}
auto mTableViewCell::setCheckable(bool checkable) -> type& {
state.checkable = checkable;
signal(setCheckable, checkable);
return *this;
}
auto mTableViewCell::setChecked(bool checked) -> type& {
setCheckable(true);
state.checked = checked;
signal(setChecked, checked);
return *this;
}
auto mTableViewCell::setForegroundColor(Color color) -> type& {
state.foregroundColor = color;
state.foregroundSystemColor = SystemColor::None;
signal(setForegroundColor, color);
return *this;
}
auto mTableViewCell::setForegroundColor(SystemColor color) -> type& {
state.foregroundColor = color;
state.foregroundSystemColor = color;
signal(setForegroundColor, color);
return *this;
}
auto mTableViewCell::setIcon(const multiFactorImage& icon) -> type& {
state.icon = icon;
signal(setIcon, icon);
return *this;
}
auto mTableViewCell::setText(const string& text) -> type& {
state.text = text;
signal(setText, text);
return *this;
}
auto mTableViewCell::text() const -> string {
return state.text;
}
#endif
|