mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 10:22:52 +00:00
136 lines
4.3 KiB
C++
136 lines
4.3 KiB
C++
/*
|
|
* ark -- archiver for the KDE project
|
|
*
|
|
* Copyright (C) 2008 Harald Hvaal <haraldhv@stud.ntnu.no>
|
|
* Copyright (C) 2009,2011 Raphael Kubo da Costa <rakuco@FreeBSD.org>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ( INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "adddialog.h"
|
|
#include "ui_adddialog.h"
|
|
#include "kerfuffle/archive.h"
|
|
|
|
#include <KConfigGroup>
|
|
#include <KFilePlacesModel>
|
|
#include <KGlobal>
|
|
#include <KLocale>
|
|
#include <kio/global.h>
|
|
|
|
#include <QFileInfo>
|
|
#include <QStandardItemModel>
|
|
|
|
namespace Kerfuffle
|
|
{
|
|
class AddDialogUI: public QWidget, public Ui::AddDialog
|
|
{
|
|
public:
|
|
AddDialogUI(QWidget *parent = 0)
|
|
: QWidget(parent) {
|
|
setupUi(this);
|
|
}
|
|
};
|
|
|
|
AddDialog::AddDialog(const QStringList& itemsToAdd,
|
|
const KUrl & startDir,
|
|
const QString & filter,
|
|
QWidget * parent,
|
|
QWidget * widget
|
|
)
|
|
: KFileDialog(startDir, filter, parent, widget)
|
|
{
|
|
setOperationMode(KFileDialog::Saving);
|
|
setMode(KFile::File | KFile::LocalOnly);
|
|
setConfirmOverwrite(true);
|
|
setCaption(i18n("Compress to Archive"));
|
|
|
|
loadConfiguration();
|
|
|
|
connect(this, SIGNAL(okClicked()), SLOT(updateDefaultMimeType()));
|
|
|
|
m_ui = new AddDialogUI(this);
|
|
mainWidget()->layout()->addWidget(m_ui);
|
|
|
|
setupIconList(itemsToAdd);
|
|
|
|
// Set up a default name if there's only one file to compress
|
|
if (itemsToAdd.size() == 1) {
|
|
const QFileInfo fileInfo(itemsToAdd.first());
|
|
const QString fileName =
|
|
fileInfo.isDir() ? fileInfo.dir().dirName() : fileInfo.fileName();
|
|
|
|
// #272914: Add an extension when it is present, otherwise KFileDialog
|
|
// will not automatically add it as baseFileName is a file which
|
|
// already exists.
|
|
setSelection(fileName + currentFilterMimeType()->mainExtension());
|
|
}
|
|
|
|
//These extra options will be implemented in a 4.2+ version of
|
|
//ark
|
|
m_ui->groupExtraOptions->hide();
|
|
}
|
|
|
|
void AddDialog::loadConfiguration()
|
|
{
|
|
m_config = KConfigGroup(KGlobal::config()->group("AddDialog"));
|
|
|
|
const QString defaultMimeType = QLatin1String( "application/x-compressed-tar" );
|
|
const QStringList writeMimeTypes = Kerfuffle::supportedWriteMimeTypes();
|
|
const QString lastMimeType = m_config.readEntry("LastMimeType", defaultMimeType);
|
|
|
|
if (writeMimeTypes.contains(lastMimeType)) {
|
|
setMimeFilter(writeMimeTypes, lastMimeType);
|
|
} else {
|
|
setMimeFilter(writeMimeTypes, defaultMimeType);
|
|
}
|
|
}
|
|
|
|
void AddDialog::setupIconList(const QStringList& itemsToAdd)
|
|
{
|
|
QStandardItemModel* listModel = new QStandardItemModel(this);
|
|
QStringList sortedList(itemsToAdd);
|
|
|
|
sortedList.sort();
|
|
|
|
Q_FOREACH(const QString& urlString, sortedList) {
|
|
KUrl url(urlString);
|
|
|
|
QStandardItem* item = new QStandardItem;
|
|
item->setText(url.fileName());
|
|
|
|
item->setIcon(KIcon(KIO::pixmapForUrl(url)));
|
|
|
|
item->setData(QVariant(url), KFilePlacesModel::UrlRole);
|
|
|
|
listModel->appendRow(item);
|
|
}
|
|
|
|
m_ui->compressList->setModel(listModel);
|
|
}
|
|
|
|
void AddDialog::updateDefaultMimeType()
|
|
{
|
|
m_config.writeEntry("LastMimeType", currentMimeFilter());
|
|
}
|
|
}
|
|
|
|
#include "moc_adddialog.cpp"
|