mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
77 lines
1.9 KiB
C++
77 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2009 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 KGPGTRANSACTIONJOB_H
|
|
#define KGPGTRANSACTIONJOB_H
|
|
|
|
#include <KJob>
|
|
|
|
class KGpgTransaction;
|
|
|
|
/**
|
|
* @brief Wrap a GnuPG transaction in a job
|
|
*
|
|
* This class allows to run any KGpgTransaction as KJob.
|
|
*
|
|
* @author Rolf Eike Beer
|
|
*/
|
|
class KGpgTransactionJob : public KJob {
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(KGpgTransactionJob)
|
|
KGpgTransactionJob(); // = delete C++0x
|
|
|
|
KGpgTransaction * const m_transaction;
|
|
int m_result;
|
|
|
|
public:
|
|
/**
|
|
* @brief create a new KJob for this transaction
|
|
* @param transaction operation to do
|
|
*
|
|
* The job will take ownership of the transaction, i.e.
|
|
* will delete the transaction object when the job is done.
|
|
*/
|
|
explicit KGpgTransactionJob(KGpgTransaction *transaction);
|
|
/**
|
|
* @brief KGpgTransactionJob destructor
|
|
*/
|
|
virtual ~KGpgTransactionJob();
|
|
|
|
/**
|
|
* @brief starts the transaction
|
|
*/
|
|
virtual void start();
|
|
|
|
/**
|
|
* @brief get the transaction this job is handling
|
|
*/
|
|
const KGpgTransaction *getTransaction() const;
|
|
|
|
/**
|
|
* @brief get the result of the transaction
|
|
*/
|
|
int getResultCode() const;
|
|
|
|
protected:
|
|
virtual bool doKill();
|
|
|
|
private slots:
|
|
void slotTransactionDone(int result);
|
|
void slotStatusMessage(const QString &plain);
|
|
void slotInfoProgress(qulonglong processedAmount, qulonglong totalAmount);
|
|
};
|
|
|
|
#endif
|
|
|
|
|