1 // frmInvalidSSLCertificate.cpp - Invalid SSL Certificate form.
3 // (c) 2012-2015 Xestia Software Development.
5 // This file is part of Xestia Address Book.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include "frmInvalidSSLCertificate.h"
20 #include "frmSSLCertificate.h"
22 frmInvalidSSLCertificate::frmInvalidSSLCertificate( wxWindow* parent )
24 frmInvalidSSLCertificateADT( parent )
29 void frmInvalidSSLCertificate::Accept( wxCommandEvent& event )
35 void frmInvalidSSLCertificate::Reject( wxCommandEvent& event )
41 void frmInvalidSSLCertificate::ViewCertificates( wxCommandEvent& event )
43 frmSSLCertificate *frameSSLCert = new frmSSLCertificate ( this );
44 frameSSLCert->StartCertFrom(0);
45 frameSSLCert->SetupCerts(CertData);
46 frameSSLCert->ShowModal();
52 void frmInvalidSSLCertificate::LoadData(SSLCertCollection CertDataInc,
53 wxString AccountNameInc)
56 AccountName = AccountNameInc;
57 CertData = CertDataInc;
59 lblSSLText->SetLabel(wxT("An invalid SSL certificate was received from the server for the '") + AccountName + wxT("' account.\n\n") +
60 wxT("Click on one of the following buttons:\n\n") +
61 wxT("- Accept to accept the SSL certificate for this session and future sessions until the certificate changes.\n") +
62 wxT("- Reject to not use this certificate and disconnect (you will be asked again on subsequent reconnections to the server).\n") +
63 wxT("- View Certificates to review the certificates that were received.")
68 void frmInvalidSSLCertificate::LoadDataNew(SSLCertCollection CertDataInc,
69 wxString DomainNameInc)
72 AccountName = DomainNameInc;
73 CertData = CertDataInc;
75 lblSSLText->SetLabel(wxT("An invalid SSL certificate was received from the server ") + AccountName + (" account.\n\n") +
76 wxT("Click on one of the following buttons:\n\n") +
77 wxT("- Accept to accept the SSL certificate for this session and future sessions until the certificate changes.\n") +
78 wxT("- Reject to not use this certificate and disconnect.\n") +
79 wxT("- View Certificates to review the certificates that were received.")
84 int frmInvalidSSLCertificate::GetResult()