libkleo
cryptobackendfactory.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef __KLEO_CRYPTOBACKENDFACTORY_H__
00034 #define __KLEO_CRYPTOBACKENDFACTORY_H__
00035
00036 #include "kleo/kleo_export.h"
00037 #include "kleo/cryptobackend.h"
00038
00039 #include <gpgme++/global.h>
00040
00041 #include <QtCore/QObject>
00042
00043 #include <vector>
00044 #include <map>
00045
00046 namespace Kleo {
00047 class BackendConfigWidget;
00048 }
00049
00050 class QString;
00051 class KConfig;
00052
00053 namespace Kleo {
00054
00055 struct lt_i_str {
00056 bool operator()( const char * one, const char * two ) const {
00057 return qstricmp( one, two ) < 0;
00058 }
00059 };
00060
00061 class KLEO_EXPORT CryptoBackendFactory : public QObject {
00062 Q_OBJECT
00063 protected:
00064 CryptoBackendFactory();
00065 ~CryptoBackendFactory();
00066 public:
00067 static CryptoBackendFactory * instance();
00068
00069 const CryptoBackend::Protocol * smime() const;
00070 const CryptoBackend::Protocol * openpgp() const;
00071 const CryptoBackend::Protocol * protocol( const char * name ) const;
00072 const CryptoBackend::Protocol * protocol( GpgME::Protocol proto ) const;
00073
00074 CryptoConfig * config() const;
00075
00076 const CryptoBackend * backend( unsigned int idx ) const;
00077
00078 bool hasBackends() const;
00079
00080 Kleo::BackendConfigWidget * configWidget( QWidget * parent=0, const char * name=0 ) const;
00081
00082 KConfig* configObject() const;
00083
00084
00085
00086
00087
00088
00089
00090
00091 void setSMIMEBackend( const CryptoBackend* backend );
00092 void setOpenPGPBackend( const CryptoBackend* backend );
00093 void setProtocolBackend( const char * name, const CryptoBackend * backend );
00094
00095 void scanForBackends( QStringList * reasons=0 );
00096
00097 const char * enumerateProtocols( int i ) const;
00098
00099 bool knowsAboutProtocol( const char * name ) const;
00100
00101 protected:
00102 std::vector<CryptoBackend*> mBackendList;
00103 mutable KConfig* mConfigObject;
00104 typedef std::map<const char *, const CryptoBackend*, lt_i_str> BackendMap;
00105 BackendMap mBackends;
00106 typedef std::vector<const char *> ProtocolSet;
00107 ProtocolSet mAvailableProtocols;
00108
00109 private:
00110 const CryptoBackend * backendByName( const QString& name ) const;
00111 void readConfig();
00112 CryptoBackendFactory( const CryptoBackendFactory & );
00113 void operator=( const CryptoBackendFactory & );
00114
00115 static CryptoBackendFactory * mSelf;
00116 };
00117
00118
00119 }
00120
00121 #endif // __KLEO_CRYPTOBACKENDFACTORY_H__