mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
prevent flickering when zooming in or zooming out
svn path=/trunk/KDE/kdebase/apps/; revision=782795
This commit is contained in:
parent
80ad31f00a
commit
f4e6647cdc
3 changed files with 68 additions and 35 deletions
|
@ -397,13 +397,13 @@ QPoint DolphinView::contentsPosition() const
|
|||
void DolphinView::zoomIn()
|
||||
{
|
||||
m_controller->triggerZoomIn();
|
||||
reload();
|
||||
m_iconManager->updatePreviews();
|
||||
}
|
||||
|
||||
void DolphinView::zoomOut()
|
||||
{
|
||||
m_controller->triggerZoomOut();
|
||||
reload();
|
||||
m_iconManager->updatePreviews();
|
||||
}
|
||||
|
||||
bool DolphinView::isZoomInPossible() const
|
||||
|
|
|
@ -56,11 +56,7 @@ IconManager::IconManager(QAbstractItemView* parent, DolphinSortFilterProxyModel*
|
|||
|
||||
IconManager::~IconManager()
|
||||
{
|
||||
foreach (KJob* job, m_previewJobs) {
|
||||
Q_ASSERT(job != 0);
|
||||
job->kill();
|
||||
}
|
||||
m_previewJobs.clear();
|
||||
killJobs();
|
||||
}
|
||||
|
||||
|
||||
|
@ -73,6 +69,25 @@ void IconManager::setShowPreview(bool show)
|
|||
}
|
||||
}
|
||||
|
||||
void IconManager::updatePreviews()
|
||||
{
|
||||
if (!m_showPreview) {
|
||||
return;
|
||||
}
|
||||
|
||||
killJobs();
|
||||
KFileItemList itemList;
|
||||
|
||||
const int rowCount = m_dolphinModel->rowCount();
|
||||
for (int row = 0; row < rowCount; ++row) {
|
||||
const QModelIndex index = m_dolphinModel->index(row, 0);
|
||||
KFileItem item = m_dolphinModel->itemForIndex(index);
|
||||
itemList.append(item);
|
||||
}
|
||||
|
||||
generatePreviews(itemList);
|
||||
}
|
||||
|
||||
void IconManager::updateIcons(const KFileItemList& items)
|
||||
{
|
||||
// make the icons of all hidden files semitransparent
|
||||
|
@ -82,35 +97,9 @@ void IconManager::updateIcons(const KFileItemList& items)
|
|||
}
|
||||
}
|
||||
|
||||
if (!m_showPreview) {
|
||||
return;
|
||||
if (m_showPreview) {
|
||||
generatePreviews(items);
|
||||
}
|
||||
|
||||
// generate previews
|
||||
const QRect visibleArea = m_view->viewport()->rect();
|
||||
|
||||
// Order the items in a way that the preview for the visible items
|
||||
// is generated first, as this improves the feeled performance a lot.
|
||||
KFileItemList orderedItems;
|
||||
foreach (KFileItem item, items) {
|
||||
const QModelIndex dirIndex = m_dolphinModel->indexForItem(item);
|
||||
const QModelIndex proxyIndex = m_proxyModel->mapFromSource(dirIndex);
|
||||
const QRect itemRect = m_view->visualRect(proxyIndex);
|
||||
if (itemRect.intersects(visibleArea)) {
|
||||
orderedItems.insert(0, item);
|
||||
} else {
|
||||
orderedItems.append(item);
|
||||
}
|
||||
}
|
||||
|
||||
const QSize size = m_view->iconSize();
|
||||
KIO::PreviewJob* job = KIO::filePreview(orderedItems, 128, 128);
|
||||
connect(job, SIGNAL(gotPreview(const KFileItem&, const QPixmap&)),
|
||||
this, SLOT(replaceIcon(const KFileItem&, const QPixmap&)));
|
||||
connect(job, SIGNAL(finished(KJob*)),
|
||||
this, SLOT(slotPreviewJobFinished(KJob*)));
|
||||
|
||||
m_previewJobs.append(job);
|
||||
}
|
||||
|
||||
void IconManager::replaceIcon(const KFileItem& item, const QPixmap& pixmap)
|
||||
|
@ -190,6 +179,35 @@ void IconManager::updateCutItems()
|
|||
applyCutItemEffect();
|
||||
}
|
||||
|
||||
void IconManager::generatePreviews(const KFileItemList &items)
|
||||
{
|
||||
Q_ASSERT(m_showPreview);
|
||||
const QRect visibleArea = m_view->viewport()->rect();
|
||||
|
||||
// Order the items in a way that the preview for the visible items
|
||||
// is generated first, as this improves the feeled performance a lot.
|
||||
KFileItemList orderedItems;
|
||||
foreach (KFileItem item, items) {
|
||||
const QModelIndex dirIndex = m_dolphinModel->indexForItem(item);
|
||||
const QModelIndex proxyIndex = m_proxyModel->mapFromSource(dirIndex);
|
||||
const QRect itemRect = m_view->visualRect(proxyIndex);
|
||||
if (itemRect.intersects(visibleArea)) {
|
||||
orderedItems.insert(0, item);
|
||||
} else {
|
||||
orderedItems.append(item);
|
||||
}
|
||||
}
|
||||
|
||||
const QSize size = m_view->iconSize();
|
||||
KIO::PreviewJob* job = KIO::filePreview(orderedItems, 128, 128);
|
||||
connect(job, SIGNAL(gotPreview(const KFileItem&, const QPixmap&)),
|
||||
this, SLOT(replaceIcon(const KFileItem&, const QPixmap&)));
|
||||
connect(job, SIGNAL(finished(KJob*)),
|
||||
this, SLOT(slotPreviewJobFinished(KJob*)));
|
||||
|
||||
m_previewJobs.append(job);
|
||||
}
|
||||
|
||||
bool IconManager::isCutItem(const KFileItem& item) const
|
||||
{
|
||||
const QMimeData* mimeData = QApplication::clipboard()->mimeData();
|
||||
|
@ -323,4 +341,13 @@ void IconManager::limitToSize(QPixmap& icon, const QSize& maxSize)
|
|||
}
|
||||
}
|
||||
|
||||
void IconManager::killJobs()
|
||||
{
|
||||
foreach (KJob* job, m_previewJobs) {
|
||||
Q_ASSERT(job != 0);
|
||||
job->kill();
|
||||
}
|
||||
m_previewJobs.clear();
|
||||
}
|
||||
|
||||
#include "iconmanager.moc"
|
||||
|
|
|
@ -48,6 +48,7 @@ public:
|
|||
virtual ~IconManager();
|
||||
void setShowPreview(bool show);
|
||||
bool showPreview() const;
|
||||
void updatePreviews();
|
||||
|
||||
private slots:
|
||||
/**
|
||||
|
@ -73,6 +74,8 @@ private slots:
|
|||
void updateCutItems();
|
||||
|
||||
private:
|
||||
void generatePreviews(const KFileItemList &items);
|
||||
|
||||
/**
|
||||
* Returns true, if the item \a item has been cut into
|
||||
* the clipboard.
|
||||
|
@ -98,6 +101,9 @@ private:
|
|||
*/
|
||||
void limitToSize(QPixmap& icon, const QSize& maxSize);
|
||||
|
||||
/** Kills all ongoing preview jobs. */
|
||||
void killJobs();
|
||||
|
||||
private:
|
||||
/**
|
||||
* Remembers the original pixmap for an item before
|
||||
|
|
Loading…
Reference in a new issue