17#ifndef _KMAIL_PARTMETADATA_H_ 
   18#define _KMAIL_PARTMETADATA_H_ 
   20#include <gpgmepp/verificationresult.h> 
   21#include <gpgmepp/context.h> 
   26#include <tqdatetime.h> 
   33      : sigSummary( GpgME::Signature::None ),  
   35        isGoodSignature( false ),  
   37        isDecryptable( false ),  
   39        technicalProblem( false ),  
   40        isEncapsulatedRfc822Message( false )  
   43    GpgME::Signature::Summary sigSummary;  
   46    TQStringList signerMailAddresses;  
   48    Kpgp::Validity keyTrust;  
   52    TQDateTime creationTime;  
   53    TQString decryptionError;  
   55    GpgME::Error auditLogError;  
   57    bool isGoodSignature : 1;  
   59    bool isDecryptable : 1;  
   61    bool technicalProblem : 1;  
   62    bool isEncapsulatedRfc822Message : 1;  
  
           
        
        
          
         
        
      
      
    
    
    
  
 |