Changeset 328 for AE/Installer
- Timestamp:
- Jun 1, 2009, 4:04:33 AM (15 years ago)
- Location:
- AE/Installer/trunk/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/main_window.cpp
r327 r328 937 937 EVT_RADIOBUTTON( NoSep_RadioButton, MainWindow::OnNoSepRadioButtonSelected ) 938 938 939 EVT_RADIOBUTTON( Sep arated_RadioButton, MainWindow::OnSeparatedRadioButtonSelected )939 EVT_RADIOBUTTON( Seperated_RadioButton, MainWindow::OnSeperatedRadioButtonSelected ) 940 940 941 941 EVT_RADIOBUTTON( Complete_RadioButton, MainWindow::OnCompleteRadioButtonSelected ) … … 1022 1022 SepRadio = NULL; 1023 1023 NoSepRadio = NULL; 1024 Sep aratedRadio = NULL;1024 SeperatedRadio = NULL; 1025 1025 CompleteRadio = NULL; 1026 1026 ReglobalizeButton = NULL; … … 1039 1039 { 1040 1040 ////@begin MainWindow content construction 1041 // Generated by DialogBlocks, 31/05/2009 19:03:55 (unregistered) 1042 1041 1043 MainWindow* itemFrame1 = this; 1042 1044 … … 1124 1126 itemBoxSizer11->Add(itemStaticLine17, 0, wxGROW|wxALL, 5); 1125 1127 1126 descriptionText = new wxTextCtrl( itemPanel10, Description_Text, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY|wxTE_RICH|wxTE_ RICH2);1128 descriptionText = new wxTextCtrl( itemPanel10, Description_Text, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY|wxTE_RICH|wxTE_AUTO_URL ); 1127 1129 descriptionText->SetName(_T("DescriptionName")); 1128 1130 descriptionText->SetBackgroundColour(wxColour(240, 240, 240)); … … 1141 1143 itemBoxSizer2->Add(itemBoxSizer20, 0, wxGROW|wxALL, 0); 1142 1144 1143 ProgressBar = new wxGauge( itemFrame1, ProgressBar_Gauge, 1000, wxDefaultPosition, wx DefaultSize, wxGA_SMOOTH );1145 ProgressBar = new wxGauge( itemFrame1, ProgressBar_Gauge, 1000, wxDefaultPosition, wxSize(-1, 30), wxGA_SMOOTH ); 1144 1146 ProgressBar->SetValue(0); 1145 1147 itemBoxSizer20->Add(ProgressBar, 1, wxGROW|wxALL, 0); 1146 1148 1147 InstallButton = new wxButton( itemFrame1, Install_Button, _("Install!"), wxDefaultPosition, wx DefaultSize, 0 );1149 InstallButton = new wxButton( itemFrame1, Install_Button, _("Install!"), wxDefaultPosition, wxSize(-1, 30), 0 ); 1148 1150 itemBoxSizer20->Add(InstallButton, 0, wxGROW|wxALL, 0); 1149 1151 … … 1178 1180 itemBoxSizer25->Add(itemBoxSizer30, 0, wxGROW|wxALL, 5); 1179 1181 1180 Sep aratedRadio = new wxRadioButton( OptionsPanel, Separated_RadioButton, _("Separated Level0"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP );1181 Sep aratedRadio->SetValue(false);1182 Sep aratedRadio->SetName(_T("Separated_RadioButton"));1183 itemBoxSizer30->Add(Sep aratedRadio, 0, wxALIGN_LEFT|wxALL, 5);1182 SeperatedRadio = new wxRadioButton( OptionsPanel, Seperated_RadioButton, _("Separated Level0"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP ); 1183 SeperatedRadio->SetValue(false); 1184 SeperatedRadio->SetName(_T("Seperated_RadioButton")); 1185 itemBoxSizer30->Add(SeperatedRadio, 0, wxALIGN_LEFT|wxALL, 5); 1184 1186 1185 1187 CompleteRadio = new wxRadioButton( OptionsPanel, Complete_RadioButton, _("Complete Level0"), wxDefaultPosition, wxDefaultSize, 0 ); … … 1634 1636 } 1635 1637 1638 1639 /* 1640 * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton 1641 */ 1642 1643 void MainWindow::OnSeperatedRadioButtonSelected( wxCommandEvent& event ) 1644 { 1645 ////@begin wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton in MainWindow. 1646 // Before editing this code, remove the block markers. 1647 event.Skip(); 1648 ////@end wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton in MainWindow. 1649 } 1650 -
AE/Installer/trunk/source/main_window.h
r325 r328 57 57 #define Sep_RadioButton 10013 58 58 #define NoSep_RadioButton 10014 59 #define Sep arated_RadioButton 1001559 #define Seperated_RadioButton 10015 60 60 #define Complete_RadioButton 10016 61 61 #define ReGlobalize_Button 10018 62 62 #define wxID_LOAD 10006 63 63 #define wxID_OPTIONS 10017 64 #define SYMBOL_MAINWINDOW_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxCLOSE_BOX 64 #define SYMBOL_MAINWINDOW_STYLE wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU|wxMINIMIZE_BOX|wxMAXIMIZE_BOX|wxCLOSE_BOX|wxSIMPLE_BORDER 65 65 #define SYMBOL_MAINWINDOW_TITLE _("Installer") 66 66 #define SYMBOL_MAINWINDOW_IDNAME ID_MAINWINDOW … … 128 128 void OnNoSepRadioButtonSelected( wxCommandEvent& event ); 129 129 130 /// wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Sep arated_RadioButton131 void OnSep aratedRadioButtonSelected( wxCommandEvent& event );130 /// wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton 131 void OnSeperatedRadioButtonSelected( wxCommandEvent& event ); 132 132 133 133 /// wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Complete_RadioButton … … 180 180 wxRadioButton* SepRadio; 181 181 wxRadioButton* NoSepRadio; 182 wxRadioButton* Sep aratedRadio;182 wxRadioButton* SeperatedRadio; 183 183 wxRadioButton* CompleteRadio; 184 184 wxButton* ReglobalizeButton;
Note:
See TracChangeset
for help on using the changeset viewer.