1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-04 09:11:33 +02:00

Qt4 - Icons for the menus. Works from Danko Dolch again (THANKS). New icons for folders (blue and grey) (not yet used), for file (thin and wide) and tape. Update Network with a bit of coloring.

This commit is contained in:
Jean-Baptiste Kempf 2007-06-16 09:40:07 +00:00
parent 8aa2b8cb56
commit f761baaab1
10 changed files with 12 additions and 2 deletions

1
THANKS
View File

@ -52,6 +52,7 @@ Damian Ivereigh <damian at cisco.com> - ac3dec uninitialized data structure fix
Damien Fouilleul <damien.fouilleul at laposte.net> - DirectShow input improvements
Daniel Fischer <dan at subsignal dot org> - Shoutcast output support
Daniel Stränger <vlc at schmaller d0t de> - M3U, xtag and playlist improvements. Meta information core fixes. XSPF playlist support
Danko Dolch <info at dolchonline d0t net> - Icons and Design for Qt4 Interface
David Kennedy <dkennedy at tinytoad.com> - X11 fullscreen patch
Daniel Dreibrodt, aka aLtgLasS <daniel d.t dreibrodt -@t- gmx d0t de> - VLC 0.8.5 default skin
Daniel Nylander <info@danielnylander at se> - Swedish translation

View File

@ -195,5 +195,10 @@ EXTRA_DIST += \
pixmaps/vlc_quit_16px.png \
pixmaps/vlc_network_16px.png \
pixmaps/vlc_capture-card_16px.png \
pixmaps/vlc_folder-grey_16px.png \
pixmaps/vlc_folder-blue_16px.png \
pixmaps/vlc_tape_16px.png \
pixmaps/vlc_file-asym_16px.png \
pixmaps/vlc_file-wide_16px.png \
pixmaps/vlc_info_16px.png \
pixmaps/vlc_next_16px.png

View File

@ -197,7 +197,8 @@ void QVLCMenu::createMenuBar( MainInterface *mi, intf_thread_t *p_intf,
QMenu *QVLCMenu::FileMenu()
{
QMenu *menu = new QMenu();
DP_SADD( menu, qtr("Open &File..." ), "", "", openFileDialog(), "Ctrl+O" );
DP_SADD( menu, qtr("Open &File..." ), "",
":/pixmaps/vlc_file-asym_16px.png", openFileDialog(), "Ctrl+O" );
DP_SADD( menu, qtr("Open &Disc..." ), "", "", openDiscDialog(), "Ctrl+D" );
DP_SADD( menu, qtr("Open &Network..." ), "",
":/pixmaps/vlc_network_16px.png", openNetDialog(), "Ctrl+N" );
@ -621,7 +622,8 @@ void QVLCMenu::updateSystrayMenu( MainInterface *mi, intf_thread_t *p_intf,
sysMenu->addSeparator();
POPUP_PLAY_ENTRIES( sysMenu );
sysMenu->addSeparator();
DP_SADD( sysMenu, qtr("&Open Media" ), "", "", openFileDialog(), "" );
DP_SADD( sysMenu, qtr("&Open Media" ), "",
":/pixmaps/vlc_file-wide_16px.png", openFileDialog(), "" );
DP_SADD( sysMenu, qtr("&Quit") , "", ":/pixmaps/vlc_quit_16px.png",
quit(), "" );

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

View File

@ -29,6 +29,8 @@
<file>pixmaps/vlc_play_16px.png</file>
<file>pixmaps/vlc_network_16px.png</file>
<file>pixmaps/vlc_quit_16px.png</file>
<file>pixmaps/vlc_file-asym_16px.png</file>
<file>pixmaps/vlc_file-wide_16px.png</file>
<file>pixmaps/vlc_capture-card_16px.png</file>
<file>pixmaps/vlc_stream_16px.png</file>
</qresource>