VirtualBox

Changeset 84284 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
May 13, 2020 12:03:55 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
137921
Message:

FE/Qt: bugref:9653: New Cloud VM wizard: Expert page: Dedicated frame for source stuff.

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  
    3636    : UIWizardNewCloudVMPage2(fFullWizard)
    3737    , m_pCntLocation(0)
     38    , m_pCntSource(0)
    3839    , m_pSettingsCnt(0)
    3940{
    4041    /* Create main layout: */
    41     QHBoxLayout *pMainLayout = new QHBoxLayout(this);
     42    QGridLayout *pMainLayout = new QGridLayout(this);
    4243    if (pMainLayout)
    4344    {
     
    110111                    pLocationLayout->addWidget(m_pAccountPropertyTable);
    111112                }
    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            {
    113131                /* Create source image list: */
    114                 m_pSourceImageList = new QListWidget(m_pCntLocation);
     132                m_pSourceImageList = new QListWidget(m_pCntSource);
    115133                if (m_pSourceImageList)
    116134                {
     
    125143
    126144                    /* Add into layout: */
    127                     pLocationLayout->addWidget(m_pSourceImageList);
     145                    pSourceLayout->addWidget(m_pSourceImageList);
    128146                }
    129147            }
    130148
    131149            /* Add into layout: */
    132             pMainLayout->addWidget(m_pCntLocation);
     150            pMainLayout->addWidget(m_pCntSource, 1, 0);
    133151        }
    134152
     
    158176
    159177            /* Add into layout: */
    160             pMainLayout->addWidget(m_pSettingsCnt);
     178            pMainLayout->addWidget(m_pSettingsCnt, 0, 1, 2, 1);
    161179        }
    162180    }
     
    213231    }
    214232
     233    /* Translate source container: */
     234    m_pCntSource->setTitle(UIWizardNewCloudVM::tr("Source"));
     235
    215236    /* Translate settings container: */
    216237    m_pSettingsCnt->setTitle(UIWizardNewCloudVM::tr("Settings"));
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.h

    r84275 r84284  
    8383    /** Holds the location container instance. */
    8484    QGroupBox *m_pCntLocation;
     85    /** Holds the source container instance. */
     86    QGroupBox *m_pCntSource;
    8587    /** Holds the settings container instance. */
    8688    QGroupBox *m_pSettingsCnt;
Note: See TracChangeset for help on using the changeset viewer.

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