blob: 076ed89074fcbfb80ac4ee834597212cf8e0e19b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
Copyright (c) 2014-2016 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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 __MIMETREEPARSER_CRYPTOBODYPARTMEMENTO_H__
#define __MIMETREEPARSER_CRYPTOBODYPARTMEMENTO_H__
#include <gpgme++/error.h>
#include <QObject>
#include <QString>
#include "bodypart.h"
#include "enums.h"
namespace MimeTreeParser
{
class CryptoBodyPartMemento
: public QObject,
public Interface::BodyPartMemento
{
Q_OBJECT
public:
CryptoBodyPartMemento();
~CryptoBodyPartMemento();
virtual bool start() = 0;
virtual void exec() = 0;
bool isRunning() const;
const QString &auditLogAsHtml() const
{
return m_auditLog;
}
GpgME::Error auditLogError() const
{
return m_auditLogError;
}
void detach() Q_DECL_OVERRIDE;
Q_SIGNALS:
void update(MimeTreeParser::UpdateMode);
protected Q_SLOTS:
void notify()
{
Q_EMIT update(MimeTreeParser::Force);
}
protected:
void setAuditLog(const GpgME::Error &err, const QString &log);
void setRunning(bool running);
private:
bool m_running;
QString m_auditLog;
GpgME::Error m_auditLogError;
};
}
#endif // __MIMETREEPARSER_CRYPTOBODYPARTMEMENTO_H__
|