partmetadata.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _KMAIL_PARTMETADATA_H_
00018 #define _KMAIL_PARTMETADATA_H_
00019
00020 #include <cryptplugwrapper.h>
00021
00022 #include <kpgp.h>
00023 #include <qstring.h>
00024 #include <qcstring.h>
00025 #include <time.h>
00026
00027 namespace KMail {
00028
00029 class PartMetaData {
00030 public:
00031 PartMetaData()
00032 : isSigned( false ),
00033 isGoodSignature( false ),
00034 sigStatusFlags( CryptPlugWrapper::SigStatus_UNKNOWN ),
00035 isEncrypted( false ),
00036 isDecryptable( false ),
00037 technicalProblem( false ),
00038 isEncapsulatedRfc822Message( false ),
00039 isWrongKeyUsage( false ) {}
00040 bool isSigned;
00041 bool isGoodSignature;
00042 CryptPlugWrapper::SigStatusFlags sigStatusFlags;
00043 QString signClass;
00044 QString signer;
00045 QStringList signerMailAddresses;
00046 QCString keyId;
00047 Kpgp::Validity keyTrust;
00048 QString status;
00049 int status_code;
00050 QString errorText;
00051 tm creationTime;
00052 bool isEncrypted;
00053 bool isDecryptable;
00054 QString decryptionError;
00055 bool technicalProblem;
00056 bool isEncapsulatedRfc822Message;
00057 bool isWrongKeyUsage;
00058 };
00059
00060 }
00061
00062 #endif // _KMAIL_PARTMETADATA_H_
00063
This file is part of the documentation for kmail Library Version 3.3.2.