| 79 | OutputDelegate::~OutputDelegate() = default; |
| 80 | |
| 81 | void OutputDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const |
| 82 | { |
| 83 | Q_D(const OutputDelegate); |
| 84 | |
| 85 | const QStyleOptionViewItem& opt = d->modifyStyleOptions(option, index); |
| 86 | |
| 87 | QItemDelegate::paint(painter, opt, index); |
| 88 | } |
| 89 | |
| 90 | QSize OutputDelegate::sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const |
| 91 | { |
nothing calls this directly
no test coverage detected