ksslinfodlg.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _KSSLINFODLG_H
00023 #define _KSSLINFODLG_H
00024
00025 #include <kdialog.h>
00026
00027 #include "ksslx509map.h"
00028 #include "ksslcertificate.h"
00029 #include "kssl.h"
00030 #include <qscrollview.h>
00031
00032 class QWidget;
00033 class KSSLCertBox;
00034 class KSSLCertChain;
00035
00036
00037
00038
00039
00040 class KSSLInfoDlg : public KDialog {
00041
00042 Q_OBJECT
00043
00044 public:
00045 KSSLInfoDlg(bool secureConnection, QWidget *parent = 0, const char *name = 0, bool modal = false);
00046 virtual ~KSSLInfoDlg();
00047
00048 void setSecurityInQuestion(bool isIt);
00049 void setup(KSSLCertificate *cert,
00050 const QString& ip, const QString& url,
00051 const QString& cipher, const QString& cipherdesc,
00052 const QString& sslversion, int usedbits, int bits,
00053 KSSLCertificate::KSSLValidation certState);
00054
00055 public:
00056 void setup( KSSL & ssl, const QString & ip, const QString & url );
00057 static KSSLCertBox *certInfoWidget(QWidget *parent, const QString &certName, QWidget *mailCatcher=0);
00058
00059 private:
00060 QScrollView *buildCertInfo(const QString &certName);
00061 void displayCert(KSSLCertificate *x);
00062
00063 class KSSLInfoDlgPrivate;
00064 KSSLInfoDlgPrivate *d;
00065
00066 private slots:
00067 void launchConfig();
00068 void urlClicked(const QString &url);
00069 void mailClicked(const QString &url);
00070 void slotChain(int x);
00071 };
00072
00073
00074 class KSSLCertBox : public QScrollView {
00075 public:
00076 KSSLCertBox(QWidget *parent=0, const char *name=0, WFlags f=0);
00077 void setValues(QString certName, QWidget *mailCatcher=0);
00078 private:
00079 QFrame *_frame;
00080 };
00081
00082 #endif
00083
This file is part of the documentation for kdelibs Version 3.1.4.