Qt: Add icons by @andercard0
|
@ -34,7 +34,7 @@
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
<property name="pixmap">
|
<property name="pixmap">
|
||||||
<pixmap resource="resources/resources.qrc">:/icons/software-update-available.png</pixmap>
|
<pixmap resource="resources/resources.qrc">:/icons/UpdateDuck.png</pixmap>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -834,6 +834,7 @@ void MainWindow::setupAdditionalUi()
|
||||||
QAction* action = language_group->addAction(it.first);
|
QAction* action = language_group->addAction(it.first);
|
||||||
action->setCheckable(true);
|
action->setCheckable(true);
|
||||||
action->setChecked(current_language == it.second);
|
action->setChecked(current_language == it.second);
|
||||||
|
action->setIcon(QIcon(QStringLiteral(":/icons/flags/%1.png").arg(it.second)));
|
||||||
m_ui.menuSettingsLanguage->addAction(action);
|
m_ui.menuSettingsLanguage->addAction(action);
|
||||||
action->setData(it.second);
|
action->setData(it.second);
|
||||||
connect(action, &QAction::triggered, [this, action]() {
|
connect(action, &QAction::triggered, [this, action]() {
|
||||||
|
|
|
@ -447,31 +447,61 @@
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionGitHubRepository">
|
<action name="actionGitHubRepository">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/github.png</normaloff>:/icons/github.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&GitHub Repository...</string>
|
<string>&GitHub Repository...</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionIssueTracker">
|
<action name="actionIssueTracker">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/IssueTracker.png</normaloff>:/icons/IssueTracker.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Issue Tracker...</string>
|
<string>&Issue Tracker...</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionDiscordServer">
|
<action name="actionDiscordServer">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/discord.png</normaloff>:/icons/discord.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Discord Server...</string>
|
<string>&Discord Server...</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionCheckForUpdates">
|
<action name="actionCheckForUpdates">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/update.png</normaloff>:/icons/update.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Check for &Updates...</string>
|
<string>Check for &Updates...</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionAboutQt">
|
<action name="actionAboutQt">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/QT.png</normaloff>:/icons/QT.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>About &Qt...</string>
|
<string>About &Qt...</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionAbout">
|
<action name="actionAbout">
|
||||||
|
<property name="icon">
|
||||||
|
<iconset resource="resources/resources.qrc">
|
||||||
|
<normaloff>:/icons/duck_64.png</normaloff>:/icons/duck_64.png
|
||||||
|
</iconset>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&About DuckStation...</string>
|
<string>&About DuckStation...</string>
|
||||||
</property>
|
</property>
|
||||||
|
|
BIN
src/duckstation-qt/resources/icons/IssueTracker.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
src/duckstation-qt/resources/icons/QT.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
src/duckstation-qt/resources/icons/UpdateDuck.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
src/duckstation-qt/resources/icons/discord.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
src/duckstation-qt/resources/icons/flags/de.png
Normal file
After Width: | Height: | Size: 460 B |
BIN
src/duckstation-qt/resources/icons/flags/de@2x.png
Normal file
After Width: | Height: | Size: 899 B |
BIN
src/duckstation-qt/resources/icons/flags/en.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
src/duckstation-qt/resources/icons/flags/en@2x.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
src/duckstation-qt/resources/icons/flags/es.png
Normal file
After Width: | Height: | Size: 471 B |
BIN
src/duckstation-qt/resources/icons/flags/es@2x.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
src/duckstation-qt/resources/icons/flags/fr.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/duckstation-qt/resources/icons/flags/fr@2x.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
src/duckstation-qt/resources/icons/flags/he.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/duckstation-qt/resources/icons/flags/he@2x.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
src/duckstation-qt/resources/icons/flags/it.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
src/duckstation-qt/resources/icons/flags/it@2x.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
src/duckstation-qt/resources/icons/flags/ja.png
Normal file
After Width: | Height: | Size: 856 B |
BIN
src/duckstation-qt/resources/icons/flags/ja@2x.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
src/duckstation-qt/resources/icons/flags/nl.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/duckstation-qt/resources/icons/flags/nl@2x.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
src/duckstation-qt/resources/icons/flags/pl.png
Normal file
After Width: | Height: | Size: 815 B |
BIN
src/duckstation-qt/resources/icons/flags/pl@2x.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
src/duckstation-qt/resources/icons/flags/pt-br.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
src/duckstation-qt/resources/icons/flags/pt-br@2x.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
src/duckstation-qt/resources/icons/flags/pt-pt.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
src/duckstation-qt/resources/icons/flags/pt-pt@2x.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
src/duckstation-qt/resources/icons/flags/ru.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
src/duckstation-qt/resources/icons/flags/ru@2x.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
src/duckstation-qt/resources/icons/flags/zh-cn.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
src/duckstation-qt/resources/icons/flags/zh-cn@2x.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
src/duckstation-qt/resources/icons/github.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
src/duckstation-qt/resources/icons/update.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
|
@ -11,10 +11,10 @@
|
||||||
<file>icons/applications-internet.png</file>
|
<file>icons/applications-internet.png</file>
|
||||||
<file>icons/applications-other.png</file>
|
<file>icons/applications-other.png</file>
|
||||||
<file>icons/applications-other@2x.png</file>
|
<file>icons/applications-other@2x.png</file>
|
||||||
<file>icons/applications-system.png</file>
|
|
||||||
<file>icons/applications-system@2x.png</file>
|
|
||||||
<file>icons/applications-system-24.png</file>
|
<file>icons/applications-system-24.png</file>
|
||||||
<file>icons/applications-system-24@2x.png</file>
|
<file>icons/applications-system-24@2x.png</file>
|
||||||
|
<file>icons/applications-system.png</file>
|
||||||
|
<file>icons/applications-system@2x.png</file>
|
||||||
<file>icons/audio-card.png</file>
|
<file>icons/audio-card.png</file>
|
||||||
<file>icons/audio-card@2x.png</file>
|
<file>icons/audio-card@2x.png</file>
|
||||||
<file>icons/camera-photo.png</file>
|
<file>icons/camera-photo.png</file>
|
||||||
|
@ -26,16 +26,17 @@
|
||||||
<file>icons/cover-placeholder.png</file>
|
<file>icons/cover-placeholder.png</file>
|
||||||
<file>icons/debug-execute-from-cursor.png</file>
|
<file>icons/debug-execute-from-cursor.png</file>
|
||||||
<file>icons/debug-execute-to-cursor.png</file>
|
<file>icons/debug-execute-to-cursor.png</file>
|
||||||
<file>icons/debug-run-cursor.png</file>
|
|
||||||
<file>icons/debug-run.png</file>
|
|
||||||
<file>icons/debug-pc.png</file>
|
<file>icons/debug-pc.png</file>
|
||||||
<file>icons/debug-pc@2x.png</file>
|
<file>icons/debug-pc@2x.png</file>
|
||||||
|
<file>icons/debug-run-cursor.png</file>
|
||||||
|
<file>icons/debug-run.png</file>
|
||||||
<file>icons/debug-step-instruction.png</file>
|
<file>icons/debug-step-instruction.png</file>
|
||||||
<file>icons/debug-step-into-instruction.png</file>
|
<file>icons/debug-step-into-instruction.png</file>
|
||||||
<file>icons/debug-step-into.png</file>
|
<file>icons/debug-step-into.png</file>
|
||||||
<file>icons/debug-step-out.png</file>
|
<file>icons/debug-step-out.png</file>
|
||||||
<file>icons/debug-step-over.png</file>
|
<file>icons/debug-step-over.png</file>
|
||||||
<file>icons/debug-trace.png</file>
|
<file>icons/debug-trace.png</file>
|
||||||
|
<file>icons/discord.png</file>
|
||||||
<file>icons/document-new.png</file>
|
<file>icons/document-new.png</file>
|
||||||
<file>icons/document-new@2x.png</file>
|
<file>icons/document-new@2x.png</file>
|
||||||
<file>icons/document-open.png</file>
|
<file>icons/document-open.png</file>
|
||||||
|
@ -55,37 +56,69 @@
|
||||||
<file>icons/emblem-person-blue.png</file>
|
<file>icons/emblem-person-blue.png</file>
|
||||||
<file>icons/emblem-person-blue@2x.png</file>
|
<file>icons/emblem-person-blue@2x.png</file>
|
||||||
<file>icons/flag-eu.png</file>
|
<file>icons/flag-eu.png</file>
|
||||||
|
<file>icons/flag-eu.svg</file>
|
||||||
<file>icons/flag-eu@2x.png</file>
|
<file>icons/flag-eu@2x.png</file>
|
||||||
<file>icons/flag-jp.png</file>
|
<file>icons/flag-jp.png</file>
|
||||||
|
<file>icons/flag-jp.svg</file>
|
||||||
<file>icons/flag-jp@2x.png</file>
|
<file>icons/flag-jp@2x.png</file>
|
||||||
<file>icons/flag-other.png</file>
|
<file>icons/flag-other.png</file>
|
||||||
<file>icons/flag-other@2x.png</file>
|
<file>icons/flag-other@2x.png</file>
|
||||||
<file>icons/flag-uc.png</file>
|
<file>icons/flag-uc.png</file>
|
||||||
|
<file>icons/flag-uc.svg</file>
|
||||||
<file>icons/flag-uc@2x.png</file>
|
<file>icons/flag-uc@2x.png</file>
|
||||||
<file>icons/flag-us.png</file>
|
<file>icons/flag-us.png</file>
|
||||||
|
<file>icons/flag-us.svg</file>
|
||||||
<file>icons/flag-us@2x.png</file>
|
<file>icons/flag-us@2x.png</file>
|
||||||
|
<file>icons/flags/de.png</file>
|
||||||
|
<file>icons/flags/de@2x.png</file>
|
||||||
|
<file>icons/flags/en.png</file>
|
||||||
|
<file>icons/flags/en@2x.png</file>
|
||||||
|
<file>icons/flags/es.png</file>
|
||||||
|
<file>icons/flags/es@2x.png</file>
|
||||||
|
<file>icons/flags/fr.png</file>
|
||||||
|
<file>icons/flags/fr@2x.png</file>
|
||||||
|
<file>icons/flags/he.png</file>
|
||||||
|
<file>icons/flags/he@2x.png</file>
|
||||||
|
<file>icons/flags/it.png</file>
|
||||||
|
<file>icons/flags/it@2x.png</file>
|
||||||
|
<file>icons/flags/ja.png</file>
|
||||||
|
<file>icons/flags/ja@2x.png</file>
|
||||||
|
<file>icons/flags/nl.png</file>
|
||||||
|
<file>icons/flags/nl@2x.png</file>
|
||||||
|
<file>icons/flags/pl.png</file>
|
||||||
|
<file>icons/flags/pl@2x.png</file>
|
||||||
|
<file>icons/flags/pt-br.png</file>
|
||||||
|
<file>icons/flags/pt-br@2x.png</file>
|
||||||
|
<file>icons/flags/pt-pt.png</file>
|
||||||
|
<file>icons/flags/pt-pt@2x.png</file>
|
||||||
|
<file>icons/flags/ru.png</file>
|
||||||
|
<file>icons/flags/ru@2x.png</file>
|
||||||
|
<file>icons/flags/zh-cn.png</file>
|
||||||
|
<file>icons/flags/zh-cn@2x.png</file>
|
||||||
<file>icons/folder-open.png</file>
|
<file>icons/folder-open.png</file>
|
||||||
<file>icons/folder-open@2x.png</file>
|
<file>icons/folder-open@2x.png</file>
|
||||||
|
<file>icons/github.png</file>
|
||||||
<file>icons/go-down-16.png</file>
|
<file>icons/go-down-16.png</file>
|
||||||
<file>icons/go-down-16@2x.png</file>
|
<file>icons/go-down-16@2x.png</file>
|
||||||
<file>icons/go-up-16.png</file>
|
<file>icons/go-up-16.png</file>
|
||||||
<file>icons/go-up-16@2x.png</file>
|
<file>icons/go-up-16@2x.png</file>
|
||||||
<file>icons/input-gaming.png</file>
|
<file>icons/input-gaming.png</file>
|
||||||
<file>icons/input-gaming@2x.png</file>
|
<file>icons/input-gaming@2x.png</file>
|
||||||
|
<file>icons/IssueTracker.png</file>
|
||||||
<file>icons/list-add.png</file>
|
<file>icons/list-add.png</file>
|
||||||
<file>icons/list-add@2x.png</file>
|
<file>icons/list-add@2x.png</file>
|
||||||
<file>icons/list-remove.png</file>
|
<file>icons/list-remove.png</file>
|
||||||
<file>icons/list-remove@2x.png</file>
|
<file>icons/list-remove@2x.png</file>
|
||||||
<file>icons/media-flash.png</file>
|
|
||||||
<file>icons/media-flash@2x.png</file>
|
|
||||||
<file>icons/media-flash-2.png</file>
|
<file>icons/media-flash-2.png</file>
|
||||||
<file>icons/media-flash-2@2x.png</file>
|
|
||||||
<file>icons/media-flash-24.png</file>
|
<file>icons/media-flash-24.png</file>
|
||||||
<file>icons/media-flash-24@2x.png</file>
|
<file>icons/media-flash-24@2x.png</file>
|
||||||
<file>icons/media-optical.png</file>
|
<file>icons/media-flash-2@2x.png</file>
|
||||||
<file>icons/media-optical@2x.png</file>
|
<file>icons/media-flash.png</file>
|
||||||
|
<file>icons/media-flash@2x.png</file>
|
||||||
<file>icons/media-optical-24.png</file>
|
<file>icons/media-optical-24.png</file>
|
||||||
<file>icons/media-optical-24@2x.png</file>
|
<file>icons/media-optical-24@2x.png</file>
|
||||||
|
<file>icons/media-optical.png</file>
|
||||||
|
<file>icons/media-optical@2x.png</file>
|
||||||
<file>icons/media-playback-pause.png</file>
|
<file>icons/media-playback-pause.png</file>
|
||||||
<file>icons/media-playback-pause@2x.png</file>
|
<file>icons/media-playback-pause@2x.png</file>
|
||||||
<file>icons/media-playback-start.png</file>
|
<file>icons/media-playback-start.png</file>
|
||||||
|
@ -100,6 +133,7 @@
|
||||||
<file>icons/preferences-system@2x.png</file>
|
<file>icons/preferences-system@2x.png</file>
|
||||||
<file>icons/process-stop.png</file>
|
<file>icons/process-stop.png</file>
|
||||||
<file>icons/process-stop@2x.png</file>
|
<file>icons/process-stop@2x.png</file>
|
||||||
|
<file>icons/QT.png</file>
|
||||||
<file>icons/software-update-available.png</file>
|
<file>icons/software-update-available.png</file>
|
||||||
<file>icons/software-update-available@2x.png</file>
|
<file>icons/software-update-available@2x.png</file>
|
||||||
<file>icons/star-0.png</file>
|
<file>icons/star-0.png</file>
|
||||||
|
@ -116,6 +150,8 @@
|
||||||
<file>icons/system-shutdown@2x.png</file>
|
<file>icons/system-shutdown@2x.png</file>
|
||||||
<file>icons/trophy.png</file>
|
<file>icons/trophy.png</file>
|
||||||
<file>icons/trophy@2x.png</file>
|
<file>icons/trophy@2x.png</file>
|
||||||
|
<file>icons/update.png</file>
|
||||||
|
<file>icons/UpdateDuck.png</file>
|
||||||
<file>icons/utilities-system-monitor.png</file>
|
<file>icons/utilities-system-monitor.png</file>
|
||||||
<file>icons/utilities-system-monitor@2x.png</file>
|
<file>icons/utilities-system-monitor@2x.png</file>
|
||||||
<file>icons/video-display.png</file>
|
<file>icons/video-display.png</file>
|
||||||
|
|