VirtualBox

Changeset 78074 in vbox


Ignore:
Timestamp:
Apr 10, 2019 10:43:14 AM (6 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9152: A bit of cleanup for Export Appliance wizard.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.cpp

    r78062 r78074  
    6868    , m_pManifestCheckbox(0)
    6969    , m_pIncludeISOsCheckbox(0)
    70     , m_pAccountComboBoxLabel(0)
     70    , m_pAccountLabel(0)
    7171    , m_pAccountComboBox(0)
    7272    , m_pAccountToolButton(0)
     
    930930                    m_pSettingsLayout2->setColumnStretch(1, 1);
    931931
    932                     /* Create provider label: */
    933                     m_pAccountComboBoxLabel = new QLabel;
    934                     if (m_pAccountComboBoxLabel)
     932                    /* Create account label: */
     933                    m_pAccountLabel = new QLabel;
     934                    if (m_pAccountLabel)
    935935                    {
    936                         m_pAccountComboBoxLabel->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);
     936                        m_pAccountLabel->setAlignment(Qt::AlignRight | Qt::AlignTrailing | Qt::AlignVCenter);
    937937
    938938                        /* Add into layout: */
    939                         m_pSettingsLayout2->addWidget(m_pAccountComboBoxLabel, 0, 0);
     939                        m_pSettingsLayout2->addWidget(m_pAccountLabel, 0, 0);
    940940                    }
    941941                    /* Create sub-layout: */
     
    946946                        pSubLayout->setSpacing(1);
    947947
    948                         /* Create provider combo-box: */
     948                        /* Create account combo-box: */
    949949                        m_pAccountComboBox = new QComboBox;
    950950                        if (m_pAccountComboBox)
    951951                        {
    952                             m_pAccountComboBoxLabel->setBuddy(m_pAccountComboBox);
     952                            m_pAccountLabel->setBuddy(m_pAccountComboBox);
    953953
    954954                            /* Add into layout: */
    955955                            pSubLayout->addWidget(m_pAccountComboBox);
    956956                        }
    957                         /* Create provider combo-box: */
     957                        /* Create account tool-button: */
    958958                        m_pAccountToolButton = new QIToolButton;
    959959                        if (m_pAccountToolButton)
     
    10031003    /* Populate MAC address policies: */
    10041004    populateMACAddressPolicies();
    1005     /* Populate providers: */
     1005    /* Populate accounts: */
    10061006    populateAccounts();
    1007     /* Populate profile properties: */
     1007    /* Populate account properties: */
    10081008    populateAccountProperties();
    10091009
     
    11211121    m_pIncludeISOsCheckbox->setText(UIWizardExportApp::tr("&Include ISO image files"));
    11221122
    1123     /* Translate Account combo-box: */
    1124     m_pAccountComboBoxLabel->setText(UIWizardExportApp::tr("&Account:"));
     1123    /* Translate Account label: */
     1124    m_pAccountLabel->setText(UIWizardExportApp::tr("&Account:"));
    11251125
    11261126    /* Adjust label widths: */
     
    11301130    labels << m_pMACComboBoxLabel;
    11311131    labels << m_pAdditionalLabel;
    1132     labels << m_pAccountComboBoxLabel;
     1132    labels << m_pAccountLabel;
    11331133    int iMaxWidth = 0;
    11341134    foreach (QWidget *pLabel, labels)
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h

    r77388 r78074  
    219219    QCheckBox *m_pIncludeISOsCheckbox;
    220220
    221     /** Holds the account combo-box label instance. */
    222     QLabel       *m_pAccountComboBoxLabel;
     221    /** Holds the account label instance. */
     222    QLabel       *m_pAccountLabel;
    223223    /** Holds the account combo-box instance. */
    224224    QComboBox    *m_pAccountComboBox;
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.cpp

    r77388 r78074  
    264264
    265265                            /* Create account label: */
    266                             m_pAccountComboBoxLabel = new QLabel;
    267                             if (m_pAccountComboBoxLabel)
    268                             {
    269                                 m_pAccountComboBoxLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
    270 
    271                                 /* Add into layout: */
    272                                 m_pSettingsLayout2->addWidget(m_pAccountComboBoxLabel, 0, 0);
     266                            m_pAccountLabel = new QLabel;
     267                            if (m_pAccountLabel)
     268                            {
     269                                m_pAccountLabel->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
     270
     271                                /* Add into layout: */
     272                                m_pSettingsLayout2->addWidget(m_pAccountLabel, 0, 0);
    273273                            }
    274274                            /* Create sub-layout: */
     
    279279                                pSubLayout->setSpacing(1);
    280280
    281                                 /* Create provider combo-box: */
     281                                /* Create account combo-box: */
    282282                                m_pAccountComboBox = new QComboBox;
    283283                                if (m_pAccountComboBox)
    284284                                {
    285                                     m_pAccountComboBoxLabel->setBuddy(m_pAccountComboBox);
     285                                    m_pAccountLabel->setBuddy(m_pAccountComboBox);
    286286
    287287                                    /* Add into layout: */
    288288                                    pSubLayout->addWidget(m_pAccountComboBox);
    289289                                }
    290                                 /* Create provider combo-box: */
     290                                /* Create account tool-button: */
    291291                                m_pAccountToolButton = new QIToolButton;
    292292                                if (m_pAccountToolButton)
     
    462462    m_pIncludeISOsCheckbox->setText(UIWizardExportApp::tr("&Include ISO image files"));
    463463
    464     /* Translate Account combo-box: */
    465     m_pAccountComboBoxLabel->setText(UIWizardExportApp::tr("&Account:"));
     464    /* Translate Account label: */
     465    m_pAccountLabel->setText(UIWizardExportApp::tr("&Account:"));
    466466
    467467    /* Adjust label widths: */
     
    471471    labels << m_pMACComboBoxLabel;
    472472    labels << m_pAdditionalLabel;
    473     labels << m_pAccountComboBoxLabel;
     473    labels << m_pAccountLabel;
    474474    int iMaxWidth = 0;
    475475    foreach (QWidget *pLabel, labels)
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