From 7b6ace6466cf349a4ce7a080d5e978aa0a7043e2 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Tue, 24 Feb 2009 08:09:35 +0000 Subject: After renaming an item the view should be scrolled in a way to still have a fully visible renamed item. The implementation required a lot of more code changes as such a fix should require: QAbstractItemView::scrollTo() cannot be used directly (inconsistent default behavior in QListView and QTreeView, a special case for the column view), so the communication has to be done with the DolphinController... BUG: 185191 svn path=/trunk/KDE/kdebase/apps/; revision=930754 --- src/dolphincolumnview.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/dolphincolumnview.cpp') diff --git a/src/dolphincolumnview.cpp b/src/dolphincolumnview.cpp index 4d180442b..16d72c0f0 100644 --- a/src/dolphincolumnview.cpp +++ b/src/dolphincolumnview.cpp @@ -59,6 +59,8 @@ DolphinColumnView::DolphinColumnView(QWidget* parent, DolphinController* control this, SLOT(setZoomLevel(int))); connect(controller, SIGNAL(activationChanged(bool)), this, SLOT(updateColumnsBackground(bool))); + connect(controller, SIGNAL(scrollToCurrentItem()), + this, SLOT(scrollToCurrentItem())); const DolphinView* view = controller->dolphinView(); connect(view, SIGNAL(sortingChanged(DolphinView::Sorting)), @@ -465,6 +467,12 @@ void DolphinColumnView::slotShowPreviewChanged() } } +void DolphinColumnView::scrollToCurrentItem() +{ + const QModelIndex activeIndex = activeColumn()->currentIndex(); + activeColumn()->scrollTo(activeIndex); +} + void DolphinColumnView::setActiveColumnIndex(int index) { if (m_index == index) { -- cgit v1.3