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)
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 16 KiB |
BIN
rpcs3/Icons/data_blue.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
rpcs3/Icons/data_gray.png
Normal file
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 70 KiB |
BIN
rpcs3/Icons/hdd_blue.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
rpcs3/Icons/hdd_gray.png
Normal file
After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 16 KiB |
BIN
rpcs3/Icons/unknown_blue.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
rpcs3/Icons/unknown_gray.png
Normal file
After Width: | Height: | Size: 17 KiB |
@ -5,21 +5,21 @@
|
||||
<file>Icons/restart.png</file>
|
||||
<file>Icons/stop.png</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/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/grid_blue.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/info_gray.png</file>
|
||||
<file>Icons/list_blue.png</file>
|
||||
<file>Icons/list_gray.png</file>
|
||||
<file>Icons/media_blue.png</file>
|
||||
<file>Icons/media_gray.png</file>
|
||||
<file>Icons/unknown_blue.png</file>
|
||||
<file>Icons/unknown_gray.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -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->setMovable(false);
|
||||
m_Tool_Bar->setVisible(m_showToolBar);
|
||||
m_Tool_Bar->setContextMenuPolicy(Qt::PreventContextMenu);
|
||||
|
||||
// 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->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->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->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->setToolTip(tr("Show Unknown Category"));
|
||||
|
||||
|