icons: rename radiotext icons

Origin commit data
------------------
Branch: ni/coolstream
Commit: 363512dac2
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-16 (Sat, 16 Oct 2021)

Origin message was:
------------------
- icons: rename radiotext icons

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-10-16 22:23:14 +02:00
parent 45f54feb2d
commit fef25aade1
6 changed files with 10 additions and 10 deletions

View File

@@ -8,9 +8,9 @@ install_DATA = \
dd.png \
dd_avail.png \
dd_gray.png \
radiotextget.png \
radiotextoff.png \
radiotextwait.png \
radiotext_get.png \
radiotext_off.png \
radiotext_wait.png \
res_000.png \
res_1080.png \
res_1280.png \

View File

Before

Width:  |  Height:  |  Size: 148 B

After

Width:  |  Height:  |  Size: 148 B

View File

Before

Width:  |  Height:  |  Size: 144 B

After

Width:  |  Height:  |  Size: 144 B

View File

Before

Width:  |  Height:  |  Size: 148 B

After

Width:  |  Height:  |  Size: 148 B

View File

@@ -190,7 +190,7 @@ void CInfoViewerBB::getBBIconInfo()
break;
case CInfoViewerBB::ICON_RT:
if (isRadioMode && g_settings.radiotext_enable)
iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXTGET, &w, &h);
iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXT_GET, &w, &h);
break;
case CInfoViewerBB::ICON_DD:
if( g_settings.infobar_show_dd_available )
@@ -562,9 +562,9 @@ void CInfoViewerBB::showIcon_RadioText(bool rt_available)
std::string rt_icon;
if (rt_available)
rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXTGET : NEUTRINO_ICON_RADIOTEXTWAIT;
rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXT_GET : NEUTRINO_ICON_RADIOTEXT_WAIT;
else
rt_icon = NEUTRINO_ICON_RADIOTEXTOFF;
rt_icon = NEUTRINO_ICON_RADIOTEXT_OFF;
showBBIcons(CInfoViewerBB::ICON_RT, rt_icon);
}

View File

@@ -254,9 +254,9 @@
#define NEUTRINO_ICON_DD "dd"
#define NEUTRINO_ICON_DD_AVAIL "dd_avail"
#define NEUTRINO_ICON_DD_GREY "dd_gray"
#define NEUTRINO_ICON_RADIOTEXTGET "radiotextget"
#define NEUTRINO_ICON_RADIOTEXTOFF "radiotextoff"
#define NEUTRINO_ICON_RADIOTEXTWAIT "radiotextwait"
#define NEUTRINO_ICON_RADIOTEXT_GET "radiotext_get"
#define NEUTRINO_ICON_RADIOTEXT_OFF "radiotext_off"
#define NEUTRINO_ICON_RADIOTEXT_WAIT "radiotext_wait"
#define NEUTRINO_ICON_RESOLUTION_000 "res_000"
#define NEUTRINO_ICON_RESOLUTION_288 "res_288"
#define NEUTRINO_ICON_RESOLUTION_352 "res_352"
@@ -275,7 +275,7 @@
#define NEUTRINO_ICON_RESOLUTION_HD "res_hd"
#define NEUTRINO_ICON_RESOLUTION_SD "res_sd"
#define NEUTRINO_ICON_RESOLUTION_UHD "res_uhd"
#define NEUTRINO_ICON_SCRAMBLED "ca"
#define NEUTRINO_ICON_SCRAMBLED "ca"
#define NEUTRINO_ICON_SCRAMBLED_GREY "ca_gray"
#define NEUTRINO_ICON_SUBT "subt"
#define NEUTRINO_ICON_SUBT_GREY "subt_gray"