VirtualBox

Changeset 93234 in vbox


Ignore:
Timestamp:
Jan 14, 2022 2:27:29 PM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9996: A bit of cleanup for UIWizardNewCloudVM.

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

    r93226 r93234  
    128128                    if (m_pSourceImageList)
    129129                    {
     130                        /* We want to have sorting enabled: */
    130131                        m_pSourceImageList->setSortingEnabled(true);
    131                         /* Make source image list fit 40/50 symbols
    132                          * horizontally and 8 lines vertically: */
    133                         const QFontMetrics fm(m_pSourceImageList->font());
    134                         const int iFontWidth = fm.width('x');
    135 #ifdef VBOX_WS_MAC
    136                         const int iTotalWidth = 40 * iFontWidth;
    137 #else
    138                         const int iTotalWidth = 50 * iFontWidth;
    139 #endif
    140                         const int iFontHeight = fm.height();
    141                         const int iTotalHeight = 8 * iFontHeight;
    142                         m_pSourceImageList->setMinimumSize(QSize(iTotalWidth, iTotalHeight));
     132                        /* A bit of look&feel: */
    143133                        m_pSourceImageList->setAlternatingRowColors(true);
    144134
     
    166156                    if (m_pFormEditor)
    167157                    {
    168                         /* Make form editor fit fit 40/50 symbols
    169                          * horizontally and 8 sections vertically: */
    170                         const QFontMetrics fm(m_pSourceImageList->font());
    171                         const int iFontWidth = fm.width('x');
    172 #ifdef VBOX_WS_MAC
    173                         const int iTotalWidth = 40 * iFontWidth;
    174 #else
    175                         const int iTotalWidth = 50 * iFontWidth;
    176 #endif
    177                         const int iSectionHeight = m_pFormEditor->verticalHeader()
    178                                                  ? m_pFormEditor->verticalHeader()->defaultSectionSize()
    179                                                  : fm.height();
    180                         const int iTotalHeight = 8 * iSectionHeight;
    181                         m_pFormEditor->setMinimumSize(QSize(iTotalWidth, iTotalHeight));
    182 
    183158                        /* Add into layout: */
    184159                        pLayoutSettings->addWidget(m_pFormEditor);
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageSource.cpp

    r93115 r93234  
    392392                    const int iTotalHeight = 8 * iFontHeight;
    393393                    m_pSourceImageList->setMinimumSize(QSize(iTotalWidth, iTotalHeight));
     394                    /* We want to have sorting enabled: */
     395                    m_pSourceImageList->setSortingEnabled(true);
     396                    /* A bit of look&feel: */
    394397                    m_pSourceImageList->setAlternatingRowColors(true);
    395                     m_pSourceImageList->setSortingEnabled(true);
    396398
    397399                    /* Add into layout: */
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