X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/1a3bd31e5cfcba89f2db03a2b4fa550de1fa2823..2d9f49283b5c45221f5cc81b5f95d744b24d6a09:/lib/nav/core.h diff --git a/lib/nav/core.h b/lib/nav/core.h index b71a0fd1..f1146b44 100644 --- a/lib/nav/core.h +++ b/lib/nav/core.h @@ -3,7 +3,6 @@ #include #include -#include #include class eNavigation: public iObject, public Object @@ -16,25 +15,22 @@ private: Signal2 m_event; ePtr m_service_event_conn; void serviceEvent(iPlayableService* service, int event); - - ePtr m_playlist; public: enum { evStopService, /** the "current" service was just stopped and likes to be deallocated (clear refs!) */ evNewService, /** a new "current" service was just started */ evPlayFailed, /** the next service (in playlist) or the one given in playService failed to play */ - evPlaylistDone, /** the last service in the playlist was just played */ evUpdatedEventInfo, /** the "currently running" event info was updated */ - evUpdatedInfo /** the program info of this service was updated */ + evUpdatedInfo, /** the program info of this service was updated */ + evSeekableStatusChanged, + evEnd }; RESULT playService(const eServiceReference &service); - RESULT enqueueService(const eServiceReference &service); RESULT connectEvent(const Slot2 &event, ePtr &connection); /* int connectServiceEvent(const Slot1 &event, ePtr &connection); */ RESULT getCurrentService(ePtr &service); - RESULT getPlaylist(ePtr &playlist); RESULT stopService(void); RESULT recordService(const eServiceReference &ref, ePtr &service);