#include "dolphinfileitemdelegate.h"
#include "dolphinsettings.h"
#include "dolphinsortfilterproxymodel.h"
+#include "dolphinviewautoscroller.h"
#include "draganddrophelper.h"
#include "selectionmanager.h"
#include "viewproperties.h"
setEditTriggers(QAbstractItemView::NoEditTriggers);
setMouseTracking(true);
+ new DolphinViewAutoScroller(this);
const ViewProperties props(controller->url());
setSortIndicatorSection(props.sorting());
hideColumn(DolphinModel::Rating);
hideColumn(DolphinModel::Tags);
- } else if (event->type() == QEvent::UpdateRequest) {
- // a wheel movement will scroll 4 items
- if (model()->rowCount() > 0) {
- verticalScrollBar()->setSingleStep((sizeHintForRow(0) / 3) * 4);
- }
}
return QTreeView::event(event);
event->ignore();
return;
}
-
+
+ const int height = m_decorationSize.height();
+ const int step = (height >= KIconLoader::SizeHuge) ? height / 10 : (KIconLoader::SizeHuge - height) / 2;
+ verticalScrollBar()->setSingleStep(step);
QTreeView::wheelEvent(event);
}