2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-11-29 07:06:49 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-11-29 07:06:49 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2005-11-29 07:06:49 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-11-29 07:06:49 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-11-29 07:06:49 +00:00
|
|
|
//
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma implementation "ProxyInfoPage.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "stdwx.h"
|
2006-10-20 15:00:14 +00:00
|
|
|
#include "diagnostics.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "mfile.h"
|
|
|
|
#include "miofile.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "error_numbers.h"
|
2005-11-29 07:06:49 +00:00
|
|
|
#include "wizardex.h"
|
|
|
|
#include "error_numbers.h"
|
|
|
|
#include "BOINCGUIApp.h"
|
2006-10-20 15:00:14 +00:00
|
|
|
#include "SkinManager.h"
|
|
|
|
#include "MainDocument.h"
|
2005-11-29 07:06:49 +00:00
|
|
|
#include "BOINCWizards.h"
|
|
|
|
#include "BOINCBaseWizard.h"
|
|
|
|
#include "ProxyInfoPage.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CErrProxyInfoPage type definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( CErrProxyInfoPage, wxWizardPageEx )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CErrProxyInfoPage event table definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( CErrProxyInfoPage, wxWizardPageEx )
|
|
|
|
|
|
|
|
////@begin CErrProxyInfoPage event table entries
|
|
|
|
EVT_WIZARDEX_PAGE_CHANGED( -1, CErrProxyInfoPage::OnPageChanged )
|
|
|
|
EVT_WIZARDEX_CANCEL( -1, CErrProxyInfoPage::OnCancel )
|
|
|
|
|
|
|
|
////@end CErrProxyInfoPage event table entries
|
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CErrProxyInfoPage constructors
|
|
|
|
*/
|
|
|
|
|
|
|
|
CErrProxyInfoPage::CErrProxyInfoPage( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CErrProxyInfoPage::CErrProxyInfoPage( CBOINCBaseWizard* parent )
|
|
|
|
{
|
|
|
|
Create( parent );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CErrProxyInfoPage creator
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CErrProxyInfoPage::Create( CBOINCBaseWizard* parent )
|
|
|
|
{
|
|
|
|
////@begin CErrProxyInfoPage member initialisation
|
2006-01-27 00:34:53 +00:00
|
|
|
m_pTitleStaticCtrl = NULL;
|
|
|
|
m_pDescriptionStaticCtrl = NULL;
|
|
|
|
m_pDirectionsStaticCtrl = NULL;
|
2005-11-29 07:06:49 +00:00
|
|
|
////@end CErrProxyInfoPage member initialisation
|
|
|
|
|
|
|
|
////@begin CErrProxyInfoPage creation
|
|
|
|
wxBitmap wizardBitmap(wxNullBitmap);
|
2007-03-09 23:44:34 +00:00
|
|
|
wxWizardPageEx::Create( parent, ID_ERRPROXYINFOPAGE, wizardBitmap );
|
2005-11-29 07:06:49 +00:00
|
|
|
|
|
|
|
CreateControls();
|
|
|
|
GetSizer()->Fit(this);
|
|
|
|
////@end CErrProxyInfoPage creation
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Control creation for CErrProxyInfoPage
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CErrProxyInfoPage::CreateControls()
|
|
|
|
{
|
|
|
|
////@begin CErrProxyInfoPage content construction
|
|
|
|
CErrProxyInfoPage* itemWizardPage126 = this;
|
|
|
|
|
|
|
|
wxBoxSizer* itemBoxSizer127 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemWizardPage126->SetSizer(itemBoxSizer127);
|
|
|
|
|
2006-01-27 00:34:53 +00:00
|
|
|
m_pTitleStaticCtrl = new wxStaticText;
|
|
|
|
m_pTitleStaticCtrl->Create( itemWizardPage126, wxID_STATIC, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_pTitleStaticCtrl->SetFont(wxFont(10, wxSWISS, wxNORMAL, wxBOLD, FALSE, _T("Verdana")));
|
|
|
|
itemBoxSizer127->Add(m_pTitleStaticCtrl, 0, wxALIGN_LEFT|wxALL, 5);
|
2005-11-29 07:06:49 +00:00
|
|
|
|
2006-01-27 00:34:53 +00:00
|
|
|
itemBoxSizer127->Add(5, 5, 0, wxALIGN_LEFT|wxALL, 5);
|
|
|
|
|
|
|
|
m_pDescriptionStaticCtrl = new wxStaticText;
|
|
|
|
m_pDescriptionStaticCtrl->Create( itemWizardPage126, wxID_STATIC, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemBoxSizer127->Add(m_pDescriptionStaticCtrl, 0, wxALIGN_LEFT|wxALL, 5);
|
|
|
|
|
|
|
|
itemBoxSizer127->Add(5, 5, 0, wxALIGN_LEFT|wxALL, 5);
|
2005-11-29 07:06:49 +00:00
|
|
|
|
2006-01-27 00:34:53 +00:00
|
|
|
m_pDirectionsStaticCtrl = new wxStaticText;
|
|
|
|
m_pDirectionsStaticCtrl->Create( itemWizardPage126, wxID_STATIC, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemBoxSizer127->Add(m_pDirectionsStaticCtrl, 0, wxALIGN_LEFT|wxALL, 5);
|
2005-11-29 07:06:49 +00:00
|
|
|
////@end CErrProxyInfoPage content construction
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Gets the previous page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
wxWizardPageEx* CErrProxyInfoPage::GetPrev() const
|
|
|
|
{
|
|
|
|
return PAGE_TRANSITION_BACK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Gets the next page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
wxWizardPageEx* CErrProxyInfoPage::GetNext() const
|
|
|
|
{
|
|
|
|
if (CHECK_CLOSINGINPROGRESS()) {
|
|
|
|
// Cancel Event Detected
|
|
|
|
return PAGE_TRANSITION_NEXT(ID_COMPLETIONERRORPAGE);
|
|
|
|
} else {
|
|
|
|
return PAGE_TRANSITION_NEXT(ID_ERRPROXYPAGE);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Should we show tooltips?
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool CErrProxyInfoPage::ShowToolTips()
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Get bitmap resources
|
|
|
|
*/
|
|
|
|
|
2006-07-21 08:23:26 +00:00
|
|
|
wxBitmap CErrProxyInfoPage::GetBitmapResource( const wxString& WXUNUSED(name) )
|
2005-11-29 07:06:49 +00:00
|
|
|
{
|
|
|
|
// Bitmap retrieval
|
|
|
|
////@begin CErrProxyInfoPage bitmap retrieval
|
|
|
|
return wxNullBitmap;
|
|
|
|
////@end CErrProxyInfoPage bitmap retrieval
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Get icon resources
|
|
|
|
*/
|
|
|
|
|
2006-07-21 08:23:26 +00:00
|
|
|
wxIcon CErrProxyInfoPage::GetIconResource( const wxString& WXUNUSED(name) )
|
2005-11-29 07:06:49 +00:00
|
|
|
{
|
|
|
|
// Icon retrieval
|
|
|
|
|
|
|
|
////@begin CErrProxyInfoPage icon retrieval
|
|
|
|
return wxNullIcon;
|
|
|
|
////@end CErrProxyInfoPage icon retrieval
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_WIZARD_PAGE_CHANGED event handler for ID_ERRPROXYINFOPAGE
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CErrProxyInfoPage::OnPageChanged( wxWizardExEvent& event ) {
|
2006-01-27 00:34:53 +00:00
|
|
|
if (event.GetDirection() == false) return;
|
|
|
|
|
|
|
|
wxASSERT(m_pTitleStaticCtrl);
|
|
|
|
wxASSERT(m_pDescriptionStaticCtrl);
|
|
|
|
wxASSERT(m_pDirectionsStaticCtrl);
|
|
|
|
|
|
|
|
m_pTitleStaticCtrl->SetLabel(
|
|
|
|
_("Network communication failure")
|
|
|
|
);
|
2008-10-14 23:07:40 +00:00
|
|
|
#if defined (_WCG)
|
2006-01-27 00:34:53 +00:00
|
|
|
m_pDescriptionStaticCtrl->SetLabel(
|
2008-10-14 23:07:40 +00:00
|
|
|
_("The World Community Grid - BOINC software failed to communicate\n"
|
|
|
|
"over the Internet. The most likely reasons are:\n"
|
|
|
|
"\n"
|
|
|
|
"1) Connectivity problem. Check your network or modem connection\n"
|
|
|
|
"and then click Back to try again.\n"
|
|
|
|
"\n"
|
|
|
|
"2) Personal firewall software is blocking the World Community\n"
|
|
|
|
"Grid - BOINC software. Configure your personal firewall to let\n"
|
|
|
|
"BOINC and BOINC Manager communicate on port 80 and port 443,\n"
|
|
|
|
"then click Back to try again.\n"
|
|
|
|
"\n"
|
|
|
|
"3) You are using a proxy server.\n"
|
|
|
|
"Click Next to configure BOINC's proxy settings."
|
|
|
|
)
|
2006-01-27 00:34:53 +00:00
|
|
|
);
|
2008-10-14 23:07:40 +00:00
|
|
|
#else
|
|
|
|
m_pDescriptionStaticCtrl->SetLabel(
|
|
|
|
_("BOINC failed to communicate on the Internet.\n"
|
|
|
|
"The most likely reasons are:\n"
|
|
|
|
"\n"
|
|
|
|
"1) Connectivity problem. Check your network\n"
|
|
|
|
"or modem connection and then click Back to try again.\n"
|
|
|
|
"\n"
|
|
|
|
"2) Personal firewall software is blocking BOINC.\n"
|
|
|
|
"Configure your personal firewall to let BOINC and\n"
|
|
|
|
"BOINC Manager communicate on port 80,\n"
|
|
|
|
"then click Back to try again.\n"
|
|
|
|
"\n"
|
|
|
|
"3) You are using a proxy server.\n"
|
|
|
|
"Click Next to configure BOINC's proxy settings."
|
|
|
|
)
|
|
|
|
);
|
|
|
|
#endif
|
2006-01-27 00:34:53 +00:00
|
|
|
|
|
|
|
Fit();
|
2005-11-29 07:06:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_WIZARD_CANCEL event handler for ID_ERRPROXYINFOPAGE
|
|
|
|
*/
|
|
|
|
|
|
|
|
void CErrProxyInfoPage::OnCancel( wxWizardExEvent& event ) {
|
|
|
|
PROCESS_CANCELEVENT(event);
|
|
|
|
}
|
|
|
|
|