Changeset 91025 in vbox for trunk/src/VBox
- Timestamp:
- Aug 31, 2021 10:52:50 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.cpp
r90757 r91025 309 309 void UIWizardNewVM::configureVM(const QString &strGuestTypeId, const CGuestOSType &comGuestType) 310 310 { 311 Q_UNUSED(strGuestTypeId);312 Q_UNUSED(comGuestType);313 311 /* Get graphics adapter: */ 314 312 CGraphicsAdapter comGraphics = m_machine.GetGraphicsAdapter(); … … 550 548 UINativeWizard::retranslateUi(); 551 549 setWindowTitle(tr("Create Virtual Machine")); 552 // setButtonText(QWizard::FinishButton, tr("Create"));553 550 } 554 551 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVM.h
r90990 r91025 183 183 mutable UIUnattendedInstallData m_unattendedInstallData; 184 184 185 /** Path of the ISO file attached to the new vm. Possibly used for the unattended install. */186 QString m_strISOFilePath;187 188 /** Path of the folder created by this wizard page. Used to remove previously created189 * folder. see cleanupMachineFolder();*/190 QString m_strCreatedFolder;191 192 /** Full path (including the file name) of the machine's configuration file. */193 QString m_strMachineFilePath;194 /** Path of the folder hosting the machine's configuration file. Generated from m_strMachineFilePath. */195 QString m_strMachineFolder;196 /** Base name of the machine is generated from the m_strMachineFilePath. */197 QString m_strMachineBaseName;198 199 /** Type Id od the OS detected from the ISO file by IUnattended. */200 QString m_strDetectedOSTypeId;201 202 /** Holds the VM OS family ID. */203 QString m_strGuestOSFamilyId;204 /** Holds the VM OS type. */205 CGuestOSType m_comGuestOSType;206 207 /** True if guest additions are to be installed during unattended install. */208 bool m_fInstallGuestAdditions;209 bool m_fSkipUnattendedInstall;210 bool m_fEFIEnabled;211 212 int m_iCPUCount;213 int m_iMemorySize;214 int m_iUnattendedInstallPageIndex;215 216 qulonglong m_uMediumVariant;217 CMediumFormat m_comMediumFormat;218 QString m_strMediumPath;219 qulonglong m_uMediumSize;185 /** Path of the ISO file attached to the new vm. Possibly used for the unattended install. */ 186 QString m_strISOFilePath; 187 188 /** Path of the folder created by this wizard page. Used to remove previously created 189 * folder. see cleanupMachineFolder();*/ 190 QString m_strCreatedFolder; 191 192 /** Full path (including the file name) of the machine's configuration file. */ 193 QString m_strMachineFilePath; 194 /** Path of the folder hosting the machine's configuration file. Generated from m_strMachineFilePath. */ 195 QString m_strMachineFolder; 196 /** Base name of the machine is generated from the m_strMachineFilePath. */ 197 QString m_strMachineBaseName; 198 199 /** Type Id od the OS detected from the ISO file by IUnattended. */ 200 QString m_strDetectedOSTypeId; 201 202 /** Holds the VM OS family ID. */ 203 QString m_strGuestOSFamilyId; 204 /** Holds the VM OS type. */ 205 CGuestOSType m_comGuestOSType; 206 207 /** True if guest additions are to be installed during unattended install. */ 208 bool m_fInstallGuestAdditions; 209 bool m_fSkipUnattendedInstall; 210 bool m_fEFIEnabled; 211 212 int m_iCPUCount; 213 int m_iMemorySize; 214 int m_iUnattendedInstallPageIndex; 215 216 qulonglong m_uMediumVariant; 217 CMediumFormat m_comMediumFormat; 218 QString m_strMediumPath; 219 qulonglong m_uMediumSize; 220 220 /** @} */ 221 221 }; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMHardwarePageBasic.cpp
r90990 r91025 98 98 } 99 99 100 void UIWizardNewVMHardwarePageBasic::cleanupPage()101 {102 //UIWizardPage::cleanupPage();103 }104 105 100 bool UIWizardNewVMHardwarePageBasic::isComplete() const 106 101 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMHardwarePageBasic.h
r90990 r91025 61 61 void retranslateUi(); 62 62 void initializePage(); 63 void cleanupPage();64 63 bool isComplete() const; 65 64 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.cpp
r90990 r91025 405 405 } 406 406 407 void UIWizardNewVMPageExpert::cleanupPage()408 {409 //cleanupMachineFolder();410 }411 412 407 void UIWizardNewVMPageExpert::markWidgets() const 413 408 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMUnattendedPageBasic.cpp
r90990 r91025 172 172 } 173 173 174 void UIWizardNewVMUnattendedPageBasic::cleanupPage()175 {176 }177 178 174 void UIWizardNewVMUnattendedPageBasic::showEvent(QShowEvent *pEvent) 179 175 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMUnattendedPageBasic.h
r90990 r91025 50 50 virtual void showEvent(QShowEvent *pEvent) /* override final*/; 51 51 /** Don't reset the user entered values in case of "back" button press. */ 52 virtual void cleanupPage() /* override */;53 52 54 53 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.