kde-extraapps/ark/part/archivemodel.h

127 lines
4.8 KiB
C
Raw Normal View History

2014-11-18 17:46:34 +00:00
/*
* ark -- archiver for the KDE project
*
* Copyright (C) 2007 Henrique Pinto <henrique.pinto@kdemail.net>
* Copyright (C) 2008-2009 Harald Hvaal <haraldhv@stud.ntnu.no>
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef ARCHIVEMODEL_H
#define ARCHIVEMODEL_H
#include <QAbstractItemModel>
#include <QScopedPointer>
#include <kjobtrackerinterface.h>
#include "kerfuffle/archive.h"
using Kerfuffle::ArchiveEntry;
namespace Kerfuffle
{
class Query;
}
class ArchiveNode;
class ArchiveDirNode;
class ArchiveModel: public QAbstractItemModel
{
Q_OBJECT
public:
ArchiveModel(const QString &dbusPathName, QObject *parent = 0);
~ArchiveModel();
QVariant data(const QModelIndex &index, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const;
QModelIndex index(int row, int column,
const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &index) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
//drag and drop related
virtual Qt::DropActions supportedDropActions() const;
virtual QStringList mimeTypes() const;
virtual QMimeData * mimeData(const QModelIndexList & indexes) const;
virtual bool dropMimeData(const QMimeData * data, Qt::DropAction action, int row, int column, const QModelIndex & parent);
KJob* setArchive(Kerfuffle::Archive *archive);
Kerfuffle::Archive *archive() const;
Kerfuffle::ArchiveEntry entryForIndex(const QModelIndex &index);
int childCount(const QModelIndex &index, int &dirs, int &files) const;
Kerfuffle::ExtractJob* extractFile(const QVariant& fileName, const QString & destinationDir, const Kerfuffle::ExtractionOptions options = Kerfuffle::ExtractionOptions()) const;
Kerfuffle::ExtractJob* extractFiles(const QList<QVariant>& files, const QString & destinationDir, const Kerfuffle::ExtractionOptions options = Kerfuffle::ExtractionOptions()) const;
Kerfuffle::AddJob* addFiles(const QStringList & paths, const Kerfuffle::CompressionOptions& options = Kerfuffle::CompressionOptions());
Kerfuffle::DeleteJob* deleteFiles(const QList<QVariant> & files);
signals:
void loadingStarted();
void loadingFinished(KJob *);
void extractionFinished(bool success);
void error(const QString& error, const QString& details);
void droppedFiles(const QStringList& files, const QString& path = QString());
private slots:
void slotNewEntryFromSetArchive(const ArchiveEntry& entry);
void slotNewEntry(const ArchiveEntry& entry);
void slotLoadingFinished(KJob *job);
void slotEntryRemoved(const QString & path);
void slotUserQuery(Kerfuffle::Query *query);
void slotCleanupEmptyDirs();
private:
/**
* Strips file names that start with './'.
*
* For more information, see bug 194241.
*
* @param fileName The file name that will be stripped.
*
* @return @p fileName without the leading './'
*/
QString cleanFileName(const QString& fileName);
ArchiveDirNode* parentFor(const Kerfuffle::ArchiveEntry& entry);
QModelIndex indexForNode(ArchiveNode *node);
static bool compareAscending(const QModelIndex& a, const QModelIndex& b);
static bool compareDescending(const QModelIndex& a, const QModelIndex& b);
/**
* Insert the node @p node into the model, ensuring all views are notified
* of the change.
*/
enum InsertBehaviour { NotifyViews, DoNotNotifyViews };
void insertNode(ArchiveNode *node, InsertBehaviour behaviour = NotifyViews);
void newEntry(const Kerfuffle::ArchiveEntry& entry, InsertBehaviour behaviour);
QList<Kerfuffle::ArchiveEntry> m_newArchiveEntries; // holds entries from opening a new archive until it's totally open
QList<int> m_showColumns;
QScopedPointer<Kerfuffle::Archive> m_archive;
ArchiveDirNode *m_rootNode;
QString m_dbusPathName;
};
#endif // ARCHIVEMODEL_H