diff --git a/checkin_notes b/checkin_notes
index e31cdab68a..ee48ed0e5c 100644
--- a/checkin_notes
+++ b/checkin_notes
@@ -10376,3 +10376,36 @@ Charlie 18 Dec 2009
mac_build/
boinc.xcodeproj/
project.pbxproj
+
+Rom 19 Dec 2009
+ - MGR: Remove some old wxWidgets 2.4 cruft for dealing with Hyperlinks.
+ wxWidgets now natively supports them.
+
+ clientgui/
+ AccountInfoPage.cpp, .h
+ AccountManagerInfoPage.cpp
+ AdvancedFrame.cpp
+ BOINCBaseFrame.cpp, .h
+ BOINCGUI.cst (deleted)
+ BOINCGUI.pjd (deleted)
+ BOINCTaskBar.cpp
+ BOINCWizards.h
+ DlgAbout.cpp, .h
+ DlgAdvPreferences.cpp
+ DlgEventLog.cpp
+ hyperlink.cpp, .h (deleted)
+ ProjectInfoPage.cpp
+ sg_BoincSimpleGUI.cpp
+ sg_DlgMessages.cpp
+ sg_DlgPreferences.cpp
+ sg_ProjectsComponent.cpp
+ sg_StatImageLoader.cpp
+ stdwx.h
+ ViewProjects.cpp
+ ViewWork.cpp
+ WelcomePage.cpp
+ WizardAttachProject.cpp
+ win_build/
+ boinc_ss.vcproj
+ boincmgr.vcproj
+ libboinc_staticcrt.vcproj
diff --git a/clientgui/AccountInfoPage.cpp b/clientgui/AccountInfoPage.cpp
index 0de14afcba..8211f7be1e 100644
--- a/clientgui/AccountInfoPage.cpp
+++ b/clientgui/AccountInfoPage.cpp
@@ -33,7 +33,6 @@
#include "MainDocument.h"
#include "wx/valgen.h"
#include "wx/valtext.h"
-#include "hyperlink.h"
#include "ValidateEmailAddress.h"
#include "BOINCWizards.h"
#include "BOINCBaseWizard.h"
@@ -137,8 +136,8 @@ void CAccountInfoPage::CreateControls()
m_pCookieDetectionFailedStaticCtrl->Hide();
itemBoxSizer57->Add(m_pCookieDetectionFailedStaticCtrl, 0, wxALIGN_LEFT|wxALL, 5);
- m_pCookieDetectionFailedCtrl = new wxHyperLink;
- m_pCookieDetectionFailedCtrl->Create( itemWizardPage56, ID_ACCOUNTCOOKIEDETECTIONFAILEDCTRL, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
+ m_pCookieDetectionFailedCtrl = new wxHyperlinkCtrl;
+ m_pCookieDetectionFailedCtrl->Create( itemWizardPage56, ID_ACCOUNTCOOKIEDETECTIONFAILEDCTRL, wxEmptyString, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_ALIGN_LEFT | wxHL_CONTEXTMENU );
m_pCookieDetectionFailedCtrl->Hide();
itemBoxSizer57->Add(m_pCookieDetectionFailedCtrl, 0, wxALIGN_LEFT|wxALL, 5);
@@ -203,8 +202,8 @@ void CAccountInfoPage::CreateControls()
m_pAccountManagerLinkLabelStaticCtrl->Create( itemWizardPage56, ID_ACCOUNTLINKLABELSTATICCTRL, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer57->Add(m_pAccountManagerLinkLabelStaticCtrl, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5);
- m_pAccountForgotPasswordCtrl = new wxHyperLink;
- m_pAccountForgotPasswordCtrl->Create( itemWizardPage56, ID_ACCOUNTFORGOTPASSWORDCTRL, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
+ m_pAccountForgotPasswordCtrl = new wxHyperlinkCtrl;
+ m_pAccountForgotPasswordCtrl->Create( itemWizardPage56, ID_ACCOUNTFORGOTPASSWORDCTRL, wxEmptyString, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_ALIGN_LEFT | wxHL_CONTEXTMENU );
itemBoxSizer57->Add(m_pAccountForgotPasswordCtrl, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5);
// Set validators
diff --git a/clientgui/AccountInfoPage.h b/clientgui/AccountInfoPage.h
index 78435ae078..4cd7b53dfe 100644
--- a/clientgui/AccountInfoPage.h
+++ b/clientgui/AccountInfoPage.h
@@ -93,7 +93,7 @@ public:
////@begin CAccountInfoPage member variables
wxStaticText* m_pTitleStaticCtrl;
wxStaticText* m_pCookieDetectionFailedStaticCtrl;
- wxHyperLink* m_pCookieDetectionFailedCtrl;
+ wxHyperlinkCtrl* m_pCookieDetectionFailedCtrl;
wxStaticText* m_pAccountQuestionStaticCtrl;
wxRadioButton* m_pAccountCreateCtrl;
wxRadioButton* m_pAccountUseExistingCtrl;
@@ -109,7 +109,7 @@ public:
wxString m_strAccountEmailAddress;
wxString m_strAccountPassword;
wxString m_strAccountConfirmPassword;
- wxHyperLink* m_pAccountForgotPasswordCtrl;
+ wxHyperlinkCtrl* m_pAccountForgotPasswordCtrl;
////@end CAccountInfoPage member variables
};
diff --git a/clientgui/AccountManagerInfoPage.cpp b/clientgui/AccountManagerInfoPage.cpp
index 0869735dee..758822f738 100644
--- a/clientgui/AccountManagerInfoPage.cpp
+++ b/clientgui/AccountManagerInfoPage.cpp
@@ -32,7 +32,6 @@
#include "BOINCGUIApp.h"
#include "SkinManager.h"
#include "MainDocument.h"
-#include "hyperlink.h"
#include "ValidateURL.h"
#include "BOINCWizards.h"
#include "BOINCBaseWizard.h"
@@ -312,7 +311,7 @@ void CAccountManagerInfoPage::OnProjectItemChange( ProjectListCtrlEvent& event )
*/
void CAccountManagerInfoPage::OnProjectItemDisplay( ProjectListCtrlEvent& event ) {
- wxHyperLink::ExecuteLink( event.GetURL() );
+ wxLaunchDefaultBrowser( event.GetURL() );
}
/*!
diff --git a/clientgui/AdvancedFrame.cpp b/clientgui/AdvancedFrame.cpp
index c3369a48bc..ee1749a161 100644
--- a/clientgui/AdvancedFrame.cpp
+++ b/clientgui/AdvancedFrame.cpp
@@ -1593,7 +1593,7 @@ void CAdvancedFrame::OnHelp(wxHelpEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnHelpBOINCManager - Function End"));
@@ -1613,7 +1613,7 @@ void CAdvancedFrame::OnHelpBOINC(wxCommandEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnHelpBOINC - Function End"));
diff --git a/clientgui/BOINCBaseFrame.cpp b/clientgui/BOINCBaseFrame.cpp
index 97158b9832..cead2698a6 100644
--- a/clientgui/BOINCBaseFrame.cpp
+++ b/clientgui/BOINCBaseFrame.cpp
@@ -26,7 +26,6 @@
#include "miofile.h"
#include "parse.h"
#include "error_numbers.h"
-#include "hyperlink.h"
#include "BOINCGUIApp.h"
#include "SkinManager.h"
#include "MainDocument.h"
@@ -653,11 +652,6 @@ void CBOINCBaseFrame::ShowAlert( const wxString title, const wxString message, c
}
-void CBOINCBaseFrame::ExecuteBrowserLink(const wxString &strLink) {
- wxHyperLink::ExecuteLink(strLink);
-}
-
-
bool CBOINCBaseFrame::SaveState() {
wxLogTrace(wxT("Function Start/End"), wxT("CBOINCBaseFrame::SaveState - Function Begin"));
diff --git a/clientgui/BOINCBaseFrame.h b/clientgui/BOINCBaseFrame.h
index 4f518756e5..a8fb6ca1ac 100644
--- a/clientgui/BOINCBaseFrame.h
+++ b/clientgui/BOINCBaseFrame.h
@@ -91,8 +91,6 @@ public:
const FrameAlertEventType alert_event_type = AlertNormal
);
- void ExecuteBrowserLink( const wxString& strLink );
-
bool Show( bool bShow = true );
virtual bool SaveState();
diff --git a/clientgui/BOINCGUI.cst b/clientgui/BOINCGUI.cst
deleted file mode 100644
index 7e21cef4fd..0000000000
--- a/clientgui/BOINCGUI.cst
+++ /dev/null
@@ -1,30 +0,0 @@
-[wxHyperLink]
-Description=
-BaseClass=
-IncludeFilename=hyperlink.h
-ImageFilename=
-TileImage=0
-ImageHAlignment=2
-ImageVAlignment=2
-CustomArguments=%PARENT%, %IDENTIFIER%, %POSITION%, %SIZE%, %STYLE%
-CustomCtorArguments=
-Styles=
-ExtraStyles=
-DefaultWidth=-1
-DefaultHeight=-1
-ShowInheritedProperties=1
-IsContainer=0
-Label=%Label%
-Colour=FFFFFF
-BorderStyle=wxSIMPLE_BORDER
-[wxHyperLink/Properties]
-[wxHyperLink/Properties/Label]
-Type=wxString
-Kind=0
-Editor=default
-DefaultValue=
-Setter=
-Getter=
-XRCTag=
-Description=
-Translateable=1
diff --git a/clientgui/BOINCGUI.pjd b/clientgui/BOINCGUI.pjd
deleted file mode 100644
index 49608166fd..0000000000
--- a/clientgui/BOINCGUI.pjd
+++ /dev/null
@@ -1,9823 +0,0 @@
-
-
-
- 3
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- ""
- ""
- ""
- 1
- 0
- "<All platforms>"
- "2.6.1"
- "// Berkeley Open Infrastructure for Network Computing
-
-// http://boinc.berkeley.edu
-
-// Copyright (C) 2005 University of California
-
-//
-
-// This 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 2.1 of the License, or (at your option) any later version.
-
-//
-
-// This software is distributed in the hope that it will be useful,
-
-// 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.
-
-//
-
-// To view the GNU Lesser General Public License visit
-
-// http://www.gnu.org/copyleft/lesser.html
-
-// or write to the Free Software Foundation, Inc.,
-
-// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-//
-
-"
- "// Berkeley Open Infrastructure for Network Computing
-
-// http://boinc.berkeley.edu
-
-// Copyright (C) 2005 University of California
-
-//
-
-// This 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 2.1 of the License, or (at your option) any later version.
-
-//
-
-// This software is distributed in the hope that it will be useful,
-
-// 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.
-
-//
-
-// To view the GNU Lesser General Public License visit
-
-// http://www.gnu.org/copyleft/lesser.html
-
-// or write to the Free Software Foundation, Inc.,
-
-// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-//
-
-"
- "// Berkeley Open Infrastructure for Network Computing
-
-// http://boinc.berkeley.edu
-
-// Copyright (C) 2005 University of California
-
-//
-
-// This 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 2.1 of the License, or (at your option) any later version.
-
-//
-
-// This software is distributed in the hope that it will be useful,
-
-// 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.
-
-//
-
-// To view the GNU Lesser General Public License visit
-
-// http://www.gnu.org/copyleft/lesser.html
-
-// or write to the Free Software Foundation, Inc.,
-
-// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-//
-
-"
- "#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "%HEADER-FILENAME%"
-#endif
-
-"
- "#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "%HEADER-FILENAME%"
-#endif
-
-// For compilers that support precompilation, includes "wx/wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-#pragma hdrstop
-#endif
-
-#ifndef WX_PRECOMP
-#include "wx/wx.h"
-#endif
-
-"
- " /// %BODY%
-"
- "
-/*!
- * %BODY%
- */
-
-"
- "app_resources.h"
- "app_resources.cpp"
- "AppResources"
- "app.h"
- "app.cpp"
- "Application"
- 0
- ""
- "<None>"
- "iso-8859-1"
- "utf-8"
- "utf-8"
- ""
- 0
- 0
- 4
- " "
- ""
- 0
- 0
- 1
- 1
- 1
- 0
- 1
-
-
-
- ""
- "data-document"
- ""
- ""
- 0
- 1
- 0
- 0
-
- "Configurations"
- "config-data-document"
- ""
- ""
- 0
- 1
- 0
- 0
- ""
- 1
- ""
- "Debug"
- "ANSI"
- "Static"
- "Modular"
- "GUI"
- "wxMSW"
- "Dynamic"
- "Yes"
- "No"
- "No"
- "%WXVERSION%"
- "%EXECUTABLE%"
- ""
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
- "%AUTO%"
-
-
-
-
-
-
- "Projects"
- "root-document"
- ""
- "project"
- 1
- 1
- 0
- 1
-
- "Windows"
- "html-document"
- ""
- "dialogsfolder"
- 1
- 1
- 0
- 1
-
- "Options"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "8/3/2004"
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "ID_DIALOG"
- 10000
- "CDlgOptions"
- "wxDialog"
- "wxDialog"
- "DlgOptions.cpp"
- "DlgOptions.h"
- ""
- "Options"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- -1
- -1
- 0
- ""
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxNotebook: ID_NOTEBOOK"
- "dialog-control-document"
- ""
- "notebook"
- 0
- 1
- 0
- 0
- "wbNotebookProxy"
- "wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED|OnNotebookPageChanged"
- "wxEVT_UPDATE_UI|OnNotebookUpdate"
- "ID_NOTEBOOK"
- 10001
- "wxNotebook"
- "wxNotebook"
- 1
- 0
- ""
- ""
- ""
- 1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
- "wxPanel: ID_GENERAL"
- "dialog-control-document"
- ""
- "panel"
- 0
- 1
- 0
- 0
- "wbPanelProxy"
- "ID_GENERAL"
- 10002
- "wxPanel"
- "wxPanel"
- 0
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- ""
- 1
- -1
- -1
- 99
- 80
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
- ""
- 0
- "General"
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "24/9/2004"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "22/5/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "22/5/2005"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Language Selection:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxComboBox: ID_LANGUAGESELECTION"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "22/5/2005"
- "wbComboBoxProxy"
- "ID_LANGUAGESELECTION"
- 10004
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- "m_LanguageSelectionCtrl"
- ""
- ""
- ""
- "What language should the manager display by default."
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "22/5/2005"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Reminder Frequency:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxSlider: ID_REMINDERFREQUENCY"
- "dialog-control-document"
- ""
- "slider"
- 0
- 1
- 0
- 0
- "22/5/2005"
- "wbSliderProxy"
- "ID_REMINDERFREQUENCY"
- 10018
- "wxSlider"
- "wxSlider"
- 1
- 0
- ""
- ""
- "m_ReminderFrequencyCtrl"
- 0
- 120
- 60
- ""
- "How often, in minutes, should the manager remind you of possible connection events."
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
- "wxPanel: ID_CONNECTONS"
- "dialog-control-document"
- ""
- "panel"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbPanelProxy"
- "ID_CONNECTONS"
- 10019
- "wxPanel"
- "wxPanel"
- 0
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "__WXMSW__"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- ""
- 1
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
- ""
- 0
- "Connections"
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxRadioButton: ID_NETWORKAUTODETECT"
- "dialog-control-document"
- ""
- "radiobutton"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbRadioButtonProxy"
- "wxEVT_COMMAND_RADIOBUTTON_SELECTED|OnNetworkAutoDetectSelected"
- "wxEVT_UPDATE_UI|OnNetworkAutoDetectUpdate"
- "ID_NETWORKAUTODETECT"
- 10020
- "wxRadioButton"
- "wxRadioButton"
- 1
- 0
- ""
- ""
- "m_NetworkAutomaticDetectionCtrl"
- "&Automatically detect network connection settings"
- 1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxRadioButton: ID_NETWORKLAN"
- "dialog-control-document"
- ""
- "radiobutton"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbRadioButtonProxy"
- "wxEVT_COMMAND_RADIOBUTTON_SELECTED|OnNetworkLANSelected"
- "wxEVT_UPDATE_UI|OnNetworkLANUpdate"
- "ID_NETWORKLAN"
- 10021
- "wxRadioButton"
- "wxRadioButton"
- 1
- 0
- ""
- ""
- "m_NetworkUseLANCtrl"
- "Use my &Local Area Network(LAN) connection"
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxRadioButton: ID_NETWORKDIALUP"
- "dialog-control-document"
- ""
- "radiobutton"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbRadioButtonProxy"
- "wxEVT_COMMAND_RADIOBUTTON_SELECTED|OnNetworkDialupSelected"
- "wxEVT_UPDATE_UI|OnNetworkDialupUpdate"
- "ID_NETWORKDIALUP"
- 10022
- "wxRadioButton"
- "wxRadioButton"
- 1
- 0
- ""
- ""
- "m_NetworkUseDialupCtrl"
- "Use my &Dial-up and Virtual Private Network connection"
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbStaticBoxSizerProxy"
- "wxID_ANY"
- "-1"
- "Dial-up and Virtual Private Network settings"
- ""
- "m_DialupStaticBoxCtrl"
- ""
- ""
- 0
- 1
- "wxStaticBox"
- "Vertical"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbFlexGridSizerProxy"
- "0"
- ""
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxListBox: ID_DIALUPCONNECTIONS"
- "dialog-control-document"
- ""
- "listbox"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbListBoxProxy"
- "ID_DIALUPCONNECTIONS"
- 10023
- "wxListBox"
- "wxListBox"
- 1
- 0
- ""
- ""
- "m_DialupConnectionsCtrl"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxButton: ID_DIALUPSETDEFAULT"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbButtonProxy"
- "wxEVT_COMMAND_BUTTON_CLICKED|OnDialupSetDefaultClick"
- "ID_DIALUPSETDEFAULT"
- 10024
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- "m_DialupSetDefaultCtrl"
- "&Set Default"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxButton: ID_DIALUPCLEARDEFAULT"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbButtonProxy"
- "wxEVT_COMMAND_BUTTON_CLICKED|OnDialupClearDefaultClick"
- "ID_DIALUPCLEARDEFAULT"
- 10025
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- "m_DialupClearDefaultCtrl"
- "&Clear Default"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbFlexGridSizerProxy"
- "1"
- ""
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: ID_DIALUPDEFAULTCONNECTIONTEXT"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbStaticTextProxy"
- "ID_DIALUPDEFAULTCONNECTIONTEXT"
- 10027
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- "m_DialupDefaultConnectionTextCtrl"
- "Default Connection:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxStaticText: ID_DIALUPDEFAULTCONNECTION"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "27/5/2005"
- "wbStaticTextProxy"
- "ID_DIALUPDEFAULTCONNECTION"
- 10026
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- "m_DialupDefaultConnectionCtrl"
- ""
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 1
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxCheckBox: ID_DIALUPPROMPTUSERNAMEPASSWORD"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbCheckBoxProxy"
- "ID_DIALUPPROMPTUSERNAMEPASSWORD"
- 10030
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- "m_DialupPromptCredentials"
- "&Prompt for username and password"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
-
- "wxPanel: ID_HTTPPROXY"
- "dialog-control-document"
- ""
- "panel"
- 0
- 1
- 0
- 0
- "wbPanelProxy"
- "ID_HTTPPROXY"
- 10003
- "wxPanel"
- "wxPanel"
- 0
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- ""
- 1
- -1
- -1
- 99
- 150
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
- ""
- 0
- "HTTP Proxy"
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxCheckBox: ID_ENABLEHTTPPROXYCTRL"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "wbCheckBoxProxy"
- "wxEVT_COMMAND_CHECKBOX_CLICKED|OnEnableHTTPProxyCtrlClick"
- "wxEVT_UPDATE_UI|OnEnableHTTPProxyCtrlUpdate"
- "ID_ENABLEHTTPPROXYCTRL"
- 10007
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- "m_EnableHTTPProxyCtrl"
- "Connect via HTTP proxy server"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbStaticBoxSizerProxy"
- "wxID_ANY"
- "-1"
- "HTTP Proxy Server Configuration"
- ""
- ""
- ""
- ""
- 0
- 1
- "wxStaticBox"
- "Vertical"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbGridSizerProxy"
- 1
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Address:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_HTTPADDRESSCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_HTTPADDRESSCTRL"
- 10010
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_HTTPAddressCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 150
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Port:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_HTTPPORTCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_HTTPPORTCTRL"
- 10011
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_HTTPPortCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 50
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
- "wxStaticBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbStaticBoxSizerProxy"
- "wxID_ANY"
- "-1"
- "Leave these blank if not needed"
- ""
- ""
- ""
- ""
- 0
- 1
- "wxStaticBox"
- "Vertical"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "User Name:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_HTTPUSERNAMECTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_HTTPUSERNAMECTRL"
- 10008
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_HTTPUsernameCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 175
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Password:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_HTTPPASSWORDCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_HTTPPASSWORDCTRL"
- 10009
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_HTTPPasswordCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
-
-
-
- "wxPanel: ID_SOCKSPROXY"
- "dialog-control-document"
- ""
- "panel"
- 0
- 1
- 0
- 0
- "wbPanelProxy"
- "ID_SOCKSPROXY"
- 10006
- "wxPanel"
- "wxPanel"
- 0
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- ""
- 1
- -1
- -1
- 99
- 80
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
- ""
- 0
- "SOCKS Proxy"
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxCheckBox: ID_ENABLESOCKSPROXYCTRL"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "wbCheckBoxProxy"
- "wxEVT_COMMAND_CHECKBOX_CLICKED|OnEnableSOCKSProxyCtrlClick"
- "wxEVT_UPDATE_UI|OnEnableSOCKSProxyCtrlUpdate"
- "ID_ENABLESOCKSPROXYCTRL"
- 10012
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- "m_EnableSOCKSProxyCtrl"
- "Connect via SOCKS proxy server"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbStaticBoxSizerProxy"
- "wxID_ANY"
- "-1"
- "SOCKS Proxy Server Configuration"
- ""
- ""
- ""
- ""
- 0
- 1
- "wxStaticBox"
- "Vertical"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbGridSizerProxy"
- 1
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Address:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_SOCKSADDRESSCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_SOCKSADDRESSCTRL"
- 10013
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_SOCKSAddressCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 150
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Port:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_SOCKSPORTCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_SOCKSPORTCTRL"
- 10014
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_SOCKSPortCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 50
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
- "wxStaticBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbStaticBoxSizerProxy"
- "wxID_ANY"
- "-1"
- "Leave these blank if not needed"
- ""
- ""
- ""
- ""
- 0
- 1
- "wxStaticBox"
- "Vertical"
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "User Name:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_SOCKSUSERNAMECTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_SOCKSUSERNAMECTRL"
- 10015
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_SOCKSUsernameCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 175
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Password:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_SOCKSPASSWORDCTRL"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_SOCKSPASSWORDCTRL"
- 10016
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_SOCKSPasswordCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
-
-
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxButton: wxID_OK"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "wbButtonProxy"
- "wxID_OK"
- 5100
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&OK"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxButton: wxID_CANCEL"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "wbButtonProxy"
- "wxID_CANCEL"
- 5101
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&Cancel"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
- "About BOINC"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "9/3/2004"
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "m_strVersion|wxString|Version|BOINC_VERSION_STRING"
- "ID_DIALOG"
- 10000
- "CDlgAbout"
- "wxDialog"
- "wxDialog"
- "DlgAbout.cpp"
- "DlgAbout.h"
- ""
- "About BOINC Manager"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- 400
- 300
- 0
- ""
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- "m_AboutBOINCTitleCtrl"
- "BOINC Manager"
- -1
- ""
- ""
- ""
- ""
- "24, wxDEFAULT, wxNORMAL, wxBOLD"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxStaticBitmap: wxID_STATIC"
- "dialog-control-document"
- ""
- "staticbitmap"
- 0
- 1
- 0
- 0
- "wbStaticBitmapProxy"
- "wxID_STATIC"
- 5105
- "wxStaticBitmap"
- "wxStaticBitmap"
- 1
- 0
- ""
- ""
- "m_AboutBOINCLogoCtrl"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 50
- 50
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 0
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Version:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 1
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- ""
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- "m_strVersion"
- "wxGenericValidator(& %VARIABLE%)"
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 1
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Copyright:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Top"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 1
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "(C) 2005 University of California at Berkeley.
-All Rights Reserved."
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 1
- 0
- ""
- ""
-
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- "m_AboutBOINCSloganCtrl"
- "Berkeley Open Infrastructure for Network Computing"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "A software platform for distributed computing using volunteered computer resources"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxHyperLink: ID_ABOUTBOINCLINK"
- "dialog-control-document"
- ""
- "foreign"
- 0
- 1
- 0
- 0
- "21/6/2005"
- "wbCustomCtrlProxy:wxHyperLink"
- "ID_ABOUTBOINCLINK"
- 10031
- "wxHyperLink"
- "wxHyperLink"
- 1
- 0
- ""
- ""
- "m_AboutBOINCURLCtrl"
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- 0
- ""
- "%PARENT%, %IDENTIFIER%, wxT("http://boinc.berkeley.edu/"), %POSITION%, %SIZE%, %STYLE%"
- ""
- 0
- "http://boinc.berkeley.edu/"
-
-
- "wxStaticLine: wxID_STATIC"
- "dialog-control-document"
- ""
- "staticline"
- 0
- 1
- 0
- 0
- "wbStaticLineProxy"
- "wxID_STATIC"
- 5105
- "wxStaticLine"
- "wxStaticLine"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Expand"
- "Expand"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
-
- "wxButton: wxID_OK"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "wbButtonProxy"
- "wxID_OK"
- 5100
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&OK"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
- "Select Computer"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "m_strComputerName|wxString|ComputerName|"
- "m_strComputerPassword|wxString|ComputerPassword|"
- "ID_DIALOG"
- 10000
- "CDlgSelectComputer"
- "wxDialog"
- "wxDialog"
- "DlgSelectComputer"
- "DlgSelectComputer"
- ""
- "Select Computer"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- 400
- 300
- 0
- ""
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Host name:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxComboBox: ID_SELECTCOMPUTERNAME"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "wbComboBoxProxy"
- "wxEVT_COMMAND_TEXT_UPDATED|OnComputerNameUpdated"
- "ID_SELECTCOMPUTERNAME"
- 10001
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- "m_ComputerNameCtrl"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- "m_strComputerName"
- "wxGenericValidator(& %VARIABLE%)"
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 250
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Password:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_SELECTCOMPUTERPASSWORD"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "wbTextCtrlProxy"
- "ID_SELECTCOMPUTERPASSWORD"
- 10002
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_ComputerPasswordCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- "m_strComputerPassword"
- "wxGenericValidator(& %VARIABLE%)"
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 250
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxButton: wxID_OK"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "wbButtonProxy"
- "wxID_OK"
- 5100
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&OK"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxButton: wxID_CANCEL"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "wbButtonProxy"
- "wxID_CANCEL"
- 5101
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&Cancel"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
-
- "Dialup Logon"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "m_strUsername|wxString|Username|"
- "m_strPassword|wxString|Password|"
- "ID_DIALOG"
- 10000
- "CDlgDialupCredentials"
- "wxDialog"
- "wxDialog"
- "DlgDialupCredentials.cpp"
- "DlgDialupCredentials.h"
- ""
- "Dialup Logon"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "__WXMSW__"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- 400
- 300
- 0
- ""
- 0
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 3
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Username:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_USERNAME"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbTextCtrlProxy"
- "ID_USERNAME"
- 10002
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_UsernameCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "__WXMSW__"
- "m_strUsername"
- "wxGenericValidator(& %VARIABLE%)"
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 200
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Password:"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxTextCtrl: ID_PASSWORD"
- "dialog-control-document"
- ""
- "textctrl"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbTextCtrlProxy"
- "ID_PASSWORD"
- 10003
- "wxTextCtrl"
- "wxTextCtrl"
- 1
- 0
- ""
- ""
- "m_PasswordCtrl"
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "__WXMSW__"
- "m_strPassword"
- "wxGenericValidator(& %VARIABLE%)"
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 200
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 1
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxButton: wxID_OK"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbButtonProxy"
- "wxID_OK"
- 5100
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&OK"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxButton: wxID_CANCEL"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "28/5/2005"
- "wbButtonProxy"
- "wxID_CANCEL"
- 5101
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&Cancel"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
- "Generic Message Dialog"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "ID_DIALOG"
- 10000
- "CDlgGenericMessage"
- "wxDialog"
- "wxDialog"
- "DlgGenericMessage.cpp"
- "DlgGenericMessage.h"
- ""
- ""
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 1
- 1
- 0
- 1
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- 400
- 300
- 0
- ""
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 1
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- "m_DialogMessage"
- ""
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "Spacer"
- "dialog-control-document"
- ""
- "spacer"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbSpacerProxy"
- 5
- 5
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
-
- "wxCheckBox: ID_DISABLEDIALOG"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbCheckBoxProxy"
- "ID_DISABLEDIALOG"
- 10017
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- "m_DialogDisableMessage"
- "Click here to disable displaying this message in the future."
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbFlexGridSizerProxy"
- ""
- ""
- 1
- 2
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxButton: wxID_OK"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbButtonProxy"
- "wxID_OK"
- 5100
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&OK"
- 1
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxButton: wxID_CANCEL"
- "dialog-control-document"
- ""
- "dialogcontrol"
- 0
- 1
- 0
- 0
- "23/12/2005"
- "wbButtonProxy"
- "wxID_CANCEL"
- 5101
- "wxButton"
- "wxButton"
- 1
- 0
- ""
- ""
- ""
- "&Cancel"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
- "Simple Preferences Dialog"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "ID_DLGPREFERENCES"
- 10005
- "CDlgPreferences"
- "wxDialog"
- "wxDialog"
- ""
- ""
- ""
- "BOINC Manager - Preferences"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- -1
- -1
- 0
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- ""
- ""
- 1
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Skin"
- -1
- ""
- ""
- ""
- ""
- "16, wxSWISS, wxNORMAL, wxBOLD, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Top"
- 0
- 20
- 1
- 0
- 0
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Skin:"
- -1
- ""
- ""
- ""
- ""
- "8, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 1
- 0
- ""
- ""
-
-
- "wxComboBox: ID_SKINSELECTOR"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "wbComboBoxProxy"
- "ID_SKINSELECTOR"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 175
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxStaticLine: wxID_STATIC"
- "dialog-control-document"
- ""
- "staticline"
- 0
- 1
- 0
- 0
- "wbStaticLineProxy"
- "wxID_STATIC"
- 5105
- "wxStaticLine"
- "wxStaticLine"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 1
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 300
- 1
- "Expand"
- "Top"
- 0
- 20
- 1
- 1
- 0
- 0
- 0
- 0
- 0
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbFlexGridSizerProxy"
- "0"
- ""
- 1
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Preferences"
- -1
- ""
- ""
- ""
- ""
- "16, wxSWISS, wxNORMAL, wxBOLD, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Centre"
- "Top"
- 0
- 20
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- "<Any platform>"
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Top"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxCheckBox: ID_CUSTOMIZEPREFERENCES"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "wbCheckBoxProxy"
- "ID_CUSTOMIZEPREFERENCES"
- 10028
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- ""
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "I want to customize my preferences for this computer."
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Customized Preferences"
- -1
- ""
- ""
- ""
- ""
- "12, wxSWISS, wxNORMAL, wxBOLD, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbFlexGridSizerProxy"
- "0,1"
- "0,1,2,3,4,5,6"
- 2
- 7
- 0
- 0
- ""
- "<Any platform>"
- "Centre"
- "Top"
- 0
- 10
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Do work only between:"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Centre"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxComboBox: ID_WORKBETWEENBEGIN"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_WORKBETWEENBEGIN"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- -1
- -1
- 75
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "and"
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxComboBox: ID_WORKBETWEENEND"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_WORKBETWEENEND"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 75
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Connect to internet only between:"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Centre"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxComboBox: ID_CONNECTBETWEENBEGIN"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_CONNECTBETWEENBEGIN"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 75
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "and"
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxComboBox: ID_CONNECTBETWEENEND"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_CONNECTBETWEENEND"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 75
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Use no more than:"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxComboBox: ID_MAXDISKUSAGE"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_MAXDISKUSAGE"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 75
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "of disk space"
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Use no more than:"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxComboBox: ID_MAXCPUUSAGE"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_MAXCPUUSAGE"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 55
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "of the processor"
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Do work while in use?"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxCheckBox: ID_WORKWHILEINUSE"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbCheckBoxProxy"
- "ID_WORKWHILEINUSE"
- 10028
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- ""
- "Checkbox"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Do work while on battery?"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxCheckBox: ID_WORKWHILEONBATTERY"
- "dialog-control-document"
- ""
- "checkbox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbCheckBoxProxy"
- "ID_WORKWHILEONBATTERY"
- 10028
- "wxCheckBox"
- "wxCheckBox"
- 1
- 0
- ""
- ""
- ""
- "Checkbox"
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Do work after computer is idle for:"
- 250
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Right"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Left"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxComboBox: ID_WORKWHENIDLE"
- "dialog-control-document"
- ""
- "combobox"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbComboBoxProxy"
- "ID_WORKWHENIDLE"
- 10028
- "wxComboBox"
- "wxComboBox"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- 55
- -1
- "Left"
- "Centre"
- 0
- 5
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "28/10/2006"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "minutes"
- -1
- ""
- ""
- ""
- ""
- "9, wxSWISS, wxNORMAL, wxNORMAL, false, Arial"
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 1
- 0
- ""
- ""
-
-
-
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Right"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxBitmapButton: wxID_OK"
- "dialog-control-document"
- ""
- "bitmapbutton"
- 0
- 1
- 0
- 0
- "wbBitmapButtonProxy"
- "wxID_OK"
- 5100
- "wxBitmapButton"
- "wxBitmapButton"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
- "wxBitmapButton: wxID_CANCEL"
- "dialog-control-document"
- ""
- "bitmapbutton"
- 0
- 1
- 0
- 0
- "wbBitmapButtonProxy"
- "wxID_CANCEL"
- 5101
- "wxBitmapButton"
- "wxBitmapButton"
- 1
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
-
-
-
-
- "ProjectList"
- "dialog-document"
- ""
- "dialog"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbDialogProxy"
- 10000
- 0
- ""
- 0
- ""
- 0
- 0
- "ID_PROJECTLIST"
- 10029
- "ProjectList"
- "wxDialog"
- "wxDialog"
- "projectlist.cpp"
- "projectlist.h"
- ""
- "ProjectList"
- 1
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- "Tiled"
- 0
- 1
- 1
- 0
- 1
- 0
- 0
- 1
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 0
- ""
- 0
- 1
- -1
- -1
- 600
- 450
- 0
- ""
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "wbBoxSizerProxy"
- "Vertical"
- ""
- 0
- 0
- 0
- "<Any platform>"
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Expand"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxScrolledWindow: ID_SCROLLEDWINDOW"
- "dialog-control-document"
- ""
- "scrolledwindow"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbScrolledWindowProxy"
- "ID_SCROLLEDWINDOW"
- 10000
- "wxScrolledWindow"
- "wxScrolledWindow"
- 1
- 0
- ""
- ""
- ""
- 1
- 1
- 0
- 0
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- 1
- 0
- 0
- 0
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 1
- 1
- 0
- 0
- 0
- ""
- -1
- -1
- 400
- 500
- "Centre"
- "Expand"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
- 0
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbFlexGridSizerProxy"
- "0"
- ""
- 1
- 0
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbFlexGridSizerProxy"
- "0"
- "0"
- 1
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Expand"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxBoxSizer V"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbBoxSizerProxy"
- "Vertical"
- ""
- "Expand"
- "Expand"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "wxFlexGridSizer"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbFlexGridSizerProxy"
- "0"
- "0"
- 2
- 1
- 0
- 0
- ""
- "<Any platform>"
- "Expand"
- "Top"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "test twst test test test test"
- -1
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
- "wxBitmapButton: ID_BITMAPBUTTON1"
- "dialog-control-document"
- ""
- "bitmapbutton"
- 0
- 1
- 0
- 0
- "7/11/2007"
- "wbBitmapButtonProxy"
- "ID_BITMAPBUTTON1"
- 10032
- "wxBitmapButton"
- "wxBitmapButton"
- 1
- 0
- ""
- ""
- ""
- "res/templates/externalweblink.gif"
- ""
- ""
- ""
- ""
- 0
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- 1
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Centre"
- "Centre"
- 0
- 0
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
- "wxBoxSizer H"
- "dialog-control-document"
- ""
- "sizer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbBoxSizerProxy"
- "Horizontal"
- ""
- "Expand"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- "<Any platform>"
-
- "Spacer"
- "dialog-control-document"
- ""
- "spacer"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbSpacerProxy"
- 5
- 5
- "Left"
- "Centre"
- 0
- 10
- 1
- 1
- 0
- 1
- 0
- 0
- 0
- "<Any platform>"
-
-
- "wxStaticText: wxID_STATIC"
- "dialog-control-document"
- ""
- "statictext"
- 0
- 1
- 0
- 0
- "6/11/2007"
- "wbStaticTextProxy"
- "wxID_STATIC"
- 5105
- "wxStaticText"
- "wxStaticText"
- 1
- 0
- ""
- ""
- ""
- "Static text"
- 300
- ""
- ""
- ""
- ""
- ""
- 0
- 1
- "<Any platform>"
- ""
- ""
- ""
- ""
- ""
- ""
- ""
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- 0
- ""
- -1
- -1
- -1
- -1
- "Left"
- "Centre"
- 0
- 5
- 1
- 1
- 1
- 1
- 0
- 0
- 0
- ""
- ""
-
-
-
-
-
-
-
-
-
-
-
- "Images"
- "html-document"
- ""
- "bitmapsfolder"
- 1
- 1
- 0
- 1
-
- "boincsm.xpm"
- "image-document"
- "res/boincsm.xpm"
- "image"
- 0
- 0
- 0
- 0
- "1/3/2005"
- 100
-
-
- "boinc.xpm"
- "image-document"
- "res/boinc.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "boinc_mac.xpm"
- "image-document"
- "res/boinc_mac.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "BOINCGUIApp.xpm"
- "image-document"
- "res/BOINCGUIApp.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "connect.xpm"
- "image-document"
- "res/connect.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "disconnect.xpm"
- "image-document"
- "res/disconnect.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "mess.xpm"
- "image-document"
- "res/mess.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "proj.xpm"
- "image-document"
- "res/proj.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "result.xpm"
- "image-document"
- "res/result.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "usage.xpm"
- "image-document"
- "res/usage.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "xfer.xpm"
- "image-document"
- "res/xfer.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "attachprojectwizard.xpm"
- "image-document"
- "res/attachprojectwizard.xpm"
- "image"
- 0
- 0
- 0
- 0
- "21/6/2005"
- 100
-
-
- "wizprogress01.xpm"
- "image-document"
- "res/wizprogress01.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress02.xpm"
- "image-document"
- "res/wizprogress02.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress03.xpm"
- "image-document"
- "res/wizprogress03.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress04.xpm"
- "image-document"
- "res/wizprogress04.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress05.xpm"
- "image-document"
- "res/wizprogress05.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress06.xpm"
- "image-document"
- "res/wizprogress06.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress07.xpm"
- "image-document"
- "res/wizprogress07.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress08.xpm"
- "image-document"
- "res/wizprogress08.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress09.xpm"
- "image-document"
- "res/wizprogress09.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress10.xpm"
- "image-document"
- "res/wizprogress10.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress11.xpm"
- "image-document"
- "res/wizprogress11.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizprogress12.xpm"
- "image-document"
- "res/wizprogress12.xpm"
- "image"
- 0
- 0
- 0
- 0
- "15/7/2005"
- 100
-
-
- "wizard.png"
- "image-document"
- "wizard.png"
- "image"
- 0
- 1
- 0
- 0
- "7/11/2005"
- 100
-
-
- "externalweblink.gif"
- "image-document"
- "res/templates/externalweblink.gif"
- "image"
- 0
- 0
- 0
- 0
- "7/11/2007"
- 100
-
-
-
- "Sources"
- "html-document"
- ""
- "sourcesfolder"
- 1
- 1
- 0
- 1
- "10/2/2005"
-
- "ValidateAccountKey.cpp"
- "source-editor-document"
- "ValidateAccountKey.cpp"
- "source-editor"
- 0
- 0
- 1
- 0
- ""
-
-
- "ValidateURL.cpp"
- "source-editor-document"
- "ValidateURL.cpp"
- "source-editor"
- 0
- 0
- 1
- 0
- ""
-
-
-
-
-
-
diff --git a/clientgui/BOINCTaskBar.cpp b/clientgui/BOINCTaskBar.cpp
index 5e049c6390..963db7e37c 100644
--- a/clientgui/BOINCTaskBar.cpp
+++ b/clientgui/BOINCTaskBar.cpp
@@ -202,7 +202,7 @@ void CTaskBarIcon::OnOpenWebsite(wxCommandEvent& WXUNUSED(event)) {
pDoc->rpc.acct_mgr_info(ami);
url = wxString(ami.acct_mgr_url.c_str(), wxConvUTF8);
- pFrame->ExecuteBrowserLink(url);
+ wxLaunchDefaultBrowser(url);
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnOpenWebsite - Function End"));
}
diff --git a/clientgui/BOINCWizards.h b/clientgui/BOINCWizards.h
index fc03218070..8a66c21b58 100644
--- a/clientgui/BOINCWizards.h
+++ b/clientgui/BOINCWizards.h
@@ -137,11 +137,6 @@ class CErrProxyInfoPage;
class CErrProxyPage;
-// Forward declare special controls
-//
-class wxHyperLink;
-
-
// Wizard Detection
//
#define IS_ATTACHTOPROJECTWIZARD() \
diff --git a/clientgui/DlgAbout.cpp b/clientgui/DlgAbout.cpp
index 92cec20dd9..be4aabdc79 100644
--- a/clientgui/DlgAbout.cpp
+++ b/clientgui/DlgAbout.cpp
@@ -183,8 +183,8 @@ void CDlgAbout::CreateControls() {
itemStaticText14->Create( itemDialog1, wxID_STATIC, _("Berkeley Open Infrastructure for Network Computing"), wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer2->Add(itemStaticText14, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
- m_AboutBOINCURLCtrl = new wxHyperLink;
- m_AboutBOINCURLCtrl->Create( itemDialog1, ID_ABOUTBOINCLINK, wxT("http://boinc.berkeley.edu/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER );
+ m_AboutBOINCURLCtrl = new wxHyperlinkCtrl;
+ m_AboutBOINCURLCtrl->Create( itemDialog1, ID_ABOUTBOINCLINK, wxT("http://boinc.berkeley.edu/"), wxT("http://boinc.berkeley.edu/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxHL_ALIGN_CENTRE | wxHL_CONTEXTMENU );
itemBoxSizer2->Add(m_AboutBOINCURLCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxStaticLine* itemStaticLine15 = new wxStaticLine;
diff --git a/clientgui/DlgAbout.h b/clientgui/DlgAbout.h
index c744f0c64f..b505550515 100644
--- a/clientgui/DlgAbout.h
+++ b/clientgui/DlgAbout.h
@@ -28,7 +28,6 @@
////@begin includes
#include "wx/valgen.h"
-#include "hyperlink.h"
#include "wx/statline.h"
////@end includes
@@ -37,7 +36,6 @@
*/
////@begin forward declarations
-class wxHyperLink;
////@end forward declarations
/*!
@@ -108,7 +106,7 @@ public:
wxStaticText* m_AboutBOINCTitleCtrl;
wxStaticBitmap* m_AboutBOINCLogoCtrl;
wxStaticText* m_AboutBOINCSloganCtrl;
- wxHyperLink* m_AboutBOINCURLCtrl;
+ wxHyperlinkCtrl* m_AboutBOINCURLCtrl;
wxString m_strVersion;
wxString m_strWidgetsVersion;
////@end CDlgAbout member variables
diff --git a/clientgui/DlgAdvPreferences.cpp b/clientgui/DlgAdvPreferences.cpp
index 5b32047cc5..d1e211756f 100644
--- a/clientgui/DlgAdvPreferences.cpp
+++ b/clientgui/DlgAdvPreferences.cpp
@@ -24,7 +24,6 @@
#include "MainDocument.h"
#include "BOINCBaseFrame.h"
#include "SkinManager.h"
-#include "hyperlink.h"
#include "Events.h"
#include "error_numbers.h"
#include "version.h"
@@ -713,7 +712,7 @@ void CDlgAdvPreferences::OnHelp(wxCommandEvent& ev) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
ev.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
}
diff --git a/clientgui/DlgEventLog.cpp b/clientgui/DlgEventLog.cpp
index f072d9adb6..079fad79a3 100644
--- a/clientgui/DlgEventLog.cpp
+++ b/clientgui/DlgEventLog.cpp
@@ -32,7 +32,6 @@
#include "SkinManager.h"
#include "MainDocument.h"
#include "BOINCBaseFrame.h"
-#include "hyperlink.h"
#include "version.h"
#include "DlgEventLogListCtrl.h"
#include "DlgEventLog.h"
@@ -282,7 +281,7 @@ void CDlgEventLog::OnHelp(wxHelpEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CDlgEventLog::OnHelp - Function End"));
@@ -616,7 +615,7 @@ void CDlgEventLog::OnButtonHelp( wxCommandEvent& event ) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CDlgEventLog::OnHelp - Function End"));
diff --git a/clientgui/ProjectInfoPage.cpp b/clientgui/ProjectInfoPage.cpp
index aeced9a22a..b6047945d6 100644
--- a/clientgui/ProjectInfoPage.cpp
+++ b/clientgui/ProjectInfoPage.cpp
@@ -33,7 +33,6 @@
#include "BOINCGUIApp.h"
#include "SkinManager.h"
#include "MainDocument.h"
-#include "hyperlink.h"
#include "ValidateURL.h"
#include "BOINCWizards.h"
#include "BOINCBaseWizard.h"
@@ -447,7 +446,7 @@ void CProjectInfoPage::OnProjectItemChange( ProjectListCtrlEvent& event ) {
*/
void CProjectInfoPage::OnProjectItemDisplay( ProjectListCtrlEvent& event ) {
- wxHyperLink::ExecuteLink( event.GetURL() );
+ wxLaunchDefaultBrowser( event.GetURL() );
}
diff --git a/clientgui/ViewProjects.cpp b/clientgui/ViewProjects.cpp
index e0ae4168ab..7d5029ac8e 100644
--- a/clientgui/ViewProjects.cpp
+++ b/clientgui/ViewProjects.cpp
@@ -537,7 +537,7 @@ void CViewProjects::OnProjectWebsiteClicked( wxEvent& event ) {
pFrame->UpdateStatusText(_("Launching browser..."));
int website_task_index = event.GetId() - ID_TASK_PROJECT_WEB_PROJDEF_MIN;
- pFrame->ExecuteBrowserLink(
+ wxLaunchDefaultBrowser(
m_TaskGroups[1]->m_Tasks[website_task_index]->m_strWebSiteLink
);
diff --git a/clientgui/ViewWork.cpp b/clientgui/ViewWork.cpp
index 3f1f57f625..0528c77b6e 100644
--- a/clientgui/ViewWork.cpp
+++ b/clientgui/ViewWork.cpp
@@ -546,7 +546,7 @@ void CViewWork::OnProjectWebsiteClicked( wxEvent& event ) {
pFrame->UpdateStatusText(_("Launching browser..."));
int website_task_index = event.GetId() - ID_TASK_PROJECT_WEB_PROJDEF_MIN;
- pFrame->ExecuteBrowserLink(
+ wxLaunchDefaultBrowser(
m_TaskGroups[1]->m_Tasks[website_task_index]->m_strWebSiteLink
);
diff --git a/clientgui/WelcomePage.cpp b/clientgui/WelcomePage.cpp
index 43e61f2930..8682ccc80b 100644
--- a/clientgui/WelcomePage.cpp
+++ b/clientgui/WelcomePage.cpp
@@ -35,7 +35,6 @@
#include "BOINCBaseWizard.h"
#include "WizardAttachProject.h"
#include "WelcomePage.h"
-#include "hyperlink.h"
////@begin XPM images
////@end XPM images
@@ -343,7 +342,7 @@ void CWelcomePage::OnChangeApplications( wxCommandEvent& /* event */ ) {
wxASSERT(pWAP);
wxASSERT(wxDynamicCast(pWAP, CWizardAttachProject));
- wxHyperLink::ExecuteLink(wxT("http://www.worldcommunitygrid.org/ms/viewMyProjects.do"));
+ wxLaunchDefaultBrowser(wxT("http://www.worldcommunitygrid.org/ms/viewMyProjects.do"));
pWAP->SimulateCancelButton();
wxLogTrace(wxT("Function Start/End"), wxT("CWelcomePage::OnChangeApplications - Function End"));
diff --git a/clientgui/WizardAttachProject.cpp b/clientgui/WizardAttachProject.cpp
index d43dc9a4e9..32c197ed16 100644
--- a/clientgui/WizardAttachProject.cpp
+++ b/clientgui/WizardAttachProject.cpp
@@ -28,7 +28,6 @@
#include "error_numbers.h"
#include "wizardex.h"
#include "error_numbers.h"
-#include "hyperlink.h"
#include "browser.h"
#include "BOINCGUIApp.h"
#include "SkinManager.h"
@@ -658,17 +657,16 @@ void CWizardAttachProject::_ProcessCancelEvent( wxWizardExEvent& event ) {
*/
void CWizardAttachProject::OnFinished( wxWizardExEvent& event ) {
- CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
if (IsAccountManagerWizard) {
// Attached to an account manager
if (!m_strReturnURL.empty() && GetAttachedToProjectSuccessfully()) {
- pFrame->ExecuteBrowserLink(m_strReturnURL);
+ wxLaunchDefaultBrowser(m_strReturnURL);
}
} else {
// Attached to a project
if (GetAccountCreatedSuccessfully() && GetAttachedToProjectSuccessfully()) {
- pFrame->ExecuteBrowserLink(GetProjectURL() + wxT("account_finish.php?auth=") + GetProjectAuthenticator());
+ wxLaunchDefaultBrowser(GetProjectURL() + wxT("account_finish.php?auth=") + GetProjectAuthenticator());
}
}
diff --git a/clientgui/hyperlink.cpp b/clientgui/hyperlink.cpp
deleted file mode 100644
index 6d7b730a6a..0000000000
--- a/clientgui/hyperlink.cpp
+++ /dev/null
@@ -1,206 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-// File: hyperlink.cpp
-// Purpose: wxHyperLink control
-// Maintainer: Wyo
-// Created: 2003-04-07
-// RCS-ID: $Id$
-// Copyright: (c) 2004 wxCode
-// Licence: wxWindows
-//////////////////////////////////////////////////////////////////////////////
-
-//----------------------------------------------------------------------------
-// information
-//----------------------------------------------------------------------------
-
-
-//----------------------------------------------------------------------------
-// headers
-//----------------------------------------------------------------------------
-
-#include "stdwx.h"
-#include "diagnostics.h"
-#include "util.h"
-#include "mfile.h"
-#include "miofile.h"
-#include "parse.h"
-#include "error_numbers.h"
-#include "Events.h"
-#include "BOINCGUIApp.h"
-#include "SkinManager.h"
-#include "hyperlink.h" // wxHyperLink control
-
-//----------------------------------------------------------------------------
-// resources
-//----------------------------------------------------------------------------
-
-
-//============================================================================
-// declarations
-//============================================================================
-
-
-//============================================================================
-// implementation
-//============================================================================
-
-//----------------------------------------------------------------------------
-// wxHyperLink
-//----------------------------------------------------------------------------
-
-IMPLEMENT_DYNAMIC_CLASS (wxHyperLink, wxStaticText)
-
-BEGIN_EVENT_TABLE (wxHyperLink, wxStaticText)
- EVT_ENTER_WINDOW (wxHyperLink::OnWindowEnter)
- EVT_LEAVE_WINDOW (wxHyperLink::OnWindowLeave)
- EVT_LEFT_DCLICK (wxHyperLink::OnLinkActivate)
- EVT_LEFT_DOWN (wxHyperLink::OnLinkActivate)
-END_EVENT_TABLE()
-
-bool wxHyperLink::Create (wxWindow *parent,
- wxWindowID id,
- const wxString &label,
- const wxPoint &pos,
- const wxSize &size,
- long style,
- const wxString &name) {
- bool okay = FALSE;
-
- // create static text
- okay = wxStaticText::Create (parent, id, label, pos, size, style, name);
- wxASSERT_MSG (okay, wxT("Failed to create wxStaticText, needed by wxHyperLink!"));
-
- // initialize variables
- m_URL = wxEmptyString;
- m_Marked = false;
- m_Visited = false;
- m_MarkedColour = wxColour (wxT("DARK GREY"));
- m_NormalColour = wxColour (wxT("BLUE"));
- m_VisitedColour = wxColour (wxT("PURPLE"));
- m_HoverCursor = wxCursor (wxCURSOR_HAND);
-
- // set foreground colour
- SetForegroundColour (m_NormalColour);
- wxFont font = GetFont();
- font.SetUnderlined (true);
- SetFont (font);
-
- // get background colour
- m_BackgroundColour = GetBackgroundColour ();
-
- return okay;
-} // Create
-
-//----------------------------------------------------------------------------
-// event handlers
-
-void wxHyperLink::OnWindowEnter (wxMouseEvent &WXUNUSED(event)) {
- SetCursor (m_HoverCursor);
- Refresh();
-}
-
-void wxHyperLink::OnWindowLeave (wxMouseEvent &WXUNUSED(event)) {
- SetCursor (wxNullCursor);
- Refresh();
-}
-
-void wxHyperLink::OnLinkActivate (wxMouseEvent &WXUNUSED(event)) {
- m_Visited = TRUE;
- SetForegroundColour (m_VisitedColour);
- SetBackgroundColour (m_BackgroundColour);
- Refresh();
- if (m_URL.IsEmpty()) {
- ExecuteLink (GetLabel());
- }else{
- ExecuteLink (m_URL);
- }
-}
-
-//----------------------------------------------------------------------------
-// settings functions
-
-wxCursor wxHyperLink::GetHoverCursor () {
- return m_HoverCursor;
-}
-
-void wxHyperLink::SetHoverCursor (wxCursor cursor) {
- m_HoverCursor = cursor;
-}
-
-wxColour wxHyperLink::GetMarkedColour () {
- return m_MarkedColour;
-}
-
-void wxHyperLink::SetMarkedColour (wxColour colour) {
- m_MarkedColour = colour;
-}
-
-wxColour wxHyperLink::GetNormalColour () {
- return m_NormalColour;
-}
-
-void wxHyperLink::SetNormalColour (wxColour colour) {
- m_NormalColour = colour;
- if (!m_Visited) {
- SetForegroundColour (m_NormalColour);
- }else{
- SetForegroundColour (m_VisitedColour);
- }
- Refresh();
-}
-
-wxColour wxHyperLink::GetVisitedColour () {
- return m_VisitedColour;
-}
-
-void wxHyperLink::SetVisitedColour (wxColour colour) {
- m_VisitedColour = colour;
- if (!m_Visited) {
- SetForegroundColour (m_NormalColour);
- }else{
- SetForegroundColour (m_VisitedColour);
- }
- Refresh();
-}
-
-wxString wxHyperLink::GetURL () {
- return m_URL;
-}
-
-void wxHyperLink::SetURL (const wxString &url) {
- m_URL = url;
-}
-
-void wxHyperLink::ExecuteLink (const wxString &strLink) {
- if (!wxLaunchDefaultBrowser(strLink)) {
- wxString strDialogTitle = wxEmptyString;
- wxString strDialogMessage = wxEmptyString;
-
- // %s is the application name
- // i.e. 'BOINC Manager', 'GridRepublic Manager'
- strDialogTitle.Printf(
- _("%s - Can't find web browser"),
- wxGetApp().GetSkinManager()->GetAdvanced()->GetApplicationName().c_str()
- );
-
- // 1st %s is the application name
- // i.e. 'BOINC Manager', 'GridRepublic Manager'
- // 2nd %s is the URL that the browser is supposed to
- // open.
- // 3rd %s is the application name
- // i.e. 'BOINC Manager', 'GridRepublic Manager'
- strDialogMessage.Printf(
- _("%s tried to display the web page\n\t%s\nbut couldn't find a web browser.\nTo fix this, set the environment variable\nBROWSER to the path of your web browser,\nthen restart the %s."),
- wxGetApp().GetSkinManager()->GetAdvanced()->GetApplicationName().c_str(),
- strLink.c_str(),
- wxGetApp().GetSkinManager()->GetAdvanced()->GetApplicationName().c_str()
- );
-
- ::wxGetApp().SafeMessageBox(
- strDialogMessage,
- strDialogTitle,
- wxOK | wxICON_INFORMATION
- );
- }
-}
-
-const char *BOINC_RCSID_d587835b7e="$Id$";
diff --git a/clientgui/hyperlink.h b/clientgui/hyperlink.h
deleted file mode 100644
index 5777667bb5..0000000000
--- a/clientgui/hyperlink.h
+++ /dev/null
@@ -1,106 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-// File: hyperlink.h
-// Purpose: wxHyperLink control
-// Maintainer: Wyo
-// Created: 2003-04-07
-// RCS-ID: $Id$
-// Copyright: (c) 2004 wxCode
-// Licence: wxWindows
-//////////////////////////////////////////////////////////////////////////////
-
-#ifndef _MY_HYPERLINK_H_
-#define _MY_HYPERLINK_H_
-
-#ifdef __GNUG__
- #pragma implementation "hyperlink.h"
-#endif
-
-//----------------------------------------------------------------------------
-// information
-//----------------------------------------------------------------------------
-
-
-//----------------------------------------------------------------------------
-// headers
-//----------------------------------------------------------------------------
-//! wxWidgets headers
-
-
-//============================================================================
-// declarations
-//============================================================================
-
-//----------------------------------------------------------------------------
-//!
-
-
-//----------------------------------------------------------------------------
-//! wxHyperLink
-class wxHyperLink: public wxStaticText {
-
-DECLARE_DYNAMIC_CLASS (wxHyperLink)
-
-public:
-
- //! default constructor
- wxHyperLink () {}
-
- //! create constructor
- wxHyperLink (wxWindow *parent,
- wxWindowID id,
- const wxString &label = wxEmptyString,
- const wxPoint &pos = wxDefaultPosition,
- const wxSize &size = wxDefaultSize,
- long style = 0,
- const wxString &name = _T("HyperLink")) {
- Create (parent, id, label, pos, size, style, name);
- }
-
- // function create
- bool Create (wxWindow *parent,
- wxWindowID id,
- const wxString &label = wxEmptyString,
- const wxPoint &pos = wxDefaultPosition,
- const wxSize &size = wxDefaultSize,
- long style = 0,
- const wxString &name = _T("HyperLink"));
-
- // event handlers
- void OnWindowEnter (wxMouseEvent& event);
- void OnWindowLeave (wxMouseEvent& event);
- void OnLinkActivate (wxMouseEvent& event);
-
- // get/set settings
- wxCursor GetHoverCursor ();
- void SetHoverCursor (wxCursor cursor);
- wxColour GetMarkedColour ();
- void SetMarkedColour (wxColour colour);
- wxColour GetNormalColour ();
- void SetNormalColour (wxColour colour);
- wxColour GetVisitedColour ();
- void SetVisitedColour (wxColour colour);
- wxString GetURL ();
- void SetURL (const wxString &url);
-
- //! execute according to mimetype
- static void ExecuteLink (const wxString &link);
-
-private:
-
- //! hypertext variables
- wxString m_URL;
- bool m_Marked;
- bool m_Visited;
-
- //! style settings
- wxCursor m_HoverCursor;
- wxColour m_MarkedColour;
- wxColour m_NormalColour;
- wxColour m_VisitedColour;
- wxColour m_BackgroundColour;
-
- DECLARE_EVENT_TABLE()
-};
-
-#endif // _MY_HYPERLINK_H_
-
diff --git a/clientgui/sg_BoincSimpleGUI.cpp b/clientgui/sg_BoincSimpleGUI.cpp
index b093ec3d5b..cd5d1d4857 100644
--- a/clientgui/sg_BoincSimpleGUI.cpp
+++ b/clientgui/sg_BoincSimpleGUI.cpp
@@ -281,7 +281,7 @@ void CSimpleFrame::OnHelpBOINC(wxCommandEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnHelpBOINC - Function End"));
@@ -301,7 +301,7 @@ void CSimpleFrame::OnHelp(wxHelpEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CSimpleFrame::OnHelp - Function End"));
diff --git a/clientgui/sg_DlgMessages.cpp b/clientgui/sg_DlgMessages.cpp
index 9af64dad28..07c7d6247f 100644
--- a/clientgui/sg_DlgMessages.cpp
+++ b/clientgui/sg_DlgMessages.cpp
@@ -32,7 +32,6 @@
#include "SkinManager.h"
#include "MainDocument.h"
#include "BOINCBaseFrame.h"
-#include "hyperlink.h"
#include "version.h"
#include "sg_DlgMessages.h"
@@ -452,7 +451,7 @@ void CPanelMessages::OnButtonHelp( wxCommandEvent& event ) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CPanelMessages::OnHelp - Function End"));
@@ -844,7 +843,7 @@ void CDlgMessages::OnHelp(wxHelpEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CDlgMessages::OnHelp - Function End"));
diff --git a/clientgui/sg_DlgPreferences.cpp b/clientgui/sg_DlgPreferences.cpp
index 22a6c119a5..9be87fb64a 100644
--- a/clientgui/sg_DlgPreferences.cpp
+++ b/clientgui/sg_DlgPreferences.cpp
@@ -31,7 +31,6 @@
#include "SkinManager.h"
#include "MainDocument.h"
#include "BOINCBaseFrame.h"
-#include "hyperlink.h"
#include "version.h"
#include "sg_CustomControls.h"
@@ -574,7 +573,7 @@ void CPanelPreferences::OnButtonHelp( wxCommandEvent& event ) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CPanelPreferences::OnHelp - Function End"));
@@ -1080,7 +1079,7 @@ void CDlgPreferences::OnHelp(wxHelpEvent& event) {
wxString(BOINC_VERSION_STRING, wxConvUTF8).c_str(),
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
}
wxLogTrace(wxT("Function Start/End"), wxT("CDlgPreferences::OnHelp - Function End"));
diff --git a/clientgui/sg_ProjectsComponent.cpp b/clientgui/sg_ProjectsComponent.cpp
index 70a8c34323..0d89bc57a9 100644
--- a/clientgui/sg_ProjectsComponent.cpp
+++ b/clientgui/sg_ProjectsComponent.cpp
@@ -27,7 +27,6 @@
#include "parse.h"
#include "error_numbers.h"
#include "Events.h"
-#include "hyperlink.h"
#include "BOINCGUIApp.h"
#include "SkinManager.h"
#include "MainDocument.h"
@@ -406,7 +405,7 @@ void CProjectsComponent::OnHelp(wxCommandEvent& event) {
event.GetId()
);
- wxGetApp().GetFrame()->ExecuteBrowserLink(wxurl);
+ wxLaunchDefaultBrowser(wxurl);
wxLogTrace(wxT("Function Start/End"), wxT("CProjectsComponent::OnHelp - Function End"));
}
diff --git a/clientgui/sg_StatImageLoader.cpp b/clientgui/sg_StatImageLoader.cpp
index 3e0bd7424d..7fbc1d3bd8 100644
--- a/clientgui/sg_StatImageLoader.cpp
+++ b/clientgui/sg_StatImageLoader.cpp
@@ -174,7 +174,7 @@ void StatImageLoader::OnMenuLinkClicked(wxCommandEvent& event)
CBOINCBaseFrame* pFrame = wxDynamicCast(m_parent->GetParent(),CBOINCBaseFrame);
wxASSERT(pFrame);
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
- pFrame->ExecuteBrowserLink(wxString(m_prjUrl.c_str(),wxConvUTF8));
+ wxLaunchDefaultBrowser(wxString(m_prjUrl.c_str(),wxConvUTF8));
} else{
int menuId = menuIDevt - WEBSITE_URL_MENU_ID;
PROJECT* project = pDoc->state.lookup_project(m_prjUrl);
@@ -183,7 +183,7 @@ void StatImageLoader::OnMenuLinkClicked(wxCommandEvent& event)
CBOINCBaseFrame* pFrame = wxDynamicCast(m_parent->GetParent(),CBOINCBaseFrame);
wxASSERT(pFrame);
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
- pFrame->ExecuteBrowserLink(wxString(project->gui_urls[menuId].url.c_str(),wxConvUTF8));
+ wxLaunchDefaultBrowser(wxString(project->gui_urls[menuId].url.c_str(),wxConvUTF8));
}
}
diff --git a/clientgui/stdwx.h b/clientgui/stdwx.h
index 9d00e09548..b1b4d4a025 100644
--- a/clientgui/stdwx.h
+++ b/clientgui/stdwx.h
@@ -111,10 +111,9 @@
#include
#include
#include
-
+#include
#ifdef _WIN32
-
// Visual Studio 2005 has extended the C Run-Time Library by including "secure"
// runtime functions and deprecating the previous function prototypes. Since
// we need to use the previous prototypes to maintain compatibility with other
diff --git a/win_build/boinc_ss.vcproj b/win_build/boinc_ss.vcproj
index 205b654fdb..8477df9829 100644
--- a/win_build/boinc_ss.vcproj
+++ b/win_build/boinc_ss.vcproj
@@ -611,6 +611,10 @@
RelativePath="..\lib\network.cpp"
>
+
+
@@ -696,6 +700,10 @@
RelativePath="..\lib\network.h"
>
+
+
diff --git a/win_build/boincmgr.vcproj b/win_build/boincmgr.vcproj
index a70c8547bf..9741718953 100644
--- a/win_build/boincmgr.vcproj
+++ b/win_build/boincmgr.vcproj
@@ -1668,22 +1668,6 @@
RelativePath="..\clientgui\browser.h"
>
-
-
-
-
-
-
-
-
diff --git a/win_build/libboinc_staticcrt.vcproj b/win_build/libboinc_staticcrt.vcproj
index 97af760da6..d2dc9d60f1 100644
--- a/win_build/libboinc_staticcrt.vcproj
+++ b/win_build/libboinc_staticcrt.vcproj
@@ -1007,6 +1007,10 @@
RelativePath="..\lib\network.cpp"
>
+
+
@@ -1357,6 +1361,10 @@
RelativePath="..\lib\network.h"
>
+
+