Changeset 84284 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 13, 2020 12:03:55 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137921
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r84283 r84284 36 36 : UIWizardNewCloudVMPage2(fFullWizard) 37 37 , m_pCntLocation(0) 38 , m_pCntSource(0) 38 39 , m_pSettingsCnt(0) 39 40 { 40 41 /* Create main layout: */ 41 Q HBoxLayout *pMainLayout = new QHBoxLayout(this);42 QGridLayout *pMainLayout = new QGridLayout(this); 42 43 if (pMainLayout) 43 44 { … … 110 111 pLocationLayout->addWidget(m_pAccountPropertyTable); 111 112 } 112 113 } 114 115 /* Add into layout: */ 116 pMainLayout->addWidget(m_pCntLocation, 0, 0); 117 } 118 119 /* Create source container: */ 120 m_pCntSource = new QGroupBox(this); 121 if (m_pCntSource) 122 { 123 /* There is no source table in short wizard form: */ 124 if (!m_fFullWizard) 125 m_pCntSource->setVisible(false); 126 127 /* Create source layout: */ 128 QVBoxLayout *pSourceLayout = new QVBoxLayout(m_pCntSource); 129 if (pSourceLayout) 130 { 113 131 /* Create source image list: */ 114 m_pSourceImageList = new QListWidget(m_pCnt Location);132 m_pSourceImageList = new QListWidget(m_pCntSource); 115 133 if (m_pSourceImageList) 116 134 { … … 125 143 126 144 /* Add into layout: */ 127 p LocationLayout->addWidget(m_pSourceImageList);145 pSourceLayout->addWidget(m_pSourceImageList); 128 146 } 129 147 } 130 148 131 149 /* Add into layout: */ 132 pMainLayout->addWidget(m_pCnt Location);150 pMainLayout->addWidget(m_pCntSource, 1, 0); 133 151 } 134 152 … … 158 176 159 177 /* Add into layout: */ 160 pMainLayout->addWidget(m_pSettingsCnt );178 pMainLayout->addWidget(m_pSettingsCnt, 0, 1, 2, 1); 161 179 } 162 180 } … … 213 231 } 214 232 233 /* Translate source container: */ 234 m_pCntSource->setTitle(UIWizardNewCloudVM::tr("Source")); 235 215 236 /* Translate settings container: */ 216 237 m_pSettingsCnt->setTitle(UIWizardNewCloudVM::tr("Settings")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.h
r84275 r84284 83 83 /** Holds the location container instance. */ 84 84 QGroupBox *m_pCntLocation; 85 /** Holds the source container instance. */ 86 QGroupBox *m_pCntSource; 85 87 /** Holds the settings container instance. */ 86 88 QGroupBox *m_pSettingsCnt;
Note:
See TracChangeset
for help on using the changeset viewer.