VirtualBox

Ignore:
Timestamp:
Jul 21, 2008 8:59:10 AM (16 years ago)
Author:
vboxsync
Message:

FE/Qt4: New 32px toolbar icons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxSettingsSelector.cpp

    r10701 r10769  
    201201}
    202202
    203 QWidget *VBoxSettingsTreeViewSelector::addItem (const QIcon &aIcon,
     203QWidget *VBoxSettingsTreeViewSelector::addItem (const QString &aBigIcon,
     204                                                const QString &aSmallIcon,
    204205                                                int aId,
    205206                                                const QString &aLink,
     
    207208                                                int aParentId /* = -1 */)
    208209{
     210    NOREF (aBigIcon);
    209211    QWidget *result = NULL;
    210212    if (aPage != NULL)
    211213    {
    212         SelectorItem *item = new SelectorItem (aIcon, "", aId, aLink, aPage, aParentId);
     214        SelectorItem *item = new SelectorItem (QIcon (aSmallIcon), "", aId, aLink, aPage, aParentId);
    213215        mItemList.append (item);
    214216
     
    216218                                                                                  << idToString (aId)
    217219                                                                                  << aLink);
    218         twitem->setIcon (treeWidget_Category, aIcon);
     220        twitem->setIcon (treeWidget_Category, item->icon());
    219221        aPage->setContentsMargins (9, 2, 9, 2);
    220222        VBoxGlobal::setLayoutMargin (aPage->layout(), 0);
     
    377379}
    378380
    379 QWidget *VBoxSettingsToolBarSelector::addItem (const QIcon &aIcon,
     381QWidget *VBoxSettingsToolBarSelector::addItem (const QString &aBigIcon,
     382                                               const QString &aSmallIcon,
    380383                                               int aId,
    381384                                               const QString &aLink,
     
    384387{
    385388    QWidget *result = NULL;
    386     SelectorActionItem *item = new SelectorActionItem (aIcon, "", aId, aLink, aPage, aParentId, this);
     389    SelectorActionItem *item = new SelectorActionItem (QIcon (aBigIcon), "", aId, aLink, aPage, aParentId, this);
    387390    mItemList.append (item);
    388391
     
    416419            VBoxGlobal::setLayoutMargin (aPage->layout(), 0);
    417420            if (tabWidget)
    418                 tabWidget->addTab (aPage, aIcon, "");
     421                tabWidget->addTab (aPage, QIcon (aSmallIcon), "");
    419422        }
    420423    }
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