2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-09-26 11:29:28 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-09-26 11:29:28 +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-09-26 11:29:28 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-09-26 11:29:28 +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-09-26 11:29:28 +00:00
|
|
|
//
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_ACCOUNTMANAGERPROPERTIESPAGE_H
|
|
|
|
#define BOINC_ACCOUNTMANAGERPROPERTIESPAGE_H
|
2005-09-26 11:29:28 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "AccountManagerPropertiesPage.cpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CAccountManagerPropertiesPage custom events
|
|
|
|
*/
|
|
|
|
|
|
|
|
class CAccountManagerPropertiesPageEvent : public wxEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CAccountManagerPropertiesPageEvent(wxEventType evtType, wxWizardPageEx *parent)
|
|
|
|
: wxEvent(-1, evtType)
|
|
|
|
{
|
|
|
|
SetEventObject(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new CAccountManagerPropertiesPageEvent(*this); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_ACCOUNTMANAGERPROPERTIES_STATECHANGE, 11000 )
|
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
|
|
|
#define EVT_ACCOUNTMANAGERPROPERTIES_STATECHANGE(fn) \
|
|
|
|
DECLARE_EVENT_TABLE_ENTRY(wxEVT_ACCOUNTMANAGERPROPERTIES_STATECHANGE, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* CAccountManagerPropertiesPage states
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ACCTMGRPROP_INIT 0
|
|
|
|
#define ACCTMGRPROP_RETRPROJECTPROPERTIES_BEGIN 1
|
|
|
|
#define ACCTMGRPROP_RETRPROJECTPROPERTIES_EXECUTE 2
|
2006-05-16 20:43:11 +00:00
|
|
|
#define ACCTMGRPROP_DETERMINENETWORKSTATUS_BEGIN 3
|
|
|
|
#define ACCTMGRPROP_DETERMINENETWORKSTATUS_EXECUTE 4
|
2009-06-19 16:30:08 +00:00
|
|
|
#define ACCTMGRPROP_DETERMINEACCOUNTINFOSTATUS_BEGIN 5
|
|
|
|
#define ACCTMGRPROP_DETERMINEACCOUNTINFOSTATUS_EXECUTE 6
|
|
|
|
#define ACCTMGRPROP_CLEANUP 7
|
|
|
|
#define ACCTMGRPROP_END 8
|
2005-09-26 11:29:28 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* CAccountManagerPropertiesPage class declaration
|
|
|
|
*/
|
|
|
|
|
|
|
|
class CAccountManagerPropertiesPage: public wxWizardPageEx
|
2023-05-05 18:05:20 +00:00
|
|
|
{
|
2005-09-26 11:29:28 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CAccountManagerPropertiesPage )
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Constructors
|
|
|
|
CAccountManagerPropertiesPage( );
|
|
|
|
|
|
|
|
CAccountManagerPropertiesPage( CBOINCBaseWizard* parent );
|
|
|
|
|
|
|
|
/// Creation
|
|
|
|
bool Create( CBOINCBaseWizard* parent );
|
|
|
|
|
|
|
|
/// Creates the controls and sizers
|
|
|
|
void CreateControls();
|
|
|
|
|
|
|
|
////@begin CAccountManagerPropertiesPage event handler declarations
|
|
|
|
|
|
|
|
/// wxEVT_WIZARD_PAGE_CHANGED event handler for ID_ACCOUNTMANAGERPROPERTIESPAGE
|
|
|
|
void OnPageChanged( wxWizardExEvent& event );
|
|
|
|
|
|
|
|
/// wxEVT_WIZARD_CANCEL event handler for ID_ACCOUNTMANAGERPROPERTIESPAGE
|
|
|
|
void OnCancel( wxWizardExEvent& event );
|
|
|
|
|
|
|
|
////@end CAccountManagerPropertiesPage event handler declarations
|
|
|
|
|
|
|
|
void OnStateChange( CAccountManagerPropertiesPageEvent& event );
|
|
|
|
|
|
|
|
////@begin CAccountManagerPropertiesPage member function declarations
|
|
|
|
|
|
|
|
/// Gets the previous page.
|
|
|
|
virtual wxWizardPageEx* GetPrev() const;
|
|
|
|
|
|
|
|
/// Gets the next page.
|
|
|
|
virtual wxWizardPageEx* GetNext() const;
|
|
|
|
|
|
|
|
/// Retrieves bitmap resources
|
|
|
|
wxBitmap GetBitmapResource( const wxString& name );
|
|
|
|
|
|
|
|
/// Retrieves icon resources
|
|
|
|
wxIcon GetIconResource( const wxString& name );
|
|
|
|
////@end CAccountManagerPropertiesPage member function declarations
|
|
|
|
|
|
|
|
bool GetProjectPropertiesSucceeded() const { return m_bProjectPropertiesSucceeded ; }
|
|
|
|
void SetProjectPropertiesSucceeded(bool value) { m_bProjectPropertiesSucceeded = value ; }
|
|
|
|
|
|
|
|
bool GetProjectPropertiesURLFailure() const { return m_bProjectPropertiesURLFailure ; }
|
|
|
|
void SetProjectPropertiesURLFailure(bool value) { m_bProjectPropertiesURLFailure = value ; }
|
|
|
|
|
2009-07-28 04:06:14 +00:00
|
|
|
bool GetProjectPropertiesCommunicationFailure() const { return m_bProjectPropertiesCommunicationFailure ; }
|
|
|
|
void SetProjectPropertiesCommunicationFailure(bool value) { m_bProjectPropertiesCommunicationFailure = value ; }
|
|
|
|
|
2005-09-26 11:29:28 +00:00
|
|
|
bool GetProjectAccountCreationDisabled() const { return m_bProjectAccountCreationDisabled ; }
|
|
|
|
void SetProjectAccountCreationDisabled(bool value) { m_bProjectAccountCreationDisabled = value ; }
|
|
|
|
|
|
|
|
bool GetProjectClientAccountCreationDisabled() const { return m_bProjectClientAccountCreationDisabled ; }
|
|
|
|
void SetProjectClientAccountCreationDisabled(bool value) { m_bProjectClientAccountCreationDisabled = value ; }
|
|
|
|
|
2009-07-28 05:53:51 +00:00
|
|
|
bool GetNetworkConnectionNotDetected() const { return m_bNetworkConnectionNotDetected ; }
|
|
|
|
void SetNetworkConnectionNotDetected(bool value) { m_bNetworkConnectionNotDetected = value ; }
|
2005-09-26 11:29:28 +00:00
|
|
|
|
2008-11-25 17:48:55 +00:00
|
|
|
bool GetServerReportedError() const { return m_bServerReportedError ; }
|
|
|
|
void SetServerReportedError(bool value) { m_bServerReportedError = value ; }
|
|
|
|
|
2008-11-25 22:58:14 +00:00
|
|
|
bool GetTermsOfUseRequired() const { return m_bTermsOfUseRequired ; }
|
|
|
|
void SetTermsOfUseRequired(bool value) { m_bTermsOfUseRequired = value ; }
|
|
|
|
|
2009-06-19 16:30:08 +00:00
|
|
|
bool GetCredentialsAlreadyAvailable() const { return m_bCredentialsAlreadyAvailable ; }
|
|
|
|
void SetCredentialsAlreadyAvailable(bool value) { m_bCredentialsAlreadyAvailable = value ; }
|
|
|
|
|
2005-09-26 11:29:28 +00:00
|
|
|
wxInt32 GetCurrentState() const { return m_iCurrentState ; }
|
|
|
|
void SetNextState(wxInt32 value) { m_iCurrentState = value ; }
|
|
|
|
|
|
|
|
/// Should we show tooltips?
|
|
|
|
static bool ShowToolTips();
|
|
|
|
|
|
|
|
/// Progress Image Support
|
|
|
|
void StartProgress(wxStaticBitmap* pBitmap);
|
|
|
|
void IncrementProgress(wxStaticBitmap* pBitmap);
|
|
|
|
void FinishProgress(wxStaticBitmap* pBitmap);
|
|
|
|
|
|
|
|
////@begin CAccountManagerPropertiesPage member variables
|
2006-01-27 00:34:53 +00:00
|
|
|
wxStaticText* m_pTitleStaticCtrl;
|
2006-02-01 12:18:10 +00:00
|
|
|
wxStaticText* m_pPleaseWaitStaticCtrl;
|
2006-01-27 00:34:53 +00:00
|
|
|
wxStaticBitmap* m_pProgressIndicator;
|
2005-09-26 11:29:28 +00:00
|
|
|
////@end CAccountManagerPropertiesPage member variables
|
|
|
|
bool m_bProjectPropertiesSucceeded;
|
|
|
|
bool m_bProjectPropertiesURLFailure;
|
2009-07-28 04:06:14 +00:00
|
|
|
bool m_bProjectPropertiesCommunicationFailure;
|
2005-09-26 11:29:28 +00:00
|
|
|
bool m_bProjectAccountCreationDisabled;
|
|
|
|
bool m_bProjectClientAccountCreationDisabled;
|
2009-07-28 05:53:51 +00:00
|
|
|
bool m_bNetworkConnectionNotDetected;
|
2008-11-25 17:48:55 +00:00
|
|
|
bool m_bServerReportedError;
|
2008-11-25 22:58:14 +00:00
|
|
|
bool m_bTermsOfUseRequired;
|
2009-06-19 16:30:08 +00:00
|
|
|
bool m_bCredentialsAlreadyAvailable;
|
2005-09-26 11:29:28 +00:00
|
|
|
int m_iBitmapIndex;
|
|
|
|
int m_iCurrentState;
|
|
|
|
};
|
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#endif
|