1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
20 #include "infosidebarpage.h"
22 #include <config-nepomuk.h>
24 #include <kfileplacesmodel.h>
26 #include <kstandarddirs.h>
27 #include <kio/previewjob.h>
28 #include <kfileitem.h>
30 #include <kglobalsettings.h>
31 #include <kfilemetainfo.h>
33 #include <kseparator.h>
34 #include <kiconloader.h>
37 #include <QInputDialog>
40 #include <QResizeEvent>
42 #include <QVBoxLayout>
44 #include "dolphinsettings.h"
45 #include "metadatawidget.h"
46 #include "pixmapviewer.h"
48 InfoSidebarPage::InfoSidebarPage(QWidget
* parent
) :
50 m_pendingPreview(false),
59 const int spacing
= KDialog::spacingHint();
61 m_timer
= new QTimer(this);
62 m_timer
->setSingleShot(true);
63 connect(m_timer
, SIGNAL(timeout()),
64 this, SLOT(slotTimeout()));
66 QVBoxLayout
* layout
= new QVBoxLayout
;
67 layout
->setSpacing(spacing
);
70 m_preview
= new PixmapViewer(this);
71 m_preview
->setMinimumWidth(KIconLoader::SizeEnormous
);
72 m_preview
->setFixedHeight(KIconLoader::SizeEnormous
);
75 m_nameLabel
= new QLabel(this);
76 m_nameLabel
->setTextFormat(Qt::RichText
);
77 m_nameLabel
->setAlignment(m_nameLabel
->alignment() | Qt::AlignHCenter
);
78 m_nameLabel
->setWordWrap(true);
80 // general information
81 m_infoLabel
= new QLabel(this);
82 m_infoLabel
->setSizePolicy(QSizePolicy::Minimum
, QSizePolicy::Minimum
);
83 m_infoLabel
->setTextFormat(Qt::RichText
);
84 m_infoLabel
->setWordWrap(true);
85 m_infoLabel
->setFont(KGlobalSettings::smallestReadableFont());
87 if (MetaDataWidget::metaDataAvailable()) {
88 m_metadataWidget
= new MetaDataWidget(this);
91 layout
->addItem(new QSpacerItem(spacing
, spacing
, QSizePolicy::Preferred
, QSizePolicy::Fixed
));
92 layout
->addWidget(m_preview
);
93 layout
->addWidget(m_nameLabel
);
94 layout
->addWidget(new KSeparator(this));
95 layout
->addWidget(m_infoLabel
);
96 if (m_metadataWidget
!= 0) {
97 layout
->addWidget(new KSeparator(this));
98 layout
->addWidget(m_metadataWidget
);
100 // ensure that widgets in the information side bar are aligned towards the top
101 layout
->addStretch(1);
105 InfoSidebarPage::~InfoSidebarPage()
109 QSize
InfoSidebarPage::sizeHint() const
111 QSize size
= SidebarPage::sizeHint();
112 size
.setWidth(minimumSizeHint().width());
116 void InfoSidebarPage::setUrl(const KUrl
& url
)
118 if (url
.isValid() && !m_shownUrl
.equals(url
, KUrl::CompareWithoutTrailingSlash
)) {
125 void InfoSidebarPage::setSelection(const KFileItemList
& selection
)
127 SidebarPage::setSelection(selection
);
128 if (selection
.size() == 1) {
129 const KUrl url
= selection
.first().url();
130 if (!url
.isEmpty()) {
131 m_urlCandidate
= url
;
134 m_timer
->start(TimerDelay
);
137 void InfoSidebarPage::requestDelayedItemInfo(const KFileItem
& item
)
141 m_fileItem
= KFileItem();
143 if (!item
.isNull() && (selection().size() <= 1)) {
144 const KUrl url
= item
.url();
145 if (!url
.isEmpty()) {
146 m_urlCandidate
= url
;
148 m_timer
->start(TimerDelay
);
153 void InfoSidebarPage::showEvent(QShowEvent
* event
)
155 SidebarPage::showEvent(event
);
156 if (event
->spontaneous()) {
162 void InfoSidebarPage::resizeEvent(QResizeEvent
* event
)
164 // If the text inside the name label or the info label cannot
165 // get wrapped, then the maximum width of the label is increased
166 // so that the width of the information sidebar gets increased.
167 // To prevent this, the maximum width is adjusted to
168 // the current width of the sidebar.
169 const int maxWidth
= event
->size().width() - KDialog::spacingHint() * 4;
170 m_nameLabel
->setMaximumWidth(maxWidth
);
171 m_infoLabel
->setMaximumWidth(maxWidth
);
172 SidebarPage::resizeEvent(event
);
175 void InfoSidebarPage::showItemInfo()
183 const KFileItemList
& selectedItems
= selection();
186 if (selectedItems
.isEmpty()) {
189 file
= selectedItems
[0].url();
191 if (!file
.isValid()) {
194 const int itemCount
= selectedItems
.count();
196 KIconLoader iconLoader
;
197 QPixmap icon
= iconLoader
.loadIcon("system-run",
198 KIconLoader::NoGroup
,
199 KIconLoader::SizeEnormous
);
200 m_preview
->setPixmap(icon
);
201 m_nameLabel
->setText(i18ncp("@info", "%1 item selected", "%1 items selected", selectedItems
.count()));
202 } else if (!applyPlace(file
)) {
203 // try to get a preview pixmap from the item...
207 m_pendingPreview
= true;
208 m_preview
->setPixmap(QPixmap());
210 KIO::PreviewJob
* job
= KIO::filePreview(list
,
212 KIconLoader::SizeEnormous
,
217 job
->setIgnoreMaximumSize(true);
219 connect(job
, SIGNAL(gotPreview(const KFileItem
&, const QPixmap
&)),
220 this, SLOT(showPreview(const KFileItem
&, const QPixmap
&)));
221 connect(job
, SIGNAL(failed(const KFileItem
&)),
222 this, SLOT(showIcon(const KFileItem
&)));
225 text
.append(file
.fileName());
227 m_nameLabel
->setText(text
);
233 void InfoSidebarPage::slotTimeout()
235 m_shownUrl
= m_urlCandidate
;
239 void InfoSidebarPage::showIcon(const KFileItem
& item
)
241 m_pendingPreview
= false;
242 if (!applyPlace(item
.url())) {
243 m_preview
->setPixmap(item
.pixmap(KIconLoader::SizeEnormous
));
247 void InfoSidebarPage::showPreview(const KFileItem
& item
,
248 const QPixmap
& pixmap
)
251 if (m_pendingPreview
) {
252 m_preview
->setPixmap(pixmap
);
253 m_pendingPreview
= false;
257 bool InfoSidebarPage::applyPlace(const KUrl
& url
)
259 KFilePlacesModel
* placesModel
= DolphinSettings::instance().placesModel();
260 int count
= placesModel
->rowCount();
262 for (int i
= 0; i
< count
; ++i
) {
263 QModelIndex index
= placesModel
->index(i
, 0);
265 if (url
.equals(placesModel
->url(index
), KUrl::CompareWithoutTrailingSlash
)) {
267 text
.append(placesModel
->text(index
));
269 m_nameLabel
->setText(text
);
271 m_preview
->setPixmap(placesModel
->icon(index
).pixmap(128, 128));
279 void InfoSidebarPage::cancelRequest()
282 m_pendingPreview
= false;
285 void InfoSidebarPage::showMetaInfo()
289 const KFileItemList
& selectedItems
= selection();
290 if (selectedItems
.size() <= 1) {
292 if (m_fileItem
.isNull()) {
293 // no pending request is ongoing
294 fileItem
= KFileItem(KFileItem::Unknown
, KFileItem::Unknown
, m_shownUrl
);
297 fileItem
= m_fileItem
;
300 if (fileItem
.isDir()) {
301 addInfoLine(text
, i18nc("@label", "Type:"), i18nc("@label", "Folder"));
303 addInfoLine(text
, i18nc("@label", "Type:"), fileItem
.mimeComment());
305 addInfoLine(text
, i18nc("@label", "Size:"), KIO::convertSize(fileItem
.size()));
306 addInfoLine(text
, i18nc("@label", "Modified:"), fileItem
.timeString());
308 // TODO: See convertMetaInfo below, find a way to display only interesting information
310 const KFileMetaInfo::WhatFlags flags
= KFileMetaInfo::Fastest
|
311 KFileMetaInfo::TechnicalInfo
|
312 KFileMetaInfo::ContentInfo
|
313 KFileMetaInfo::Thumbnail
;
314 const QString path
= fileItem
.url().url();
315 const KFileMetaInfo
metaInfo(path
, QString(), flags
);
316 if (metaInfo
.isValid()) {
317 const QHash
<QString
, KFileMetaInfoItem
>& items
= metaInfo
.items();
318 QHash
<QString
, KFileMetaInfoItem
>::const_iterator it
= items
.constBegin();
319 const QHash
<QString
, KFileMetaInfoItem
>::const_iterator end
= items
.constEnd();
322 const KFileMetaInfoItem
& metaInfo
= it
.value();
323 const QVariant
& value
= metaInfo
.value();
324 if (value
.isValid() && convertMetaInfo(metaInfo
.name(), labelText
)) {
325 addInfoLine(text
, labelText
, value
.toString());
332 if (MetaDataWidget::metaDataAvailable()) {
333 m_metadataWidget
->setFile(fileItem
.url());
336 if (MetaDataWidget::metaDataAvailable()) {
338 foreach (const KFileItem
& item
, selectedItems
) {
339 urls
.append(item
.url());
341 m_metadataWidget
->setFiles(urls
);
344 unsigned long int totalSize
= 0;
345 foreach (const KFileItem
& item
, selectedItems
) {
346 // Only count the size of files, not dirs; to match what
347 // DolphinViewContainer::selectionStatusBarText does.
348 if (!item
.isDir() && !item
.isLink()) {
349 totalSize
+= item
.size();
352 addInfoLine(text
, i18nc("@label", "Total size:"), KIO::convertSize(totalSize
));
354 m_infoLabel
->setText(text
);
357 void InfoSidebarPage::addInfoLine(QString
& text
,
358 const QString
& labelText
,
359 const QString
& infoText
)
361 if (!text
.isEmpty()) {
364 text
+= QString("<b>%1</b> %2").arg(labelText
).arg(infoText
);
367 bool InfoSidebarPage::convertMetaInfo(const QString
& key
, QString
& text
) const
369 // TODO: This code prevents that interesting meta information might be hidden
370 // and only bypasses the current problem that not all the meta information should
371 // be shown to the user. Check whether it's possible with Nepomuk to show
372 // all "user relevant" information in a readable way...
379 // sorted list of keys, where its data should be shown
380 static const MetaKey keys
[] = {
381 { "audio.album", "Album:" },
382 { "audio.artist", "Artist:" },
383 { "audio.title", "Title:" },
386 // do a binary search for the key...
388 int bottom
= sizeof(keys
) / sizeof(MetaKey
) - 1;
389 while (top
<= bottom
) {
390 const int middle
= (top
+ bottom
) / 2;
391 const int result
= key
.compare(keys
[middle
].key
);
394 } else if (result
> 0) {
397 text
= keys
[middle
].text
;
405 #include "infosidebarpage.moc"