mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
- moviebrowser: add lcd4linux support
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -239,6 +239,16 @@ int CLCD4l::RemoveFile(const char *file)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int CLCD4l::CreateEventFile(std::string content, bool convert)
|
||||
{
|
||||
return CreateFile(EVENT, content, convert);
|
||||
}
|
||||
|
||||
int CLCD4l::RemoveEventFile()
|
||||
{
|
||||
return RemoveFile(EVENT);
|
||||
}
|
||||
|
||||
int CLCD4l::CreateMenuFile(std::string content, bool convert)
|
||||
{
|
||||
return CreateFile(MENU, content, convert);
|
||||
@@ -781,6 +791,11 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
|
||||
Logo = ICONSDIR "/" NEUTRINO_ICON_PLAY ICONSEXT;
|
||||
Service = g_Locale->getText(LOCALE_MAINMENU_AVINPUTMODE);
|
||||
}
|
||||
else if (parseID == NeutrinoModes::mode_moviebrowser)
|
||||
{
|
||||
Logo = ICONSDIR "/" NEUTRINO_ICON_MOVIEPLAYER ICONSEXT;
|
||||
Service = g_Locale->getText(LOCALE_MOVIEBROWSER_HEAD);
|
||||
}
|
||||
else if (parseID == NeutrinoModes::mode_ts)
|
||||
{
|
||||
if (ModeTshift)
|
||||
@@ -1076,6 +1091,10 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
|
||||
// TODO: Event = Bildname
|
||||
}
|
||||
#endif
|
||||
else if (parseID == NeutrinoModes::mode_moviebrowser)
|
||||
{
|
||||
// do nothing; Event is processed in moviebrowser
|
||||
}
|
||||
else if (parseID == NeutrinoModes::mode_ts)
|
||||
{
|
||||
if (CMoviePlayerGui::getInstance().p_movie_info)
|
||||
|
Reference in New Issue
Block a user