X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/47367fb1c159557cb3676f67172b9839531c8dc9..92929c357751afc31f7f1acbe3e724bdf307cf23:/lib/service/iservice.h diff --git a/lib/service/iservice.h b/lib/service/iservice.h index 896996b9..7448a5e0 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -303,6 +303,11 @@ public: sTransponderData, /* transponderdata as python dict */ + sCurrentChapter, + sCurrentTitle, + sTotalChapters, + sTotalTitles, + sUser = 0x100 }; enum { @@ -420,6 +425,8 @@ public: audio will be switched off, sync will be disabled etc. */ virtual RESULT setTrickmode(int trick=0)=0; virtual RESULT isCurrentlySeekable()=0; + virtual RESULT seekChapter(int) { return -1; } + virtual RESULT seekTitle(int) { return -1; } }; SWIG_TEMPLATE_TYPEDEF(ePtr, iSeekableServicePtr); @@ -728,6 +735,7 @@ public: evStart, evEnd, + evTunedIn, evTuneFailed, /* when iServiceInformation is implemented:*/ @@ -752,6 +760,8 @@ public: evUpdatedRassInteractivePicMask, evVideoSizeChanged, + evVideoFramerateChanged, + evVideoProgressiveChanged, evStopped,