Changeset 91062 in vbox for trunk/src/VBox
- Timestamp:
- Sep 1, 2021 2:43:18 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r91061 r91062 671 671 src/wizards/clonevm/UIWizardCloneVMExpertPage.h \ 672 672 src/wizards/clonevd/UIWizardCloneVD.h \ 673 src/wizards/clonevd/UIWizardCloneVD PageFormat.h \674 src/wizards/clonevd/UIWizardCloneVD PageVariant.h \675 src/wizards/clonevd/UIWizardCloneVDPa gePathSize.h \676 src/wizards/clonevd/UIWizardCloneVD PageExpert.h \673 src/wizards/clonevd/UIWizardCloneVDFormatPage.h \ 674 src/wizards/clonevd/UIWizardCloneVDVariantPage.h \ 675 src/wizards/clonevd/UIWizardCloneVDPathSizePage.h \ 676 src/wizards/clonevd/UIWizardCloneVDExpertPage.h \ 677 677 src/wizards/exportappliance/UIWizardExportApp.h \ 678 678 src/wizards/exportappliance/UIWizardExportAppPageBasic1.h \ … … 1179 1179 src/wizards/clonevm/UIWizardCloneVMExpertPage.cpp \ 1180 1180 src/wizards/clonevd/UIWizardCloneVD.cpp \ 1181 src/wizards/clonevd/UIWizardCloneVD PageFormat.cpp \1182 src/wizards/clonevd/UIWizardCloneVD PageVariant.cpp \1183 src/wizards/clonevd/UIWizardCloneVDPa gePathSize.cpp \1184 src/wizards/clonevd/UIWizardCloneVD PageExpert.cpp \1181 src/wizards/clonevd/UIWizardCloneVDFormatPage.cpp \ 1182 src/wizards/clonevd/UIWizardCloneVDVariantPage.cpp \ 1183 src/wizards/clonevd/UIWizardCloneVDPathSizePage.cpp \ 1184 src/wizards/clonevd/UIWizardCloneVDExpertPage.cpp \ 1185 1185 src/wizards/exportappliance/UIWizardExportApp.cpp \ 1186 1186 src/wizards/exportappliance/UIWizardExportAppPageBasic1.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVD.cpp
r91035 r91062 22 22 #include "UINotificationCenter.h" 23 23 #include "UIWizardCloneVD.h" 24 #include "UIWizardCloneVD PageFormat.h"25 #include "UIWizardCloneVD PageVariant.h"26 #include "UIWizardCloneVDPa gePathSize.h"27 #include "UIWizardCloneVD PageExpert.h"24 #include "UIWizardCloneVDFormatPage.h" 25 #include "UIWizardCloneVDVariantPage.h" 26 #include "UIWizardCloneVDPathSizePage.h" 27 #include "UIWizardCloneVDExpertPage.h" 28 28 29 29 /* COM includes: */ … … 108 108 109 109 { 110 addPage(new UIWizardCloneVD PageFormat(m_enmDeviceType));111 m_iMediumVariantPageIndex = addPage(new UIWizardCloneVD PageVariant);112 addPage(new UIWizardCloneVDPa gePathSize(sourceDiskLogicalSize()));110 addPage(new UIWizardCloneVDFormatPage(m_enmDeviceType)); 111 m_iMediumVariantPageIndex = addPage(new UIWizardCloneVDVariantPage); 112 addPage(new UIWizardCloneVDPathSizePage(sourceDiskLogicalSize())); 113 113 break; 114 114 } 115 115 case WizardMode_Expert: 116 116 { 117 addPage(new UIWizardCloneVD PageExpert(m_enmDeviceType, sourceDiskLogicalSize()));117 addPage(new UIWizardCloneVDExpertPage(m_enmDeviceType, sourceDiskLogicalSize())); 118 118 break; 119 119 } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDExpertPage.cpp
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageExpertclass implementation.3 * VBox Qt GUI - UIWizardCloneVDExpertPage class implementation. 4 4 */ 5 5 … … 24 24 #include "UIMessageCenter.h" 25 25 #include "UIWizardCloneVD.h" 26 #include "UIWizardCloneVD PageExpert.h"26 #include "UIWizardCloneVDExpertPage.h" 27 27 #include "UIWizardDiskEditors.h" 28 28 … … 30 30 #include "CSystemProperties.h" 31 31 32 UIWizardCloneVD PageExpert::UIWizardCloneVDPageExpert(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)32 UIWizardCloneVDExpertPage::UIWizardCloneVDExpertPage(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize) 33 33 :m_pFormatGroupBox(0) 34 34 , m_pVariantGroupBox(0) … … 39 39 } 40 40 41 void UIWizardCloneVD PageExpert::prepare(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize)41 void UIWizardCloneVDExpertPage::prepare(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize) 42 42 { 43 43 QGridLayout *pMainLayout = new QGridLayout(this); … … 49 49 pMainLayout->addWidget(m_pMediumSizePathGroupBox, 0, 0, 4, 2); 50 50 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked, 51 this, &UIWizardCloneVD PageExpert::sltSelectLocationButtonClicked);51 this, &UIWizardCloneVDExpertPage::sltSelectLocationButtonClicked); 52 52 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged, 53 this, &UIWizardCloneVD PageExpert::sltMediumPathChanged);53 this, &UIWizardCloneVDExpertPage::sltMediumPathChanged); 54 54 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged, 55 this, &UIWizardCloneVD PageExpert::sltMediumSizeChanged);55 this, &UIWizardCloneVDExpertPage::sltMediumSizeChanged); 56 56 } 57 57 … … 61 61 pMainLayout-> addWidget(m_pFormatGroupBox, 4, 0, 7, 1); 62 62 connect(m_pFormatGroupBox, &UIDiskFormatsGroupBox::sigMediumFormatChanged, 63 this, &UIWizardCloneVD PageExpert::sltMediumFormatChanged);63 this, &UIWizardCloneVDExpertPage::sltMediumFormatChanged); 64 64 } 65 65 … … 69 69 pMainLayout-> addWidget(m_pVariantGroupBox, 4, 1, 3, 1); 70 70 connect(m_pVariantGroupBox, &UIDiskVariantGroupBox::sigMediumVariantChanged, 71 this, &UIWizardCloneVD PageExpert::sltMediumVariantChanged);72 } 73 } 74 75 void UIWizardCloneVD PageExpert::sltMediumFormatChanged()71 this, &UIWizardCloneVDExpertPage::sltMediumVariantChanged); 72 } 73 } 74 75 void UIWizardCloneVDExpertPage::sltMediumFormatChanged() 76 76 { 77 77 if (wizardWindow<UIWizardCloneVD>() && m_pFormatGroupBox) … … 81 81 } 82 82 83 void UIWizardCloneVD PageExpert::sltSelectLocationButtonClicked()83 void UIWizardCloneVDExpertPage::sltSelectLocationButtonClicked() 84 84 { 85 85 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 98 98 } 99 99 100 void UIWizardCloneVD PageExpert::sltMediumVariantChanged(qulonglong uVariant)100 void UIWizardCloneVDExpertPage::sltMediumVariantChanged(qulonglong uVariant) 101 101 { 102 102 if (wizardWindow<UIWizardCloneVD>()) … … 104 104 } 105 105 106 void UIWizardCloneVD PageExpert::sltMediumSizeChanged(qulonglong uSize)106 void UIWizardCloneVDExpertPage::sltMediumSizeChanged(qulonglong uSize) 107 107 { 108 108 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 112 112 } 113 113 114 void UIWizardCloneVD PageExpert::sltMediumPathChanged(const QString &strPath)114 void UIWizardCloneVDExpertPage::sltMediumPathChanged(const QString &strPath) 115 115 { 116 116 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 123 123 } 124 124 125 void UIWizardCloneVD PageExpert::retranslateUi()126 { 127 } 128 129 void UIWizardCloneVD PageExpert::initializePage()125 void UIWizardCloneVDExpertPage::retranslateUi() 126 { 127 } 128 129 void UIWizardCloneVDExpertPage::initializePage() 130 130 { 131 131 AssertReturnVoid(wizardWindow<UIWizardCloneVD>() && m_pMediumSizePathGroupBox && m_pFormatGroupBox && m_pVariantGroupBox); … … 156 156 } 157 157 158 bool UIWizardCloneVD PageExpert::isComplete() const158 bool UIWizardCloneVDExpertPage::isComplete() const 159 159 { 160 160 bool fResult = true; … … 170 170 } 171 171 172 bool UIWizardCloneVD PageExpert::validatePage()172 bool UIWizardCloneVDExpertPage::validatePage() 173 173 { 174 174 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 185 185 } 186 186 187 void UIWizardCloneVD PageExpert::updateDiskWidgetsAfterMediumFormatChange()187 void UIWizardCloneVDExpertPage::updateDiskWidgetsAfterMediumFormatChange() 188 188 { 189 189 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDExpertPage.h
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageExpertclass declaration.3 * VBox Qt GUI - UIWizardCloneVDExpertPage class declaration. 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageExpert_h19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageExpert_h18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h 19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 34 34 35 35 /** Expert page of the Clone Virtual Disk Image wizard: */ 36 class UIWizardCloneVD PageExpert: public UINativeWizardPage36 class UIWizardCloneVDExpertPage : public UINativeWizardPage 37 37 { 38 38 Q_OBJECT; … … 43 43 * @param comSourceVirtualDisk Brings the initial source disk to make copy from. 44 44 * @param enmDeviceType Brings the device type to limit format to. */ 45 UIWizardCloneVD PageExpert(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize);45 UIWizardCloneVDExpertPage(KDeviceType enmDeviceType, qulonglong uSourceDiskLogicaSize); 46 46 47 47 private slots: … … 82 82 }; 83 83 84 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageExpert_h */84 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDExpertPage_h */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDFormatPage.cpp
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageFormatclass implementation.3 * VBox Qt GUI - UIWizardCloneVDFormatPage class implementation. 4 4 */ 5 5 … … 20 20 21 21 /* GUI includes: */ 22 #include "UIWizardCloneVD PageFormat.h"22 #include "UIWizardCloneVDFormatPage.h" 23 23 #include "UIWizardCloneVD.h" 24 24 #include "UIWizardDiskEditors.h" … … 29 29 #include "CSystemProperties.h" 30 30 31 UIWizardCloneVD PageFormat::UIWizardCloneVDPageFormat(KDeviceType enmDeviceType)31 UIWizardCloneVDFormatPage::UIWizardCloneVDFormatPage(KDeviceType enmDeviceType) 32 32 : m_pLabel(0) 33 33 , m_pFormatGroupBox(0) … … 36 36 } 37 37 38 void UIWizardCloneVD PageFormat::prepare(KDeviceType enmDeviceType)38 void UIWizardCloneVDFormatPage::prepare(KDeviceType enmDeviceType) 39 39 { 40 40 QVBoxLayout *pMainLayout = new QVBoxLayout(this); … … 47 47 pMainLayout->addWidget(m_pFormatGroupBox); 48 48 connect(m_pFormatGroupBox, &UIDiskFormatsGroupBox::sigMediumFormatChanged, 49 this, &UIWizardCloneVD PageFormat::sltMediumFormatChanged);49 this, &UIWizardCloneVDFormatPage::sltMediumFormatChanged); 50 50 } 51 51 pMainLayout->addStretch(); … … 53 53 } 54 54 55 void UIWizardCloneVD PageFormat::retranslateUi()55 void UIWizardCloneVDFormatPage::retranslateUi() 56 56 { 57 57 /* Translate page: */ … … 64 64 } 65 65 66 void UIWizardCloneVD PageFormat::initializePage()66 void UIWizardCloneVDFormatPage::initializePage() 67 67 { 68 68 AssertReturnVoid(wizardWindow<UIWizardCloneVD>()); … … 76 76 } 77 77 78 bool UIWizardCloneVD PageFormat::isComplete() const78 bool UIWizardCloneVDFormatPage::isComplete() const 79 79 { 80 80 if (m_pFormatGroupBox) … … 86 86 } 87 87 88 void UIWizardCloneVD PageFormat::sltMediumFormatChanged()88 void UIWizardCloneVDFormatPage::sltMediumFormatChanged() 89 89 { 90 90 AssertReturnVoid(wizardWindow<UIWizardCloneVD>()); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDFormatPage.h
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageFormatclass declaration.3 * VBox Qt GUI - UIWizardCloneVDFormatPage class declaration. 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageFormat_h19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageFormat_h18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h 19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 36 36 37 37 /** 2nd page of the Clone Virtual Disk Image wizard (basic extension): */ 38 class UIWizardCloneVD PageFormat: public UINativeWizardPage38 class UIWizardCloneVDFormatPage : public UINativeWizardPage 39 39 { 40 40 Q_OBJECT; … … 44 44 /** Constructs basic page. 45 45 * @param enmDeviceType Brings the device type to limit format to. */ 46 UIWizardCloneVD PageFormat(KDeviceType enmDeviceType);46 UIWizardCloneVDFormatPage(KDeviceType enmDeviceType); 47 47 48 48 private slots: … … 69 69 }; 70 70 71 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageFormat_h */71 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDFormatPage_h */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPathSizePage.cpp
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVDPa gePathSize class implementation.3 * VBox Qt GUI - UIWizardCloneVDPathSizePage class implementation. 4 4 */ 5 5 … … 21 21 22 22 /* GUI includes: */ 23 #include "UIWizardCloneVDPa gePathSize.h"23 #include "UIWizardCloneVDPathSizePage.h" 24 24 #include "UIWizardDiskEditors.h" 25 25 #include "UIWizardCloneVD.h" 26 26 #include "UIMessageCenter.h" 27 27 28 UIWizardCloneVDPa gePathSize::UIWizardCloneVDPagePathSize(qulonglong uSourceDiskLogicaSize)28 UIWizardCloneVDPathSizePage::UIWizardCloneVDPathSizePage(qulonglong uSourceDiskLogicaSize) 29 29 : m_pMediumSizePathGroupBox(0) 30 30 { … … 32 32 } 33 33 34 void UIWizardCloneVDPa gePathSize::prepare(qulonglong uSourceDiskLogicaSize)34 void UIWizardCloneVDPathSizePage::prepare(qulonglong uSourceDiskLogicaSize) 35 35 { 36 36 QVBoxLayout *pMainLayout = new QVBoxLayout(this); … … 40 40 pMainLayout->addWidget(m_pMediumSizePathGroupBox); 41 41 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumLocationButtonClicked, 42 this, &UIWizardCloneVDPa gePathSize::sltSelectLocationButtonClicked);42 this, &UIWizardCloneVDPathSizePage::sltSelectLocationButtonClicked); 43 43 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumPathChanged, 44 this, &UIWizardCloneVDPa gePathSize::sltMediumPathChanged);44 this, &UIWizardCloneVDPathSizePage::sltMediumPathChanged); 45 45 connect(m_pMediumSizePathGroupBox, &UIMediumSizeAndPathGroupBox::sigMediumSizeChanged, 46 this, &UIWizardCloneVDPa gePathSize::sltMediumSizeChanged);46 this, &UIWizardCloneVDPathSizePage::sltMediumSizeChanged); 47 47 } 48 48 pMainLayout->addStretch(); … … 50 50 } 51 51 52 void UIWizardCloneVDPa gePathSize::retranslateUi()52 void UIWizardCloneVDPathSizePage::retranslateUi() 53 53 { 54 54 /* Translate page: */ … … 56 56 } 57 57 58 void UIWizardCloneVDPa gePathSize::initializePage()58 void UIWizardCloneVDPathSizePage::initializePage() 59 59 { 60 60 AssertReturnVoid(wizardWindow<UIWizardCloneVD>() && m_pMediumSizePathGroupBox); … … 87 87 } 88 88 89 bool UIWizardCloneVDPa gePathSize::isComplete() const89 bool UIWizardCloneVDPathSizePage::isComplete() const 90 90 { 91 91 AssertReturn(m_pMediumSizePathGroupBox, false); … … 93 93 } 94 94 95 bool UIWizardCloneVDPa gePathSize::validatePage()95 bool UIWizardCloneVDPathSizePage::validatePage() 96 96 { 97 97 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 107 107 } 108 108 109 void UIWizardCloneVDPa gePathSize::sltSelectLocationButtonClicked()109 void UIWizardCloneVDPathSizePage::sltSelectLocationButtonClicked() 110 110 { 111 111 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 124 124 } 125 125 126 void UIWizardCloneVDPa gePathSize::sltMediumPathChanged(const QString &strPath)126 void UIWizardCloneVDPathSizePage::sltMediumPathChanged(const QString &strPath) 127 127 { 128 128 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); … … 136 136 } 137 137 138 void UIWizardCloneVDPa gePathSize::sltMediumSizeChanged(qulonglong uSize)138 void UIWizardCloneVDPathSizePage::sltMediumSizeChanged(qulonglong uSize) 139 139 { 140 140 UIWizardCloneVD *pWizard = wizardWindow<UIWizardCloneVD>(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPathSizePage.h
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVDPa gePathSize class declaration.3 * VBox Qt GUI - UIWizardCloneVDPathSizePage class declaration. 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPa gePathSize_h19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPa gePathSize_h18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h 19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 36 36 37 37 /** 4th page of the Clone Virtual Disk Image wizard (basic extension): */ 38 class UIWizardCloneVDPa gePathSize : public UINativeWizardPage38 class UIWizardCloneVDPathSizePage : public UINativeWizardPage 39 39 { 40 40 Q_OBJECT; … … 43 43 44 44 /** Constructs basic page. */ 45 UIWizardCloneVDPa gePathSize(qulonglong uSourceDiskLogicaSize);45 UIWizardCloneVDPathSizePage(qulonglong uSourceDiskLogicaSize); 46 46 47 47 private slots: … … 71 71 }; 72 72 73 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPa gePathSize_h */73 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDPathSizePage_h */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDVariantPage.cpp
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageVariantclass implementation.3 * VBox Qt GUI - UIWizardCloneVDVariantPage class implementation. 4 4 */ 5 5 … … 21 21 /* GUI includes: */ 22 22 #include "UIWizardDiskEditors.h" 23 #include "UIWizardCloneVD PageVariant.h"23 #include "UIWizardCloneVDVariantPage.h" 24 24 #include "UIWizardCloneVD.h" 25 25 #include "QIRichTextLabel.h" … … 28 28 #include "CMediumFormat.h" 29 29 30 UIWizardCloneVD PageVariant::UIWizardCloneVDPageVariant()30 UIWizardCloneVDVariantPage::UIWizardCloneVDVariantPage() 31 31 : m_pDescriptionLabel(0) 32 32 , m_pDynamicLabel(0) … … 38 38 } 39 39 40 void UIWizardCloneVD PageVariant::prepare()40 void UIWizardCloneVDVariantPage::prepare() 41 41 { 42 42 QVBoxLayout *pMainLayout = new QVBoxLayout(this); … … 63 63 pMainLayout->addWidget(m_pVariantGroupBox); 64 64 connect(m_pVariantGroupBox, &UIDiskVariantGroupBox::sigMediumVariantChanged, 65 this, &UIWizardCloneVD PageVariant::sltMediumVariantChanged);65 this, &UIWizardCloneVDVariantPage::sltMediumVariantChanged); 66 66 67 67 } … … 70 70 71 71 72 void UIWizardCloneVD PageVariant::retranslateUi()72 void UIWizardCloneVDVariantPage::retranslateUi() 73 73 { 74 74 /* Translate page: */ … … 89 89 } 90 90 91 void UIWizardCloneVD PageVariant::initializePage()91 void UIWizardCloneVDVariantPage::initializePage() 92 92 { 93 93 AssertReturnVoid(wizardWindow<UIWizardCloneVD>()); … … 100 100 } 101 101 102 bool UIWizardCloneVD PageVariant::isComplete() const102 bool UIWizardCloneVDVariantPage::isComplete() const 103 103 { 104 104 AssertReturn(m_pVariantGroupBox, false); … … 106 106 } 107 107 108 void UIWizardCloneVD PageVariant::setWidgetVisibility(const CMediumFormat &mediumFormat)108 void UIWizardCloneVDVariantPage::setWidgetVisibility(const CMediumFormat &mediumFormat) 109 109 { 110 110 AssertReturnVoid(m_pVariantGroupBox); … … 120 120 } 121 121 122 void UIWizardCloneVD PageVariant::sltMediumVariantChanged(qulonglong uVariant)122 void UIWizardCloneVDVariantPage::sltMediumVariantChanged(qulonglong uVariant) 123 123 { 124 124 if (wizardWindow<UIWizardCloneVD>()) -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDVariantPage.h
r91061 r91062 1 1 /* $Id$ */ 2 2 /** @file 3 * VBox Qt GUI - UIWizardCloneVD PageVariantclass declaration.3 * VBox Qt GUI - UIWizardCloneVDVariantPage class declaration. 4 4 */ 5 5 … … 16 16 */ 17 17 18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageVariant_h19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageVariant_h18 #ifndef FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h 19 #define FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h 20 20 #ifndef RT_WITHOUT_PRAGMA_ONCE 21 21 # pragma once … … 30 30 class UIDiskVariantGroupBox; 31 31 32 class UIWizardCloneVD PageVariant: public UINativeWizardPage32 class UIWizardCloneVDVariantPage : public UINativeWizardPage 33 33 { 34 34 Q_OBJECT; … … 37 37 38 38 /** Constructs basic page. */ 39 UIWizardCloneVD PageVariant();39 UIWizardCloneVDVariantPage(); 40 40 41 41 private slots: … … 67 67 }; 68 68 69 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVD PageVariant_h */69 #endif /* !FEQT_INCLUDED_SRC_wizards_clonevd_UIWizardCloneVDVariantPage_h */
Note:
See TracChangeset
for help on using the changeset viewer.