Added large icons to ressources.

This commit is contained in:
Philipp Wolfer
2009-09-22 20:15:35 +02:00
parent 1aa2b3441e
commit 36ee05a166
12 changed files with 6176 additions and 2077 deletions

View File

@@ -1,5 +1,8 @@
Lukáš Lalinský <lalinsky@gmail.com>
Robert Kaye <rob@eorbit.net>
Philipp Wolfer <ph.wolfer@googlemail.com>
Picard icons by Carlin Mangar <openshift@gmail.com>
The icons in this program are from the Tango Desktop Project
<http://tango.freedesktop.org/>.

View File

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 59 KiB

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -5,5 +5,5 @@ Exec=picard
Terminal=false
Type=Application
StartupNotify=true
Icon=picard-32
Icon=picard-48
Categories=AudioVideo;AudioVideoEditing;

File diff suppressed because it is too large Load Diff

View File

@@ -65,6 +65,8 @@ class MainWindow(QtGui.QMainWindow):
icon = QtGui.QIcon()
icon.addFile(":/images/Picard16.png", QtCore.QSize(16, 16))
icon.addFile(":/images/Picard32.png", QtCore.QSize(32, 32))
icon.addFile(":/images/Picard48.png", QtCore.QSize(48, 48))
icon.addFile(":/images/Picard256.png", QtCore.QSize(256, 256))
self.setWindowIcon(icon)
self.create_actions()

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 885 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -6,6 +6,8 @@
<file>images/note.png</file>
<file>images/Picard16.png</file>
<file>images/Picard32.png</file>
<file>images/Picard48.png</file>
<file>images/Picard256.png</file>
<file>images/22x22/picard-analyze.png</file>
<file>images/16x16/media-optical.png</file>
<file>images/22x22/media-optical.png</file>
@@ -35,4 +37,4 @@
<file>images/22x22/picard-cluster.png</file>
<file>images/16x16/applications-system.png</file>
</qresource>
</RCC>
</RCC>

View File

@@ -542,7 +542,7 @@ if do_py2app:
# FIXME: this should check for the actual command ('install' vs. 'bdist_nsis', 'py2app', ...), not installed libraries
if py2exe is None and do_py2app is False:
args['data_files'].append(('share/icons', ('picard-16.png', 'picard-32.png')))
args['data_files'].append(('share/icons', ('picard-16.png', 'picard-32.png', 'picard-48.png', 'picard-256.png')))
args['data_files'].append(('share/applications', ('picard.desktop',)))