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
|
/**
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
*/
#include "navigabletableview.h"
#include <QKeyEvent>
#include <QHeaderView>
#include <iostream>
NavigableTableView::NavigableTableView(QWidget *parent) :
QTableView(parent) {
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
#else
horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
#endif
}
void NavigableTableView::keyPressEvent(QKeyEvent *event) {
if(event->key() == Qt::Key_Home) {
scrollToTop();
}
else if(event->key() == Qt::Key_End) {
scrollToBottom();
}
else {
QTableView::keyPressEvent(event);
}
}
int NavigableTableView::sizeHintForRow(int row) const {
if (!model())
return -1;
ensurePolished();
int left = qMax(0, horizontalHeader()->visualIndexAt(0));
int right = horizontalHeader()->visualIndexAt(viewport()->width());
if (right < 0) right = model()->columnCount();
int hint = 0;
for (int column = left; column <= right; ++column) {
if (horizontalHeader()->isSectionHidden(column))
continue;
QModelIndex index = model()->index(row, column);
hint = qMax(hint, itemDelegate(index)->sizeHint(viewOptions(), index).height());
}
return hint;
}
int NavigableTableView::sizeHintForColumn(int col) const {
if (!model())
return -1;
ensurePolished();
int top = qMax(0, verticalHeader()->visualIndexAt(0));
int bottom = verticalHeader()->visualIndexAt(viewport()->height());
int hint = 0;
if (bottom == -1 || (bottom+10) >= model()->rowCount()) {
bottom = model()->rowCount() - 1;
}
else {
bottom += 10;
}
for (int row = top; row <= bottom; ++row) {
QModelIndex index = model()->index(row, col);
hint = qMax(hint, itemDelegate(index)->sizeHint(viewOptions(), index).width());
}
return hint;
}
void NavigableTableView::paintEvent(QPaintEvent * event) {
resizeTableRows();
QTableView::paintEvent(event);
}
void NavigableTableView::resizeTableRows() {
if (!model())
return;
int top = qMax(0, verticalHeader()->visualIndexAt(0));
int bottom = verticalHeader()->visualIndexAt(viewport()->height());
if (bottom == -1 || (bottom+10) >= model()->rowCount()) {
bottom = model()->rowCount() - 1;
}
else {
bottom += 10;
}
int left = qMax(0, horizontalHeader()->visualIndexAt(0));
int right = horizontalHeader()->visualIndexAt(viewport()->width());
if (right < 0) right = model()->columnCount();
for (int i = top ; i <= bottom ; ++i)
resizeRowToContents(i);
for (int i = left ; i <= right ; ++i)
resizeColumnToContents(i);
}
|