mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
70 lines
1.8 KiB
C
70 lines
1.8 KiB
C
![]() |
/* -*- c++ -*-
|
||
|
partmetadata.h
|
||
|
|
||
|
KMail, the KDE mail client.
|
||
|
Copyright (c) 2002-2003 Karl-Heinz Zimmer <khz@kde.org>
|
||
|
Copyright (c) 2003 Marc Mutz <mutz@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.0, as published by the Free Software Foundation.
|
||
|
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, US
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef _MESSAGEVIEWER_PARTMETADATA_H_
|
||
|
#define _MESSAGEVIEWER_PARTMETADATA_H_
|
||
|
|
||
|
#include "messageviewer_export.h"
|
||
|
|
||
|
#include <gpgme++/verificationresult.h>
|
||
|
#include <gpgme++/context.h>
|
||
|
|
||
|
#include <libkpgp/kpgp.h>
|
||
|
#include <QString>
|
||
|
#include <qdatetime.h>
|
||
|
|
||
|
namespace MessageViewer {
|
||
|
|
||
|
class MESSAGEVIEWER_EXPORT PartMetaData {
|
||
|
public:
|
||
|
PartMetaData()
|
||
|
: sigSummary( GpgME::Signature::None ),
|
||
|
isSigned( false ),
|
||
|
isGoodSignature( false ),
|
||
|
isEncrypted( false ),
|
||
|
isDecryptable( false ),
|
||
|
inProgress( false ),
|
||
|
technicalProblem( false ),
|
||
|
isEncapsulatedRfc822Message( false )
|
||
|
{
|
||
|
}
|
||
|
GpgME::Signature::Summary sigSummary;
|
||
|
QString signClass;
|
||
|
QString signer;
|
||
|
QStringList signerMailAddresses;
|
||
|
QByteArray keyId;
|
||
|
Kpgp::Validity keyTrust;
|
||
|
QString status; // to be used for unknown plug-ins
|
||
|
int status_code; // to be used for i18n of OpenPGP and S/MIME CryptPlugs
|
||
|
QString errorText;
|
||
|
QDateTime creationTime;
|
||
|
QString decryptionError;
|
||
|
QString auditLog;
|
||
|
GpgME::Error auditLogError;
|
||
|
bool isSigned : 1;
|
||
|
bool isGoodSignature : 1;
|
||
|
bool isEncrypted : 1;
|
||
|
bool isDecryptable : 1;
|
||
|
bool inProgress : 1;
|
||
|
bool technicalProblem : 1;
|
||
|
bool isEncapsulatedRfc822Message : 1;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // _KMAIL_PARTMETADATA_H_
|
||
|
|