mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-28 19:28:38 +00:00
808aa2a621
svn path=/trunk/KDE/kdegraphics/okular/; revision=686269
130 lines
4.2 KiB
C++
130 lines
4.2 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2006 by Albert Astals Cid <aacid@kde.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#include "embeddedfilesdialog.h"
|
|
|
|
#include <QAction>
|
|
#include <QCursor>
|
|
#include <QDateTime>
|
|
#include <QMenu>
|
|
#include <QTreeWidget>
|
|
|
|
#include <kfiledialog.h>
|
|
#include <kglobal.h>
|
|
#include <kicon.h>
|
|
#include <klocale.h>
|
|
#include <kmessagebox.h>
|
|
#include <kmimetype.h>
|
|
|
|
#include "core/document.h"
|
|
|
|
static QString dateToString( const QDateTime & date )
|
|
{
|
|
return date.isValid()
|
|
? KGlobal::locale()->formatDateTime( date, KLocale::LongDate, true )
|
|
: i18nc( "Unknown date", "Unknown" );
|
|
}
|
|
|
|
EmbeddedFilesDialog::EmbeddedFilesDialog(QWidget *parent, const Okular::Document *document) : KDialog(parent)
|
|
{
|
|
setCaption(i18n("Embedded Files"));
|
|
setButtons(Close | User1);
|
|
setDefaultButton(Close);
|
|
setButtonGuiItem(User1, KStandardGuiItem::save());
|
|
|
|
m_tw = new QTreeWidget(this);
|
|
setMainWidget(m_tw);
|
|
QStringList header;
|
|
header.append(i18n("Name"));
|
|
header.append(i18n("Description"));
|
|
header.append(i18n("Size"));
|
|
header.append(i18n("Created"));
|
|
header.append(i18n("Modified"));
|
|
m_tw->setHeaderLabels(header);
|
|
m_tw->setRootIsDecorated(false);
|
|
m_tw->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
m_tw->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
foreach(Okular::EmbeddedFile* ef, *document->embeddedFiles())
|
|
{
|
|
QTreeWidgetItem *twi = new QTreeWidgetItem();
|
|
twi->setText(0, ef->name());
|
|
KMimeType::Ptr mime = KMimeType::findByPath( ef->name(), 0, true );
|
|
if (mime)
|
|
{
|
|
twi->setIcon(0, KIcon(mime->iconName()));
|
|
}
|
|
twi->setText(1, ef->description());
|
|
twi->setText(2, ef->size() <= 0 ? i18nc("Not available size", "N/A") : KGlobal::locale()->formatByteSize(ef->size()));
|
|
twi->setText(3, dateToString( ef->creationDate() ) );
|
|
twi->setText(4, dateToString( ef->modificationDate() ) );
|
|
m_tw->addTopLevelItem(twi);
|
|
m_files.insert(twi, ef);
|
|
}
|
|
// Having filled the columns, it is nice to resize them to be able to read the contents
|
|
for (int lv = 0; lv < m_tw->columnCount(); ++lv) {
|
|
m_tw->resizeColumnToContents(lv);
|
|
}
|
|
// This is a bit dubious, but I'm not seeing a nice way to say "expand to fit contents"
|
|
m_tw->setMinimumWidth(640);
|
|
m_tw->updateGeometry();
|
|
|
|
connect(this, SIGNAL(user1Clicked()), this, SLOT(saveFile()));
|
|
connect(m_tw, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(attachViewContextMenu(QPoint)));
|
|
}
|
|
|
|
void EmbeddedFilesDialog::saveFile()
|
|
{
|
|
QList<QTreeWidgetItem *> selected = m_tw->selectedItems();
|
|
foreach(QTreeWidgetItem *twi, selected)
|
|
{
|
|
Okular::EmbeddedFile* ef = m_files[twi];
|
|
saveFile(ef);
|
|
}
|
|
}
|
|
|
|
void EmbeddedFilesDialog::attachViewContextMenu( const QPoint& /*pos*/ )
|
|
{
|
|
QList<QTreeWidgetItem *> selected = m_tw->selectedItems();
|
|
if ( selected.isEmpty() )
|
|
return;
|
|
|
|
if ( selected.size() > 1 )
|
|
return;
|
|
|
|
QMenu menu( this );
|
|
QAction* saveAsAct = menu.addAction( KIcon( "document-save-as" ), i18n( "Save As..." ) );
|
|
|
|
QAction* act = menu.exec( QCursor::pos() );
|
|
if ( !act )
|
|
return;
|
|
|
|
if ( act == saveAsAct )
|
|
{
|
|
Okular::EmbeddedFile* ef = m_files[selected.at(0)];
|
|
saveFile( ef );
|
|
}
|
|
}
|
|
|
|
void EmbeddedFilesDialog::saveFile( Okular::EmbeddedFile* ef )
|
|
{
|
|
QString path = KFileDialog::getSaveFileName( ef->name(), QString(), this, i18n( "Where do you want to save %1?", ef->name() ) );
|
|
if ( path.isEmpty() )
|
|
return;
|
|
|
|
QFile f(path);
|
|
if ( !f.exists() || KMessageBox::warningContinueCancel( this, i18n( "A file named \"%1\" already exists. Are you sure you want to overwrite it?", path ), QString(), KGuiItem( i18n( "Overwrite" ) ) ) == KMessageBox::Continue )
|
|
{
|
|
f.open( QIODevice::WriteOnly );
|
|
f.write( ef->data() );
|
|
f.close();
|
|
}
|
|
}
|
|
|
|
#include "embeddedfilesdialog.moc"
|