Changeset 91041 in vbox
- Timestamp:
- Aug 31, 2021 6:09:46 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146690
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMModePageBasic.h
r90990 r91041 35 35 class UICloneVMCloneModeGroupBox; 36 36 37 /* 3rd page of the Clone Virtual Machine wizard (basic extension):*/37 /** 3rd page of the Clone Virtual Machine wizard (basic extension). */ 38 38 class UIWizardCloneVMModePageBasic : public UINativeWizardPage 39 39 { … … 42 42 public: 43 43 44 /* Constructor:*/44 /** Constructor. */ 45 45 UIWizardCloneVMModePageBasic(bool fShowChildsOption); 46 46 … … 51 51 private: 52 52 53 /* Translation stuff:*/53 /** Translation stuff. */ 54 54 void retranslateUi(); 55 55 56 /* Prepare stuff:*/56 /** Prepare stuff. */ 57 57 void initializePage(); 58 58 void prepare(); 59 59 60 /* Validation stuff:*/60 /** Validation stuff. */ 61 61 bool validatePage(); 62 62 63 /* Widgets:*/63 /** Widgets. */ 64 64 QIRichTextLabel *m_pLabel; 65 65 UICloneVMCloneModeGroupBox *m_pCloneModeGroupBox; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMNamePathPageBasic.h
r91035 r91041 60 60 void initializePage(); 61 61 void prepare(const QString &strDefaultClonePath); 62 /* Validation stuff:*/62 /** Validation stuff */ 63 63 bool isComplete() const; 64 64 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevm/UIWizardCloneVMPageExpert.h
r91035 r91041 32 32 class UICloneVMNamePathEditor; 33 33 34 /* Expert page of the Clone Virtual Machine wizard:*/34 /** Expert page of the Clone Virtual Machine wizard. */ 35 35 class UIWizardCloneVMPageExpert : public UINativeWizardPage 36 36 { … … 39 39 public: 40 40 41 /* Constructor:*/41 /** Constructor. */ 42 42 UIWizardCloneVMPageExpert(const QString &strOriginalName, const QString &strDefaultPath, 43 43 bool fAdditionalInfo, bool fShowChildsOption, const QString &strGroup); … … 53 53 private: 54 54 55 /* Translation stuff:*/55 /** Translation stuff. */ 56 56 void retranslateUi(); 57 57 58 /* Prepare stuff:*/58 /** Prepare stuff. */ 59 59 void initializePage(); 60 60 void prepare(const QString &strOriginalName, const QString &strDefaultPath, bool fShowChildsOption); 61 61 62 /* Validation stuff:*/62 /** Validation stuff. */ 63 63 bool isComplete() const; 64 64 bool validatePage(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVD.h
r91035 r91041 30 30 #include "CMediumFormat.h" 31 31 32 /* New Virtual Hard Drive wizard:*/32 /** New Virtual Hard Drive wizard. */ 33 33 class SHARED_LIBRARY_STUFF UIWizardNewVD : public UINativeWizard 34 34 { -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageExpert.h
r91035 r91041 30 30 class UIMediumSizeAndPathGroupBox; 31 31 32 /* Expert page of the New Virtual Hard Drive wizard:*/32 /** Expert page of the New Virtual Hard Drive wizard. */ 33 33 class SHARED_LIBRARY_STUFF UIWizardNewVDPageExpert : public UINativeWizardPage 34 34 { … … 49 49 private: 50 50 51 /* Translation stuff:*/51 /** Translation stuff. */ 52 52 void retranslateUi(); 53 53 54 /* Prepare stuff:*/54 /** Prepare stuff. */ 55 55 void prepare(); 56 56 void initializePage(); 57 57 58 /* Validation stuff:*/58 /** Validation stuff. */ 59 59 bool isComplete() const; 60 60 bool validatePage(); 61 61 void updateDiskWidgetsAfterMediumFormatChange(); 62 62 63 /* Widgets: */ 64 UIMediumSizeAndPathGroupBox *m_pSizeAndPathGroup; 65 UIDiskFormatsGroupBox *m_pFormatGroup; 66 UIDiskVariantGroupBox *m_pVariantGroup; 63 /** @name Widget 64 * @{ */ 65 UIMediumSizeAndPathGroupBox *m_pSizeAndPathGroup; 66 UIDiskFormatsGroupBox *m_pFormatGroup; 67 UIDiskVariantGroupBox *m_pVariantGroup; 68 /** @} */ 67 69 68 QString m_strDefaultName; 69 QString m_strDefaultPath; 70 qulonglong m_uDefaultSize; 71 qulonglong m_uMediumSizeMin; 72 qulonglong m_uMediumSizeMax; 70 /** @name Variable 71 * @{ */ 72 QString m_strDefaultName; 73 QString m_strDefaultPath; 74 qulonglong m_uDefaultSize; 75 qulonglong m_uMediumSizeMin; 76 qulonglong m_uMediumSizeMax; 77 /** @} */ 73 78 }; 74 79 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvd/UIWizardNewVDPageFileType.h
r91035 r91041 29 29 class UIDiskFormatsGroupBox; 30 30 31 /* 1st page of the New Virtual Hard Drive wizard (basic extension):*/31 /** 1st page of the New Virtual Hard Drive wizard (basic extension). */ 32 32 class SHARED_LIBRARY_STUFF UIWizardNewVDPageFileType : public UINativeWizardPage 33 33 { … … 36 36 public: 37 37 38 /* Constructor:*/38 /** Constructor. */ 39 39 UIWizardNewVDPageFileType(); 40 40 … … 49 49 void initializePage(); 50 50 51 /* Validation stuff:*/51 /** Validation stuff. */ 52 52 bool isComplete() const; 53 53
Note:
See TracChangeset
for help on using the changeset viewer.