mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
/*
|
|
* Copyright (C) 2011,2012,2013 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
|
*/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef FOLDERCOMPRESSJOB_H
|
|
#define FOLDERCOMPRESSJOB_H
|
|
|
|
#include <KJob>
|
|
#include <KUrl>
|
|
|
|
class KTemporaryFile;
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
#include "transactions/kgpgencrypt.h"
|
|
|
|
class FolderCompressJobPrivate;
|
|
|
|
/**
|
|
* @brief Create an encrypted archive of the given folders
|
|
*
|
|
* @author Rolf Eike Beer
|
|
*/
|
|
class FolderCompressJob : public KJob {
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(FolderCompressJob)
|
|
FolderCompressJob(); // = delete C++0x
|
|
|
|
FolderCompressJobPrivate * const d_ptr;
|
|
Q_DECLARE_PRIVATE(FolderCompressJob)
|
|
|
|
public:
|
|
/**
|
|
* @brief create a new KJob to compress and encrypt a folder
|
|
* @param parent object owning this job
|
|
* @param sources the source directories to include
|
|
* @param dest the name of the encrypted file
|
|
* @param tempfile the temporary file that should be used for archiving
|
|
* @param keys the public key ids to encrypt to
|
|
* @param options special options to pass to the GnuPG process
|
|
* @param encOptions special options to pass to the GnuPG process
|
|
* @param archive the archive type to use
|
|
*/
|
|
FolderCompressJob(QObject *parent, const KUrl::List &sources, const KUrl &dest, KTemporaryFile *tempfile, const QStringList &keys, const QStringList &options, const KGpgEncrypt::EncryptOptions encOptions, const int archive);
|
|
|
|
/**
|
|
* @brief FolderCompressJob destructor
|
|
*/
|
|
virtual ~FolderCompressJob();
|
|
|
|
/**
|
|
* @brief shows the progress indicator
|
|
*/
|
|
virtual void start();
|
|
|
|
/**
|
|
* @brief query extension for archive type
|
|
* @param archive the archive type
|
|
* @return the extension including leading dot
|
|
*/
|
|
static QString extensionForArchive(const int archive);
|
|
|
|
/**
|
|
* @brief get list of supported archive names
|
|
* @return list of archive names
|
|
*/
|
|
static const QStringList &archiveNames();
|
|
|
|
private slots:
|
|
void doWork();
|
|
void slotEncryptionDone(int result);
|
|
};
|
|
|
|
#endif /* FOLDERCOMPRESSJOB_H */
|