VirtualBox

Changeset 50092 in vbox for trunk


Ignore:
Timestamp:
Jan 17, 2014 1:03:16 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
91616
Message:

FE/Qt: 7090: Providing x11 platforms with virtualbox.svg icon: 1st step: Adding icon.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Config.kmk

    r50053 r50092  
    836836VBOX_BRAND_GUI_VBOX_48PX_PNG         := $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/NonOSE/VirtualBox_48px.png
    837837VBOX_BRAND_GUI_VBOX_64PX_PNG         := $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/NonOSE/VirtualBox_64px.png
     838VBOX_BRAND_GUI_VBOX_SVG              := $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/NonOSE/VirtualBox.svg
    838839VBOX_BRAND_WIN_INST_DLGJPG           := $(PATH_ROOT)/src/VBox/Installer/win/Binary/Dialog.jpg
    839840VBOX_BRAND_WIN_INST_EXT              :=
  • trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk

    r49791 r50092  
    862862                -e 's;@VBOX_VBOX_64PX_PNG@;$(VBOX_BRAND_GUI_VBOX_64PX_PNG);g' \
    863863                -e 's;@VBOX_CUBE_42PX_PNG@;$(VBOX_BRAND_GUI_CUBE_42PX_PNG);g' \
     864                -e 's;@VBOX_CUBE_SVG@;$(VBOX_BRAND_GUI_VBOX_SVG);g' \
    864865                --output $@ \
    865866                $<
  • trunk/src/VBox/Frontends/VirtualBox/VirtualBoxBrand.qrc

    r26198 r50092  
    99    <file alias="VirtualBox_48px.png">@VBOX_VBOX_48PX_PNG@</file>
    1010    <file alias="VirtualBox_64px.png">@VBOX_VBOX_64PX_PNG@</file>
     11    <file alias="VirtualBox.svg">@VBOX_CUBE_SVG@</file>
    1112 </qresource>
    1213 </RCC>
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp

    r50081 r50092  
    10891089    /* Prepare application icon: */
    10901090#if !(defined (Q_WS_WIN) || defined (Q_WS_MAC))
    1091     /* On Win32, it's built-in to the executable.
    1092      * On Mac OS X the icon referenced in info.plist is used. */
    1093     setWindowIcon(QIcon(":/VirtualBox_48px.png"));
     1091    /* On Win host it's built-in to the executable.
     1092     * On Mac OS X the icon referenced in info.plist is used.
     1093     * On X11 we will provide as much icons as we can.. */
     1094    QIcon icon(":/VirtualBox.svg");
     1095    icon.addFile(":/VirtualBox_48px.png");
     1096    icon.addFile(":/VirtualBox_64px.png");
     1097    setWindowIcon(icon);
    10941098#endif
    10951099}
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