Update Icons provided by Discord user rutantan (#2862)

* update Icons + remove rightclick on toolbar
* use better data icons
* use better disc icons
* Use better unknown icons
* final adjustment (hdd icons)
This commit is contained in:
Megamouse 2017-06-12 21:23:12 +02:00 committed by Ani
parent 0c4cc34488
commit 25823a1f66
24 changed files with 14 additions and 13 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

BIN
rpcs3/Icons/data_blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
rpcs3/Icons/data_gray.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

BIN
rpcs3/Icons/hdd_blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
rpcs3/Icons/hdd_gray.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -5,21 +5,21 @@
<file>Icons/restart.png</file> <file>Icons/restart.png</file>
<file>Icons/stop.png</file> <file>Icons/stop.png</file>
<file>rpcs3.ico</file> <file>rpcs3.ico</file>
<file>Icons/copy_blue.png</file> <file>Icons/data_blue.png</file>
<file>Icons/data_gray.png</file>
<file>Icons/disc_blue.png</file> <file>Icons/disc_blue.png</file>
<file>Icons/grid_blue.png</file>
<file>Icons/harddisk_blue.png</file>
<file>Icons/home_blue.png</file>
<file>Icons/info_blue.png</file>
<file>Icons/list_blue.png</file>
<file>Icons/media_blue.png</file>
<file>Icons/copy_gray.png</file>
<file>Icons/disc_gray.png</file> <file>Icons/disc_gray.png</file>
<file>Icons/grid_blue.png</file>
<file>Icons/grid_gray.png</file> <file>Icons/grid_gray.png</file>
<file>Icons/harddisk_gray.png</file> <file>Icons/hdd_blue.png</file>
<file>Icons/hdd_gray.png</file>
<file>Icons/home_blue.png</file>
<file>Icons/home_gray.png</file> <file>Icons/home_gray.png</file>
<file>Icons/info_gray.png</file> <file>Icons/list_blue.png</file>
<file>Icons/list_gray.png</file> <file>Icons/list_gray.png</file>
<file>Icons/media_blue.png</file>
<file>Icons/media_gray.png</file> <file>Icons/media_gray.png</file>
<file>Icons/unknown_blue.png</file>
<file>Icons/unknown_gray.png</file>
</qresource> </qresource>
</RCC> </RCC>

View File

@ -58,9 +58,10 @@ game_list_frame::game_list_frame(std::shared_ptr<gui_settings> settings, Render_
m_Tool_Bar = new QToolBar(m_Game_Dock); m_Tool_Bar = new QToolBar(m_Game_Dock);
m_Tool_Bar->setMovable(false); m_Tool_Bar->setMovable(false);
m_Tool_Bar->setVisible(m_showToolBar); m_Tool_Bar->setVisible(m_showToolBar);
m_Tool_Bar->setContextMenuPolicy(Qt::PreventContextMenu);
// ToolBar Actions // ToolBar Actions
m_catActHDD = { new QAction(""), QIcon(":/Icons/harddisk_blue.png"), QIcon(":/Icons/harddisk_gray.png") }; m_catActHDD = { new QAction(""), QIcon(":/Icons/hdd_blue.png"), QIcon(":/Icons/hdd_gray.png") };
m_catActHDD.action->setIcon(xgui_settings->GetValue(GUI::cat_hdd_game).toBool() ? m_catActHDD.colored : m_catActHDD.gray); m_catActHDD.action->setIcon(xgui_settings->GetValue(GUI::cat_hdd_game).toBool() ? m_catActHDD.colored : m_catActHDD.gray);
m_catActHDD.action->setToolTip(tr("Show HDD Category")); m_catActHDD.action->setToolTip(tr("Show HDD Category"));
@ -76,11 +77,11 @@ game_list_frame::game_list_frame(std::shared_ptr<gui_settings> settings, Render_
m_catActAudioVideo.action->setIcon(xgui_settings->GetValue(GUI::cat_audio_video).toBool() ? m_catActAudioVideo.colored : m_catActAudioVideo.gray); m_catActAudioVideo.action->setIcon(xgui_settings->GetValue(GUI::cat_audio_video).toBool() ? m_catActAudioVideo.colored : m_catActAudioVideo.gray);
m_catActAudioVideo.action->setToolTip(tr("Show Audio/Video Category")); m_catActAudioVideo.action->setToolTip(tr("Show Audio/Video Category"));
m_catActGameData = { new QAction(""), QIcon(":/Icons/copy_blue.png"), QIcon(":/Icons/copy_gray.png") }; m_catActGameData = { new QAction(""), QIcon(":/Icons/data_blue.png"), QIcon(":/Icons/data_gray.png") };
m_catActGameData.action->setIcon(xgui_settings->GetValue(GUI::cat_game_data).toBool() ? m_catActGameData.colored : m_catActGameData.gray); m_catActGameData.action->setIcon(xgui_settings->GetValue(GUI::cat_game_data).toBool() ? m_catActGameData.colored : m_catActGameData.gray);
m_catActGameData.action->setToolTip(tr("Show GameData Category")); m_catActGameData.action->setToolTip(tr("Show GameData Category"));
m_catActUnknown = { new QAction(""), QIcon(":/Icons/info_blue.png"), QIcon(":/Icons/info_gray.png") }; m_catActUnknown = { new QAction(""), QIcon(":/Icons/unknown_blue.png"), QIcon(":/Icons/unknown_gray.png") };
m_catActUnknown.action->setIcon(xgui_settings->GetValue(GUI::cat_unknown).toBool() ? m_catActUnknown.colored : m_catActUnknown.gray); m_catActUnknown.action->setIcon(xgui_settings->GetValue(GUI::cat_unknown).toBool() ? m_catActUnknown.colored : m_catActUnknown.gray);
m_catActUnknown.action->setToolTip(tr("Show Unknown Category")); m_catActUnknown.action->setToolTip(tr("Show Unknown Category"));