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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/*
SPDX-License-Identifier: LGPL-2.0-only
*/
#include "focusedtreeview.h"
#include <QResizeEvent>
#include <QScrollBar>
#include <QTimer>
namespace KDevelop {
class FocusedTreeViewPrivate
{
public:
bool autoScrollAtEnd = false;
QTimer timer;
bool wasAtEnd = false;
int insertedBegin = -1;
int insertedEnd = -1;
};
FocusedTreeView::FocusedTreeView(QWidget* parent)
: QTreeView(parent)
, d_ptr(new FocusedTreeViewPrivate)
{
Q_D(FocusedTreeView);
setVerticalScrollMode(ScrollPerItem);
d->timer.setInterval(200);
d->timer.setSingleShot(true);
connect(&d->timer, &QTimer::timeout, this, &FocusedTreeView::delayedAutoScrollAndResize);
connect(verticalScrollBar(), &QScrollBar::valueChanged,
&d->timer, QOverload<>::of(&QTimer::start));
}
FocusedTreeView::~FocusedTreeView()
{
}
void FocusedTreeView::setModel(QAbstractItemModel* newModel)
{
if (QAbstractItemModel* oldModel = model()) {
disconnect(oldModel, nullptr, this, nullptr);
}
QTreeView::setModel(newModel);
if (newModel) {
connect(newModel, &QAbstractItemModel::rowsAboutToBeInserted, this, &FocusedTreeView::rowsAboutToBeInserted);
connect(newModel, &QAbstractItemModel::rowsRemoved, this, &FocusedTreeView::rowsRemoved);
}
}
void FocusedTreeView::setAutoScrollAtEnd(bool enable)
{
Q_D(FocusedTreeView);
d->autoScrollAtEnd = enable;
}
int FocusedTreeView::sizeHintForColumn(int column) const
{
QModelIndex i = indexAt(QPoint(0, 0));
if (i.isValid()) {
QSize hint = sizeHintForIndex(i);
int maxWidth = hint.width();
if (hint.height()) {
//Also consider one item above, because else we can get problems with
//the vertical scroll-bar
for (int a = -1; a < (height() / hint.height()) + 1; ++a) {
QModelIndex current = i.sibling(i.row() + a, column);
QSize tempHint = sizeHintForIndex(current);
if (tempHint.width() > maxWidth)
maxWidth = tempHint.width();
}
}
return maxWidth;
}
return columnWidth(column);
}
void FocusedTreeView::fitColumns()
{
if (!model()) {
return;
}
for (int c = 0, columnCount = model()->columnCount(); c < columnCount; ++c) {
resizeColumnToContents(c);
}
}
void FocusedTreeView::resizeEvent(QResizeEvent* event)
{
QTreeView::resizeEvent(event);
// Rewrap lines when the width changes.
if (wordWrap() && event->size().width() != event->oldSize().width()) {
// fitColumns() calls resizeColumnToContents(), which executes items layout
// scheduled here (QTreeView::setWordWrap() also schedules items layout).
// Redoing the items layout is necessary for correct rewrapping, but causes a roughly
// 5-second-long UI freeze inside QItemDelegate::sizeHint() when the user selects
// a 100'000th line of output. The freeze happens because non-uniform row heights (necessary
// for word-wrapping) force QTreeView to calculate heights of all items above the selected one.
// The number of consecutive resize events does not affect the duration of the resulting UI freeze.
scheduleDelayedItemsLayout();
// Resizing columns to contents here rewraps lines immediately rather than only after subsequent vertical
// scrolling. This is relatively fast and does not noticeably contribute to the UI freeze duration.
fitColumns();
}
}
void FocusedTreeView::delayedAutoScrollAndResize()
{
Q_D(FocusedTreeView);
if (!model()) {
// might happen on shutdown
return;
}
if (d->autoScrollAtEnd && d->insertedBegin != -1 && d->wasAtEnd && d->insertedEnd == model()->rowCount()) {
scrollToBottom();
}
for (int a = 0; a < model()->columnCount(); ++a)
resizeColumnToContents(a);
d->insertedBegin = -1;
// Timer is single-shot, but the code above may have recursively restarted the timer
// (e.g. via the connection from the scroll-bar signal), so explicitly prevent a redundant
// call here.
d->timer.stop();
}
void FocusedTreeView::rowsAboutToBeInserted(const QModelIndex&, int first, int last)
{
Q_D(FocusedTreeView);
if (d->insertedBegin == -1) {
d->insertedBegin = d->insertedEnd = first;
d->wasAtEnd = true;
QModelIndex last = model()->index(model()->rowCount() - 1, 0);
if (last.isValid()) {
auto rect = visualRect(last);
d->wasAtEnd = rect.isValid() && viewport()->rect().intersects(rect);
}
}
if (first == d->insertedEnd) {
d->insertedEnd = last + 1;
}
if (!d->timer.isActive())
d->timer.start();
}
// Removing rows can make longer rows move into the visible region, so we also must trigger a
// column resize
void FocusedTreeView::rowsRemoved(const QModelIndex& parent, int first, int last)
{
Q_D(FocusedTreeView);
QTreeView::rowsRemoved(parent, first, last);
if (!d->timer.isActive())
d->timer.start();
}
}
#include "moc_focusedtreeview.cpp"
|