| 126 | // Q_OBJECT |
| 127 | public: |
| 128 | TableView(QWidget* parent) |
| 129 | : QTableView(parent) |
| 130 | { |
| 131 | horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch); |
| 132 | verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents); |
| 133 | setSelectionBehavior(QAbstractItemView::SelectRows); |
| 134 | setSelectionMode(QAbstractItemView::ExtendedSelection); |
| 135 | setIconSize({ IconSize, IconSize }); |
| 136 | } |
| 137 | virtual ~TableView() { } |
| 138 | |
| 139 | // QAbstractItemView interface |
nothing calls this directly
no outgoing calls
no test coverage detected