VirtualBox

Changeset 86355 in vbox


Ignore:
Timestamp:
Sep 30, 2020 5:12:41 PM (4 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9653: Wizards stuff: A bunch of layout fixes for cloud VM related wizards.

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  
    357357        if (m_pSourceLayout)
    358358        {
     359            m_pSourceLayout->setContentsMargins(0, 0, 0, 0);
    359360            m_pSourceLayout->setColumnStretch(0, 0);
    360361            m_pSourceLayout->setColumnStretch(1, 1);
     
    377378            }
    378379
    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 
    387380            /* Add into layout: */
    388381            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);
    389390        }
    390391
     
    396397            m_pCloudContainerLayout->setColumnStretch(0, 0);
    397398            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);
    400401
    401402            /* Create profile label: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/addcloudvm/UIWizardAddCloudVMPageExpert.cpp

    r86346 r86355  
    6161                {
    6262                    m_pCloudContainerLayout->setContentsMargins(0, 0, 0, 0);
    63                     m_pCloudContainerLayout->setRowStretch(3, 1);
     63                    m_pCloudContainerLayout->setRowStretch(1, 1);
    6464
    6565                    /* Create sub-layout: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp

    r86346 r86355  
    764764                    m_pSettingsLayout2->setColumnStretch(0, 0);
    765765                    m_pSettingsLayout2->setColumnStretch(1, 1);
     766                    m_pSettingsLayout2->setRowStretch(4, 1);
    766767
    767768                    /* Create profile label: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageBasic1.cpp

    r86346 r86355  
    458458        if (m_pSourceLayout)
    459459        {
     460            m_pSourceLayout->setContentsMargins(0, 0, 0, 0);
    460461            m_pSourceLayout->setColumnStretch(0, 0);
    461462            m_pSourceLayout->setColumnStretch(1, 1);
     
    478479            }
    479480
    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 
    488481            /* Add into layout: */
    489482            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);
    490491        }
    491492
     
    505506                    m_pLocalContainerLayout->setColumnStretch(0, 0);
    506507                    m_pLocalContainerLayout->setColumnStretch(1, 1);
    507                     m_pLocalContainerLayout->setRowStretch(2, 1);
     508                    m_pLocalContainerLayout->setRowStretch(1, 1);
    508509
    509510                    /* Create file label: */
     
    545546                    m_pCloudContainerLayout->setColumnStretch(0, 0);
    546547                    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);
    549550
    550551                    /* Create profile label: */
     
    622623            pMainLayout->addLayout(m_pStackedLayout);
    623624        }
    624 
    625         /* Add vertical stretch finally: */
    626         pMainLayout->addStretch();
    627625    }
    628626
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/UIWizardImportAppPageExpert.cpp

    r86346 r86355  
    7777                        {
    7878                            m_pLocalContainerLayout->setContentsMargins(0, 0, 0, 0);
    79                             m_pLocalContainerLayout->setRowStretch(2, 1);
     79                            m_pLocalContainerLayout->setRowStretch(1, 1);
    8080
    8181                            /* Create file-path selector: */
     
    106106                        {
    107107                            m_pCloudContainerLayout->setContentsMargins(0, 0, 0, 0);
    108                             m_pCloudContainerLayout->setRowStretch(3, 1);
     108                            m_pCloudContainerLayout->setRowStretch(1, 1);
    109109
    110110                            /* Create sub-layout: */
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageBasic1.cpp

    r86351 r86355  
    510510            m_pOptionsLayout->setColumnStretch(0, 0);
    511511            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);
    514514
    515515            /* Create profile label: */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette