Changeset 328 for AE/Installer/trunk/source/main_window.cpp
- Timestamp:
- Jun 1, 2009, 4:04:33 AM (16 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.