diff options
| author | Christian <zerov83@gmail.com> | 2016-03-28 20:41:54 +0200 |
|---|---|---|
| committer | Christian <zerov83@gmail.com> | 2016-03-28 20:41:54 +0200 |
| commit | bd3d480a94558344f0a55707bc59b181fc7ea943 (patch) | |
| tree | d54aaa531c747df28950e0db542f9d9cb26874e0 /displayReplaySD.cpp | |
| parent | 495f828b507611fafa49997adf7f2bda815cdcb8 (diff) | |
| download | vdr-plugin-plex-bd3d480a94558344f0a55707bc59b181fc7ea943.tar.gz vdr-plugin-plex-bd3d480a94558344f0a55707bc59b181fc7ea943.tar.bz2 | |
paralleling cPictureCache.
Multiple server connections now possible
Diffstat (limited to 'displayReplaySD.cpp')
| -rw-r--r-- | displayReplaySD.cpp | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/displayReplaySD.cpp b/displayReplaySD.cpp index 11c99e8..87ac511 100644 --- a/displayReplaySD.cpp +++ b/displayReplaySD.cpp @@ -1,10 +1,43 @@ #include "displayReplaySD.h" -cDisplayReplaySD::cDisplayReplaySD(plexclient::Video* video) +cDisplayReplaySD::cDisplayReplaySD(plexclient::Video* video) : cSkindesignerOsdObject(GetPluginStruct()) { + } cDisplayReplaySD::~cDisplayReplaySD() { } +skindesignerapi::cPluginStructure* cDisplayReplaySD::m_pPlugStructReplay = NULL; + +skindesignerapi::cPluginStructure* cDisplayReplaySD::GetPluginStruct() +{ + if(m_pPlugStructReplay == NULL) { + m_pPlugStructReplay = new skindesignerapi::cPluginStructure(); + m_pPlugStructReplay->name = "plexreplay"; + m_pPlugStructReplay->libskindesignerAPIVersion = LIBSKINDESIGNERAPIVERSION; + m_pPlugStructReplay->RegisterRootView("root.xml"); + } + return m_pPlugStructReplay; +} + +void cDisplayReplaySD::Show(void) +{ +} + +eOSState cDisplayReplaySD::ProcessKey(eKeys Key) +{ + return eOSState::osContinue; +} +void cDisplayReplaySD::Flush() +{ +} + +void cDisplayReplaySD::SetCurrent(const char* Current) +{ +} + +void cDisplayReplaySD::SetMode(bool Play, bool Forward, int Speed) +{ +} |
