Changeset 86355 in vbox
- Timestamp:
- Sep 30, 2020 5:12:41 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageBasic1.cpp
r86346 r86355 357 357 if (m_pSourceLayout) 358 358 { 359 m_pSourceLayout->setContentsMargins(0, 0, 0, 0); 359 360 m_pSourceLayout->setColumnStretch(0, 0); 360 361 m_pSourceLayout->setColumnStretch(1, 1); … … 377 378 } 378 379 379 /* Create description label: */380 m_pLabelDescription = new QIRichTextLabel(this);381 if (m_pLabelDescription)382 {383 /* Add into layout: */384 m_pSourceLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2);385 }386 387 380 /* Add into layout: */ 388 381 pMainLayout->addLayout(m_pSourceLayout); 382 } 383 384 /* Create description label: */ 385 m_pLabelDescription = new QIRichTextLabel(this); 386 if (m_pLabelDescription) 387 { 388 /* Add into layout: */ 389 pMainLayout->addWidget(m_pLabelDescription); 389 390 } 390 391 … … 396 397 m_pCloudContainerLayout->setColumnStretch(0, 0); 397 398 m_pCloudContainerLayout->setColumnStretch(1, 1); 398 m_pCloudContainerLayout->setRowStretch( 2, 0);399 m_pCloudContainerLayout->setRowStretch( 3, 1);399 m_pCloudContainerLayout->setRowStretch(1, 0); 400 m_pCloudContainerLayout->setRowStretch(2, 1); 400 401 401 402 /* Create profile label: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageExpert.cpp
r86346 r86355 61 61 { 62 62 m_pCloudContainerLayout->setContentsMargins(0, 0, 0, 0); 63 m_pCloudContainerLayout->setRowStretch( 3, 1);63 m_pCloudContainerLayout->setRowStretch(1, 1); 64 64 65 65 /* Create sub-layout: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp
r86346 r86355 764 764 m_pSettingsLayout2->setColumnStretch(0, 0); 765 765 m_pSettingsLayout2->setColumnStretch(1, 1); 766 m_pSettingsLayout2->setRowStretch(4, 1); 766 767 767 768 /* Create profile label: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp
r86346 r86355 458 458 if (m_pSourceLayout) 459 459 { 460 m_pSourceLayout->setContentsMargins(0, 0, 0, 0); 460 461 m_pSourceLayout->setColumnStretch(0, 0); 461 462 m_pSourceLayout->setColumnStretch(1, 1); … … 478 479 } 479 480 480 /* Create description label: */481 m_pLabelDescription = new QIRichTextLabel(this);482 if (m_pLabelDescription)483 {484 /* Add into layout: */485 m_pSourceLayout->addWidget(m_pLabelDescription, 1, 0, 1, 2);486 }487 488 481 /* Add into layout: */ 489 482 pMainLayout->addLayout(m_pSourceLayout); 483 } 484 485 /* Create description label: */ 486 m_pLabelDescription = new QIRichTextLabel(this); 487 if (m_pLabelDescription) 488 { 489 /* Add into layout: */ 490 pMainLayout->addWidget(m_pLabelDescription); 490 491 } 491 492 … … 505 506 m_pLocalContainerLayout->setColumnStretch(0, 0); 506 507 m_pLocalContainerLayout->setColumnStretch(1, 1); 507 m_pLocalContainerLayout->setRowStretch( 2, 1);508 m_pLocalContainerLayout->setRowStretch(1, 1); 508 509 509 510 /* Create file label: */ … … 545 546 m_pCloudContainerLayout->setColumnStretch(0, 0); 546 547 m_pCloudContainerLayout->setColumnStretch(1, 1); 547 m_pCloudContainerLayout->setRowStretch( 2, 0);548 m_pCloudContainerLayout->setRowStretch( 3, 1);548 m_pCloudContainerLayout->setRowStretch(1, 0); 549 m_pCloudContainerLayout->setRowStretch(2, 1); 549 550 550 551 /* Create profile label: */ … … 622 623 pMainLayout->addLayout(m_pStackedLayout); 623 624 } 624 625 /* Add vertical stretch finally: */626 pMainLayout->addStretch();627 625 } 628 626 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp
r86346 r86355 77 77 { 78 78 m_pLocalContainerLayout->setContentsMargins(0, 0, 0, 0); 79 m_pLocalContainerLayout->setRowStretch( 2, 1);79 m_pLocalContainerLayout->setRowStretch(1, 1); 80 80 81 81 /* Create file-path selector: */ … … 106 106 { 107 107 m_pCloudContainerLayout->setContentsMargins(0, 0, 0, 0); 108 m_pCloudContainerLayout->setRowStretch( 3, 1);108 m_pCloudContainerLayout->setRowStretch(1, 1); 109 109 110 110 /* Create sub-layout: */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp
r86351 r86355 510 510 m_pOptionsLayout->setColumnStretch(0, 0); 511 511 m_pOptionsLayout->setColumnStretch(1, 1); 512 m_pOptionsLayout->setRowStretch( 2, 0);513 m_pOptionsLayout->setRowStretch( 3, 1);512 m_pOptionsLayout->setRowStretch(1, 0); 513 m_pOptionsLayout->setRowStretch(2, 1); 514 514 515 515 /* Create profile label: */
Note:
See TracChangeset
for help on using the changeset viewer.