Changeset 41373 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 21, 2012 5:41:41 PM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 12 deleted
- 7 edited
- 4 copied
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r41372 r41373 361 361 src/wizards/UIWizardPage.h \ 362 362 src/wizards/newvm/UIWizardNewVM.h \ 363 src/wizards/newvm/UIWizardNewVMPageBasic1.h \ 363 364 src/wizards/newvm/UIWizardNewVMPageBasic2.h \ 364 365 src/wizards/newvm/UIWizardNewVMPageBasic3.h \ 365 src/wizards/newvm/UIWizardNewVMPageBasic4.h \366 366 src/wizards/newvm/UIWizardNewVMPageExpert.h \ 367 367 src/wizards/newvd/UIWizardNewVD.h \ … … 392 392 src/wizards/importappliance/UIWizardImportAppPageExpert.h \ 393 393 src/wizards/firstrun/UIWizardFirstRun.h \ 394 src/wizards/firstrun/UIWizardFirstRunPageBasic 2.h394 src/wizards/firstrun/UIWizardFirstRunPageBasic.h 395 395 396 396 VirtualBox_QT_MOCHDRS.darwin += \ … … 570 570 src/wizards/UIWizardPage.cpp \ 571 571 src/wizards/newvm/UIWizardNewVM.cpp \ 572 src/wizards/newvm/UIWizardNewVMPageBasic1.cpp \ 572 573 src/wizards/newvm/UIWizardNewVMPageBasic2.cpp \ 573 574 src/wizards/newvm/UIWizardNewVMPageBasic3.cpp \ 574 src/wizards/newvm/UIWizardNewVMPageBasic4.cpp \575 575 src/wizards/newvm/UIWizardNewVMPageExpert.cpp \ 576 576 src/wizards/newvd/UIWizardNewVD.cpp \ … … 601 601 src/wizards/importappliance/UIWizardImportAppPageExpert.cpp \ 602 602 src/wizards/firstrun/UIWizardFirstRun.cpp \ 603 src/wizards/firstrun/UIWizardFirstRunPageBasic 2.cpp603 src/wizards/firstrun/UIWizardFirstRunPageBasic.cpp 604 604 605 605 VirtualBox_SOURCES.win += \ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVM.h
r41021 r41373 54 54 55 55 /* Who will be able to clone virtual-machine: */ 56 friend class UIWizardCloneVMPageBasic1;57 56 friend class UIWizardCloneVMPageBasic2; 58 57 friend class UIWizardCloneVMPageBasic3; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/firstrun/UIWizardFirstRun.cpp
r41372 r41373 20 20 /* Local includes: */ 21 21 #include "UIWizardFirstRun.h" 22 #include "UIWizardFirstRunPageBasic 2.h"22 #include "UIWizardFirstRunPageBasic.h" 23 23 #include "VBoxGlobal.h" 24 24 #include "UIMessageCenter.h" … … 100 100 case UIWizardMode_Basic: 101 101 { 102 setPage(Page 1, new UIWizardFirstRunPageBasic2(m_machine.GetId(), m_fHardDiskWasSet));102 setPage(Page, new UIWizardFirstRunPageBasic(m_machine.GetId(), m_fHardDiskWasSet)); 103 103 break; 104 104 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/firstrun/UIWizardFirstRun.h
r41372 r41373 34 34 enum 35 35 { 36 Page1, 37 Page2, 38 Page3 39 }; 40 41 /* Page IDs: */ 42 enum 43 { 44 PageExpert 36 Page 45 37 }; 46 38 … … 53 45 bool insertMedium(); 54 46 55 /* Who will be able to export appliance: */56 friend class UIWizardFirstRunPageBasic 2;47 /* Who will be able to start VM: */ 48 friend class UIWizardFirstRunPageBasic; 57 49 58 50 private: -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/firstrun/UIWizardFirstRunPageBasic.cpp
r41372 r41373 3 3 * 4 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 5 * UIWizardFirstRunPageBasic 2class implementation5 * UIWizardFirstRunPageBasic class implementation 6 6 */ 7 7 … … 24 24 25 25 /* Local includes: */ 26 #include "UIWizardFirstRunPageBasic 2.h"26 #include "UIWizardFirstRunPageBasic.h" 27 27 #include "UIWizardFirstRun.h" 28 28 #include "COMDefs.h" … … 34 34 #include "QIRichTextLabel.h" 35 35 36 UIWizardFirstRunPage 2::UIWizardFirstRunPage2(bool fBootHardDiskWasSet)36 UIWizardFirstRunPage::UIWizardFirstRunPage(bool fBootHardDiskWasSet) 37 37 : m_fBootHardDiskWasSet(fBootHardDiskWasSet) 38 38 { 39 39 } 40 40 41 void UIWizardFirstRunPage 2::onOpenMediumWithFileOpenDialog()41 void UIWizardFirstRunPage::onOpenMediumWithFileOpenDialog() 42 42 { 43 43 /* Get opened vboxMedium id: */ … … 48 48 } 49 49 50 QString UIWizardFirstRunPage 2::id() const50 QString UIWizardFirstRunPage::id() const 51 51 { 52 52 return m_pMediaSelector->id(); 53 53 } 54 54 55 void UIWizardFirstRunPage 2::setId(const QString &strId)55 void UIWizardFirstRunPage::setId(const QString &strId) 56 56 { 57 57 m_pMediaSelector->setCurrentItem(strId); 58 58 } 59 59 60 UIWizardFirstRunPageBasic 2::UIWizardFirstRunPageBasic2(const QString &strMachineId, bool fBootHardDiskWasSet)61 : UIWizardFirstRunPage 2(fBootHardDiskWasSet)60 UIWizardFirstRunPageBasic::UIWizardFirstRunPageBasic(const QString &strMachineId, bool fBootHardDiskWasSet) 61 : UIWizardFirstRunPage(fBootHardDiskWasSet) 62 62 { 63 63 /* Create widgets: */ … … 100 100 } 101 101 102 void UIWizardFirstRunPageBasic 2::sltOpenMediumWithFileOpenDialog()102 void UIWizardFirstRunPageBasic::sltOpenMediumWithFileOpenDialog() 103 103 { 104 104 /* Call to base-class: */ … … 106 106 } 107 107 108 void UIWizardFirstRunPageBasic 2::retranslateUi()108 void UIWizardFirstRunPageBasic::retranslateUi() 109 109 { 110 110 /* Translate widgets: */ … … 130 130 } 131 131 132 void UIWizardFirstRunPageBasic 2::initializePage()132 void UIWizardFirstRunPageBasic::initializePage() 133 133 { 134 134 /* Translate page: */ … … 136 136 } 137 137 138 bool UIWizardFirstRunPageBasic 2::isComplete() const138 bool UIWizardFirstRunPageBasic::isComplete() const 139 139 { 140 140 /* Make sure valid medium chosen: */ … … 142 142 } 143 143 144 bool UIWizardFirstRunPageBasic 2::validatePage()144 bool UIWizardFirstRunPageBasic::validatePage() 145 145 { 146 146 /* Initial result: */ … … 161 161 } 162 162 163 QString UIWizardFirstRunPageBasic 2::source() const163 QString UIWizardFirstRunPageBasic::source() const 164 164 { 165 165 return m_pMediaSelector->currentText(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/firstrun/UIWizardFirstRunPageBasic.h
r41372 r41373 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * UIWizardFirstRunPageBasic 2class declaration4 * UIWizardFirstRunPageBasic class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __UIWizardFirstRunPageBasic 2_h__20 #define __UIWizardFirstRunPageBasic 2_h__19 #ifndef __UIWizardFirstRunPageBasic_h__ 20 #define __UIWizardFirstRunPageBasic_h__ 21 21 22 22 /* Local includes: */ … … 30 30 class QIRichTextLabel; 31 31 32 /* 2ndpage of the First Run wizard (base part): */33 class UIWizardFirstRunPage 2: public UIWizardPageBase32 /* Single page of the First Run wizard (base part): */ 33 class UIWizardFirstRunPage : public UIWizardPageBase 34 34 { 35 35 protected: 36 36 37 37 /* Constructor: */ 38 UIWizardFirstRunPage 2(bool fBootHardDiskWasSet);38 UIWizardFirstRunPage(bool fBootHardDiskWasSet); 39 39 40 40 /* Handlers: */ … … 54 54 }; 55 55 56 /* 2ndpage of the First Run wizard (basic extension): */57 class UIWizardFirstRunPageBasic 2 : public UIWizardPage, public UIWizardFirstRunPage256 /* Single page of the First Run wizard (basic extension): */ 57 class UIWizardFirstRunPageBasic : public UIWizardPage, public UIWizardFirstRunPage 58 58 { 59 59 Q_OBJECT; … … 64 64 65 65 /* Constructor: */ 66 UIWizardFirstRunPageBasic 2(const QString &strMachineId, bool fBootHardDiskWasSet);66 UIWizardFirstRunPageBasic(const QString &strMachineId, bool fBootHardDiskWasSet); 67 67 68 68 protected: … … 97 97 }; 98 98 99 #endif // __UIWizardFirstRunPageBasic 2_h__99 #endif // __UIWizardFirstRunPageBasic_h__ 100 100 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp
r41372 r41373 20 20 /* Local includes: */ 21 21 #include "UIWizardNewVM.h" 22 #include "UIWizardNewVMPageBasic1.h" 22 23 #include "UIWizardNewVMPageBasic2.h" 23 24 #include "UIWizardNewVMPageBasic3.h" 24 #include "UIWizardNewVMPageBasic4.h"25 25 #include "UIWizardNewVMPageExpert.h" 26 26 #include "VBoxDefs.h" … … 271 271 case UIWizardMode_Basic: 272 272 { 273 setPage(Page1, new UIWizardNewVMPageBasic 2);274 setPage(Page2, new UIWizardNewVMPageBasic 3);275 setPage(Page3, new UIWizardNewVMPageBasic 4);273 setPage(Page1, new UIWizardNewVMPageBasic1); 274 setPage(Page2, new UIWizardNewVMPageBasic2); 275 setPage(Page3, new UIWizardNewVMPageBasic3); 276 276 break; 277 277 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.h
r41372 r41373 36 36 Page1, 37 37 Page2, 38 Page3, 39 Page4 38 Page3 40 39 }; 41 40 … … 55 54 56 55 /* Who will be able to create virtual-machine: */ 57 friend class UIWizardNewVMPageBasic 4;56 friend class UIWizardNewVMPageBasic3; 58 57 friend class UIWizardNewVMPageExpert; 59 58 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp
r41372 r41373 3 3 * 4 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 5 * UIWizardNewVMPageBasic 2class implementation5 * UIWizardNewVMPageBasic1 class implementation 6 6 */ 7 7 … … 26 26 27 27 /* Local includes: */ 28 #include "UIWizardNewVMPageBasic 2.h"28 #include "UIWizardNewVMPageBasic1.h" 29 29 #include "UIWizardNewVM.h" 30 30 #include "UIMessageCenter.h" … … 138 138 }; 139 139 140 UIWizardNewVMPage 2::UIWizardNewVMPage2()141 { 142 } 143 144 void UIWizardNewVMPage 2::onNameChanged(const QString &strNewName)140 UIWizardNewVMPage1::UIWizardNewVMPage1() 141 { 142 } 143 144 void UIWizardNewVMPage1::onNameChanged(const QString &strNewName) 145 145 { 146 146 /* Search for a matching OS type based on the string the user typed already. */ … … 155 155 } 156 156 157 void UIWizardNewVMPage 2::onOsTypeChanged()157 void UIWizardNewVMPage1::onOsTypeChanged() 158 158 { 159 159 /* If the user manually edited the OS type, we didn't want our automatic OS type guessing anymore. … … 162 162 } 163 163 164 bool UIWizardNewVMPage 2::machineFolderCreated()164 bool UIWizardNewVMPage1::machineFolderCreated() 165 165 { 166 166 return !m_strMachineFolder.isEmpty(); 167 167 } 168 168 169 bool UIWizardNewVMPage 2::createMachineFolder()169 bool UIWizardNewVMPage1::createMachineFolder() 170 170 { 171 171 /* Cleanup previosly created folder if any: */ … … 208 208 } 209 209 210 bool UIWizardNewVMPage 2::cleanupMachineFolder()210 bool UIWizardNewVMPage1::cleanupMachineFolder() 211 211 { 212 212 /* Make sure folder was previosly created: */ … … 222 222 } 223 223 224 UIWizardNewVMPageBasic 2::UIWizardNewVMPageBasic2()224 UIWizardNewVMPageBasic1::UIWizardNewVMPageBasic1() 225 225 { 226 226 /* Create widgets: */ … … 266 266 } 267 267 268 void UIWizardNewVMPageBasic 2::sltNameChanged(const QString &strNewName)268 void UIWizardNewVMPageBasic1::sltNameChanged(const QString &strNewName) 269 269 { 270 270 /* Call to base-class: */ … … 272 272 } 273 273 274 void UIWizardNewVMPageBasic 2::sltOsTypeChanged()274 void UIWizardNewVMPageBasic1::sltOsTypeChanged() 275 275 { 276 276 /* Call to base-class: */ … … 278 278 } 279 279 280 void UIWizardNewVMPageBasic 2::retranslateUi()280 void UIWizardNewVMPageBasic1::retranslateUi() 281 281 { 282 282 /* Translate page: */ … … 292 292 } 293 293 294 void UIWizardNewVMPageBasic 2::initializePage()294 void UIWizardNewVMPageBasic1::initializePage() 295 295 { 296 296 /* Translate page: */ … … 301 301 } 302 302 303 void UIWizardNewVMPageBasic 2::cleanupPage()303 void UIWizardNewVMPageBasic1::cleanupPage() 304 304 { 305 305 /* Cleanup: */ … … 309 309 } 310 310 311 bool UIWizardNewVMPageBasic 2::validatePage()311 bool UIWizardNewVMPageBasic1::validatePage() 312 312 { 313 313 /* Try to create machine folder: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.h
r41361 r41373 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * UIWizardNewVMPageBasic 2class declaration4 * UIWizardNewVMPageBasic1 class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __UIWizardNewVMPageBasic 2_h__20 #define __UIWizardNewVMPageBasic 2_h__19 #ifndef __UIWizardNewVMPageBasic1_h__ 20 #define __UIWizardNewVMPageBasic1_h__ 21 21 22 22 /* Local includes: */ … … 29 29 class QIRichTextLabel; 30 30 31 /* 2ndpage of the New Virtual Machine wizard (base part): */32 class UIWizardNewVMPage 2: public UIWizardPageBase31 /* 1st page of the New Virtual Machine wizard (base part): */ 32 class UIWizardNewVMPage1 : public UIWizardPageBase 33 33 { 34 34 protected: 35 35 36 36 /* Constructor: */ 37 UIWizardNewVMPage 2();37 UIWizardNewVMPage1(); 38 38 39 39 /* Handlers: */ … … 65 65 }; 66 66 67 /* 2ndpage of the New Virtual Machine wizard (basic extension): */68 class UIWizardNewVMPageBasic 2 : public UIWizardPage, public UIWizardNewVMPage267 /* 1st page of the New Virtual Machine wizard (basic extension): */ 68 class UIWizardNewVMPageBasic1 : public UIWizardPage, public UIWizardNewVMPage1 69 69 { 70 70 Q_OBJECT; … … 75 75 76 76 /* Constructor: */ 77 UIWizardNewVMPageBasic 2();77 UIWizardNewVMPageBasic1(); 78 78 79 79 protected: … … 104 104 }; 105 105 106 #endif // __UIWizardNewVMPageBasic 2_h__106 #endif // __UIWizardNewVMPageBasic1_h__ 107 107 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic2.cpp
r41372 r41373 3 3 * 4 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 5 * UIWizardNewVMPageBasic 3class implementation5 * UIWizardNewVMPageBasic2 class implementation 6 6 */ 7 7 … … 27 27 28 28 /* Local includes: */ 29 #include "UIWizardNewVMPageBasic 3.h"29 #include "UIWizardNewVMPageBasic2.h" 30 30 #include "UIWizardNewVM.h" 31 31 #include "COMDefs.h" … … 35 35 #include "QIRichTextLabel.h" 36 36 37 UIWizardNewVMPage 3::UIWizardNewVMPage3()37 UIWizardNewVMPage2::UIWizardNewVMPage2() 38 38 { 39 39 } 40 40 41 void UIWizardNewVMPage 3::onRamSliderValueChanged(int iValue)41 void UIWizardNewVMPage2::onRamSliderValueChanged(int iValue) 42 42 { 43 43 /* Update 'ram' field editor connected to slider: */ … … 47 47 } 48 48 49 void UIWizardNewVMPage 3::onRamEditorTextChanged(const QString &strText)49 void UIWizardNewVMPage2::onRamEditorTextChanged(const QString &strText) 50 50 { 51 51 /* Update 'ram' field slider connected to editor: */ … … 55 55 } 56 56 57 UIWizardNewVMPageBasic 3::UIWizardNewVMPageBasic3()57 UIWizardNewVMPageBasic2::UIWizardNewVMPageBasic2() 58 58 { 59 59 /* Create widget: */ … … 113 113 } 114 114 115 void UIWizardNewVMPageBasic 3::sltRamSliderValueChanged(int iValue)115 void UIWizardNewVMPageBasic2::sltRamSliderValueChanged(int iValue) 116 116 { 117 117 /* Call to base-class: */ … … 122 122 } 123 123 124 void UIWizardNewVMPageBasic 3::sltRamEditorTextChanged(const QString &strText)124 void UIWizardNewVMPageBasic2::sltRamEditorTextChanged(const QString &strText) 125 125 { 126 126 /* Call to base-class: */ … … 131 131 } 132 132 133 void UIWizardNewVMPageBasic 3::retranslateUi()133 void UIWizardNewVMPageBasic2::retranslateUi() 134 134 { 135 135 /* Translate page: */ … … 149 149 } 150 150 151 void UIWizardNewVMPageBasic 3::initializePage()151 void UIWizardNewVMPageBasic2::initializePage() 152 152 { 153 153 /* Translate page: */ … … 163 163 } 164 164 165 bool UIWizardNewVMPageBasic 3::isComplete() const165 bool UIWizardNewVMPageBasic2::isComplete() const 166 166 { 167 167 /* Make sure 'ram' field feats the bounds: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic2.h
r41372 r41373 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * UIWizardNewVMPageBasic 3class declaration4 * UIWizardNewVMPageBasic2 class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __UIWizardNewVMPageBasic 3_h__20 #define __UIWizardNewVMPageBasic 3_h__19 #ifndef __UIWizardNewVMPageBasic2_h__ 20 #define __UIWizardNewVMPageBasic2_h__ 21 21 22 22 /* Local includes: */ … … 30 30 class QIRichTextLabel; 31 31 32 /* 3rd page of the New Virtual Machine wizard (base part): */33 class UIWizardNewVMPage 3: public UIWizardPageBase32 /* 2nd page of the New Virtual Machine wizard (base part): */ 33 class UIWizardNewVMPage2 : public UIWizardPageBase 34 34 { 35 35 protected: 36 36 37 37 /* Constructor: */ 38 UIWizardNewVMPage 3();38 UIWizardNewVMPage2(); 39 39 40 40 /* Handlers: */ … … 51 51 }; 52 52 53 /* 3rd page of the New Virtual Machine wizard (basic extension): */54 class UIWizardNewVMPageBasic 3 : public UIWizardPage, public UIWizardNewVMPage353 /* 2nd page of the New Virtual Machine wizard (basic extension): */ 54 class UIWizardNewVMPageBasic2 : public UIWizardPage, public UIWizardNewVMPage2 55 55 { 56 56 Q_OBJECT; … … 59 59 60 60 /* Constructor: */ 61 UIWizardNewVMPageBasic 3();61 UIWizardNewVMPageBasic2(); 62 62 63 63 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.cpp
r41372 r41373 3 3 * 4 4 * VBox frontends: Qt4 GUI ("VirtualBox"): 5 * UIWizardNewVMPageBasic 4class implementation5 * UIWizardNewVMPageBasic3 class implementation 6 6 */ 7 7 … … 26 26 27 27 /* Local includes: */ 28 #include "UIWizardNewVMPageBasic 4.h"28 #include "UIWizardNewVMPageBasic3.h" 29 29 #include "UIWizardNewVM.h" 30 30 #include "VBoxDefs.h" … … 36 36 #include "QIRichTextLabel.h" 37 37 38 UIWizardNewVMPage 4::UIWizardNewVMPage4()39 { 40 } 41 42 void UIWizardNewVMPage 4::updateVirtualDiskSource()38 UIWizardNewVMPage3::UIWizardNewVMPage3() 39 { 40 } 41 42 void UIWizardNewVMPage3::updateVirtualDiskSource() 43 43 { 44 44 /* Enable/disable controls: */ … … 63 63 } 64 64 65 void UIWizardNewVMPage 4::getWithFileOpenDialog()65 void UIWizardNewVMPage3::getWithFileOpenDialog() 66 66 { 67 67 /* Get opened medium id: */ … … 78 78 } 79 79 80 bool UIWizardNewVMPage 4::getWithNewVirtualDiskWizard()80 bool UIWizardNewVMPage3::getWithNewVirtualDiskWizard() 81 81 { 82 82 /* Create New Virtual Hard Drive wizard: */ … … 95 95 } 96 96 97 void UIWizardNewVMPage 4::ensureNewVirtualDiskDeleted()97 void UIWizardNewVMPage3::ensureNewVirtualDiskDeleted() 98 98 { 99 99 /* Make sure virtual-disk exists: */ … … 126 126 } 127 127 128 UIWizardNewVMPageBasic 4::UIWizardNewVMPageBasic4()128 UIWizardNewVMPageBasic3::UIWizardNewVMPageBasic3() 129 129 { 130 130 /* Create widgets: */ … … 185 185 } 186 186 187 void UIWizardNewVMPageBasic 4::sltVirtualDiskSourceChanged()187 void UIWizardNewVMPageBasic3::sltVirtualDiskSourceChanged() 188 188 { 189 189 /* Call to base-class: */ … … 194 194 } 195 195 196 void UIWizardNewVMPageBasic 4::sltGetWithFileOpenDialog()196 void UIWizardNewVMPageBasic3::sltGetWithFileOpenDialog() 197 197 { 198 198 /* Call to base-class: */ … … 200 200 } 201 201 202 void UIWizardNewVMPageBasic 4::retranslateUi()202 void UIWizardNewVMPageBasic3::retranslateUi() 203 203 { 204 204 /* Translate page: */ … … 221 221 } 222 222 223 void UIWizardNewVMPageBasic 4::initializePage()223 void UIWizardNewVMPageBasic3::initializePage() 224 224 { 225 225 /* Translate page: */ … … 235 235 } 236 236 237 void UIWizardNewVMPageBasic 4::cleanupPage()237 void UIWizardNewVMPageBasic3::cleanupPage() 238 238 { 239 239 /* Call to base-class: */ … … 242 242 } 243 243 244 bool UIWizardNewVMPageBasic 4::isComplete() const244 bool UIWizardNewVMPageBasic3::isComplete() const 245 245 { 246 246 /* Make sure 'virtualDisk' field feats the rules: */ … … 250 250 } 251 251 252 bool UIWizardNewVMPageBasic 4::validatePage()252 bool UIWizardNewVMPageBasic3::validatePage() 253 253 { 254 254 /* Initial result: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.h
r41372 r41373 2 2 * 3 3 * VBox frontends: Qt4 GUI ("VirtualBox"): 4 * UIWizardNewVMPageBasic 4class declaration4 * UIWizardNewVMPageBasic3 class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __UIWizardNewVMPageBasic 4_h__20 #define __UIWizardNewVMPageBasic 4_h__19 #ifndef __UIWizardNewVMPageBasic3_h__ 20 #define __UIWizardNewVMPageBasic3_h__ 21 21 22 22 /* Global includes: */ … … 34 34 class QIRichTextLabel; 35 35 36 /* 4thpage of the New Virtual Machine wizard (base part): */37 class UIWizardNewVMPage 4: public UIWizardPageBase36 /* 3rd page of the New Virtual Machine wizard (base part): */ 37 class UIWizardNewVMPage3 : public UIWizardPageBase 38 38 { 39 39 protected: 40 40 41 41 /* Constructor: */ 42 UIWizardNewVMPage 4();42 UIWizardNewVMPage3(); 43 43 44 44 /* Handlers: */ … … 80 80 }; 81 81 82 /* 4thpage of the New Virtual Machine wizard (basic extension): */83 class UIWizardNewVMPageBasic 4 : public UIWizardPage, public UIWizardNewVMPage482 /* 3rd page of the New Virtual Machine wizard (basic extension): */ 83 class UIWizardNewVMPageBasic3 : public UIWizardPage, public UIWizardNewVMPage3 84 84 { 85 85 Q_OBJECT; … … 92 92 93 93 /* Constructor: */ 94 UIWizardNewVMPageBasic 4();94 UIWizardNewVMPageBasic3(); 95 95 96 96 protected: … … 124 124 }; 125 125 126 #endif // __UIWizardNewVMPageBasic 4_h__126 #endif // __UIWizardNewVMPageBasic3_h__ 127 127 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.h
r41372 r41373 21 21 22 22 /* Local includes: */ 23 #include "UIWizardNewVMPageBasic1.h" 23 24 #include "UIWizardNewVMPageBasic2.h" 24 25 #include "UIWizardNewVMPageBasic3.h" 25 #include "UIWizardNewVMPageBasic4.h"26 26 27 27 /* Expert page of the New Virtual Machine wizard: */ 28 28 class UIWizardNewVMPageExpert : public UIWizardPage, 29 public UIWizardNewVMPage1, 29 30 public UIWizardNewVMPage2, 30 public UIWizardNewVMPage3, 31 public UIWizardNewVMPage4 31 public UIWizardNewVMPage3 32 32 { 33 33 Q_OBJECT;
Note:
See TracChangeset
for help on using the changeset viewer.