mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 07:51:19 +02:00
- epgplus: signalize zap tries while movie playback
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -265,7 +265,6 @@ channellist.make_hdlist Erzeuge Bouquets mit HD- und UHD-Kanälen
|
|||||||
channellist.make_newlist Erzeuge Bouquet mit neuen Kanälen
|
channellist.make_newlist Erzeuge Bouquet mit neuen Kanälen
|
||||||
channellist.make_removedlist Erzeuge Bouquet mit gelöschten Kanälen
|
channellist.make_removedlist Erzeuge Bouquet mit gelöschten Kanälen
|
||||||
channellist.make_webtvlist Erzeuge Bouquet mit WebTV-Kanälen
|
channellist.make_webtvlist Erzeuge Bouquet mit WebTV-Kanälen
|
||||||
channellist.movieplayer_zap Umschalten während der Film-Wiedergabe nicht möglich
|
|
||||||
channellist.new_zap_mode Quickzap in Liste
|
channellist.new_zap_mode Quickzap in Liste
|
||||||
channellist.new_zap_mode_active aktiv
|
channellist.new_zap_mode_active aktiv
|
||||||
channellist.new_zap_mode_allow erlauben
|
channellist.new_zap_mode_allow erlauben
|
||||||
@@ -1897,6 +1896,7 @@ movieplayer.titles Titel
|
|||||||
movieplayer.toomanybookmarks Sie haben bereits zu viele Lesezeichen angelegt.\nEs muß erst ein anderes gelöscht werden.
|
movieplayer.toomanybookmarks Sie haben bereits zu viele Lesezeichen angelegt.\nEs muß erst ein anderes gelöscht werden.
|
||||||
movieplayer.tsplayback TS Abspielen
|
movieplayer.tsplayback TS Abspielen
|
||||||
movieplayer.ytplayback YouTube-Feed Wiedergabe
|
movieplayer.ytplayback YouTube-Feed Wiedergabe
|
||||||
|
movieplayer.zap Umschalten während der Film-Wiedergabe nicht möglich
|
||||||
mpkey.audio Tonspuren
|
mpkey.audio Tonspuren
|
||||||
mpkey.bookmark Markierungen
|
mpkey.bookmark Markierungen
|
||||||
mpkey.forward Vorlauf
|
mpkey.forward Vorlauf
|
||||||
|
@@ -265,7 +265,6 @@ channellist.make_hdlist Create lists of HD and UHD channels
|
|||||||
channellist.make_newlist Create list of new channels
|
channellist.make_newlist Create list of new channels
|
||||||
channellist.make_removedlist Create list of removed channels
|
channellist.make_removedlist Create list of removed channels
|
||||||
channellist.make_webtvlist Create list of WebTV channels
|
channellist.make_webtvlist Create list of WebTV channels
|
||||||
channellist.movieplayer_zap Zap not possible while movie playback
|
|
||||||
channellist.new_zap_mode Quickzap in list
|
channellist.new_zap_mode Quickzap in list
|
||||||
channellist.new_zap_mode_active Active
|
channellist.new_zap_mode_active Active
|
||||||
channellist.new_zap_mode_allow Allow
|
channellist.new_zap_mode_allow Allow
|
||||||
@@ -1897,6 +1896,7 @@ movieplayer.titles Titles
|
|||||||
movieplayer.toomanybookmarks There are too many bookmarks.\nYou need to delete one of them first.
|
movieplayer.toomanybookmarks There are too many bookmarks.\nYou need to delete one of them first.
|
||||||
movieplayer.tsplayback Play TS
|
movieplayer.tsplayback Play TS
|
||||||
movieplayer.ytplayback YouTube videoplayer
|
movieplayer.ytplayback YouTube videoplayer
|
||||||
|
movieplayer.zap Zap not possible while movie playback
|
||||||
mpkey.audio Audiotracks
|
mpkey.audio Audiotracks
|
||||||
mpkey.bookmark Bookmarks
|
mpkey.bookmark Bookmarks
|
||||||
mpkey.forward Forward
|
mpkey.forward Forward
|
||||||
|
@@ -775,7 +775,7 @@ int CChannelList::show()
|
|||||||
oldselected = selected;
|
oldselected = selected;
|
||||||
paintBody(); // refresh zapped vs selected
|
paintBody(); // refresh zapped vs selected
|
||||||
} else if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts) {
|
} else if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts) {
|
||||||
ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_CHANNELLIST_MOVIEPLAYER_ZAP);
|
ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_MOVIEPLAYER_ZAP);
|
||||||
} else if(SameTP()) {
|
} else if(SameTP()) {
|
||||||
zapOnExit = true;
|
zapOnExit = true;
|
||||||
loop=false;
|
loop=false;
|
||||||
|
@@ -1080,7 +1080,12 @@ int EpgPlus::exec(CChannelList * pchannelList, int selectedChannelIndex, CBouque
|
|||||||
else if (msg == CRCInput::RC_ok)
|
else if (msg == CRCInput::RC_ok)
|
||||||
{
|
{
|
||||||
if (selectedChannelEntry)
|
if (selectedChannelEntry)
|
||||||
CNeutrinoApp::getInstance()->channelList->zapTo_ChannelID(selectedChannelEntry->channel->getChannelID());
|
{
|
||||||
|
if (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_ts)
|
||||||
|
ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_MOVIEPLAYER_ZAP);
|
||||||
|
else
|
||||||
|
CNeutrinoApp::getInstance()->channelList->zapTo_ChannelID(selectedChannelEntry->channel->getChannelID());
|
||||||
|
}
|
||||||
current_bouquet = bouquetList->getActiveBouquetNumber();
|
current_bouquet = bouquetList->getActiveBouquetNumber();
|
||||||
}
|
}
|
||||||
else if (CRCInput::isNumeric(msg))
|
else if (CRCInput::isNumeric(msg))
|
||||||
|
@@ -292,7 +292,6 @@ typedef enum
|
|||||||
LOCALE_CHANNELLIST_MAKE_NEWLIST,
|
LOCALE_CHANNELLIST_MAKE_NEWLIST,
|
||||||
LOCALE_CHANNELLIST_MAKE_REMOVEDLIST,
|
LOCALE_CHANNELLIST_MAKE_REMOVEDLIST,
|
||||||
LOCALE_CHANNELLIST_MAKE_WEBTVLIST,
|
LOCALE_CHANNELLIST_MAKE_WEBTVLIST,
|
||||||
LOCALE_CHANNELLIST_MOVIEPLAYER_ZAP,
|
|
||||||
LOCALE_CHANNELLIST_NEW_ZAP_MODE,
|
LOCALE_CHANNELLIST_NEW_ZAP_MODE,
|
||||||
LOCALE_CHANNELLIST_NEW_ZAP_MODE_ACTIVE,
|
LOCALE_CHANNELLIST_NEW_ZAP_MODE_ACTIVE,
|
||||||
LOCALE_CHANNELLIST_NEW_ZAP_MODE_ALLOW,
|
LOCALE_CHANNELLIST_NEW_ZAP_MODE_ALLOW,
|
||||||
@@ -1924,6 +1923,7 @@ typedef enum
|
|||||||
LOCALE_MOVIEPLAYER_TOOMANYBOOKMARKS,
|
LOCALE_MOVIEPLAYER_TOOMANYBOOKMARKS,
|
||||||
LOCALE_MOVIEPLAYER_TSPLAYBACK,
|
LOCALE_MOVIEPLAYER_TSPLAYBACK,
|
||||||
LOCALE_MOVIEPLAYER_YTPLAYBACK,
|
LOCALE_MOVIEPLAYER_YTPLAYBACK,
|
||||||
|
LOCALE_MOVIEPLAYER_ZAP,
|
||||||
LOCALE_MPKEY_AUDIO,
|
LOCALE_MPKEY_AUDIO,
|
||||||
LOCALE_MPKEY_BOOKMARK,
|
LOCALE_MPKEY_BOOKMARK,
|
||||||
LOCALE_MPKEY_FORWARD,
|
LOCALE_MPKEY_FORWARD,
|
||||||
|
@@ -292,7 +292,6 @@ const char * locale_real_names[] =
|
|||||||
"channellist.make_newlist",
|
"channellist.make_newlist",
|
||||||
"channellist.make_removedlist",
|
"channellist.make_removedlist",
|
||||||
"channellist.make_webtvlist",
|
"channellist.make_webtvlist",
|
||||||
"channellist.movieplayer_zap",
|
|
||||||
"channellist.new_zap_mode",
|
"channellist.new_zap_mode",
|
||||||
"channellist.new_zap_mode_active",
|
"channellist.new_zap_mode_active",
|
||||||
"channellist.new_zap_mode_allow",
|
"channellist.new_zap_mode_allow",
|
||||||
@@ -1924,6 +1923,7 @@ const char * locale_real_names[] =
|
|||||||
"movieplayer.toomanybookmarks",
|
"movieplayer.toomanybookmarks",
|
||||||
"movieplayer.tsplayback",
|
"movieplayer.tsplayback",
|
||||||
"movieplayer.ytplayback",
|
"movieplayer.ytplayback",
|
||||||
|
"movieplayer.zap",
|
||||||
"mpkey.audio",
|
"mpkey.audio",
|
||||||
"mpkey.bookmark",
|
"mpkey.bookmark",
|
||||||
"mpkey.forward",
|
"mpkey.forward",
|
||||||
|
Reference in New Issue
Block a user