diff options
| author | Peter Penz <[email protected]> | 2011-01-18 19:56:18 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2011-01-18 19:56:18 +0000 |
| commit | 2fa1dce9772b556d85b875f6d7d4bf1b466e6dca (patch) | |
| tree | c50508602747a2971d5c8a82b1fe8dbcc738cf0d /src/panels/information | |
| parent | 4dd1ed179df79fa71be4a11f63bb81abb44cbae8 (diff) | |
Assure that the enabled plugins for previews are set for the Information Panel and the tooltips. This fixes the issue that a disabled thumbnail-plugin might be chosen. For 4.7 it should be considered to move this code into KIO::filePreview() as default already (will provide a patch on the reviewboard).
svn path=/trunk/KDE/kdebase/apps/; revision=1215459
Diffstat (limited to 'src/panels/information')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 20 | ||||
| -rw-r--r-- | src/panels/information/informationpanelcontent.h | 1 |
2 files changed, 13 insertions, 8 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index 591c47ff7..e09ccdf5c 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -63,7 +63,8 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) : m_phononWidget(0), m_nameLabel(0), m_metaDataWidget(0), - m_metaDataArea(0) + m_metaDataArea(0), + m_enabledPlugins() { parent->installEventFilter(this); @@ -173,13 +174,16 @@ void InformationPanelContent::showItem(const KFileItem& item) m_outdatedPreviewTimer->start(); } - KIO::PreviewJob* job = KIO::filePreview(KFileItemList() << item, - m_preview->width(), - m_preview->height(), - 0, - 0, - false, - true); + if (m_enabledPlugins.isEmpty()) { + const KConfigGroup globalConfig(KGlobal::config(), "PreviewSettings"); + m_enabledPlugins = globalConfig.readEntry("Plugins", QStringList() + << "directorythumbnail" + << "imagethumbnail" + << "jpegthumbnail"); + } + + KIO::PreviewJob* job = KIO::filePreview(KFileItemList() << item, m_preview->width(), m_preview->height(), + 0, 0, false, true, &m_enabledPlugins); connect(job, SIGNAL(gotPreview(const KFileItem&, const QPixmap&)), this, SLOT(showPreview(const KFileItem&, const QPixmap&))); diff --git a/src/panels/information/informationpanelcontent.h b/src/panels/information/informationpanelcontent.h index c41f4043f..f6182d2df 100644 --- a/src/panels/information/informationpanelcontent.h +++ b/src/panels/information/informationpanelcontent.h @@ -135,6 +135,7 @@ private: QLabel* m_nameLabel; KFileMetaDataWidget* m_metaDataWidget; QScrollArea* m_metaDataArea; + QStringList m_enabledPlugins; }; #endif // INFORMATIONPANELCONTENT_H |
