kmail
smimeconfiguration.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SMIMECONFIGURATION_H
00010 #define SMIMECONFIGURATION_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 namespace Kleo {
00020 class KeyRequester;
00021 }
00022 class QRadioButton;
00023 class QGroupBox;
00024 class QLabel;
00025 class QLineEdit;
00026 class QCheckBox;
00027 class QButtonGroup;
00028 class QFrame;
00029
00030 class SMimeConfiguration : public QWidget
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 SMimeConfiguration( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00036 ~SMimeConfiguration();
00037
00038 QRadioButton* CRLRB;
00039 QRadioButton* OCSPRB;
00040 QGroupBox* OCSPGroupBox;
00041 QLabel* textLabel1;
00042 QLineEdit* OCSPResponderURL;
00043 QLabel* textLabel2;
00044 Kleo::KeyRequester* OCSPResponderSignature;
00045 QCheckBox* ignoreServiceURLCB;
00046 QCheckBox* doNotCheckCertPolicyCB;
00047 QCheckBox* neverConsultCB;
00048 QCheckBox* fetchMissingCB;
00049 QButtonGroup* HTTPGroupBox;
00050 QCheckBox* disableHTTPCB;
00051 QFrame* frameHTTP;
00052 QLabel* systemHTTPProxy;
00053 QRadioButton* useCustomHTTPProxyRB;
00054 QRadioButton* honorHTTPProxyRB;
00055 QLineEdit* customHTTPProxy;
00056 QCheckBox* ignoreHTTPDPCB;
00057 QGroupBox* LDAPGroupBox;
00058 QCheckBox* disableLDAPCB;
00059 QFrame* frameLDAP;
00060 QCheckBox* ignoreLDAPDPCB;
00061 QLabel* customLDAPLabel;
00062 QLineEdit* customLDAPProxy;
00063
00064 protected:
00065 QVBoxLayout* SMimeConfigurationLayout;
00066 QSpacerItem* spacer23;
00067 QVBoxLayout* OCSPGroupBoxLayout;
00068 QHBoxLayout* layout4;
00069 QHBoxLayout* layout5;
00070 QSpacerItem* spacer7;
00071 QVBoxLayout* HTTPGroupBoxLayout;
00072 QGridLayout* frameHTTPLayout;
00073 QGridLayout* layout5_2;
00074 QVBoxLayout* LDAPGroupBoxLayout;
00075 QVBoxLayout* frameLDAPLayout;
00076 QHBoxLayout* layout5_3;
00077
00078 protected slots:
00079 virtual void languageChange();
00080
00081 };
00082
00083 #endif // SMIMECONFIGURATION_H
|