X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8d0841a3c4d57ec102acc2a8ac09123b7ebdee27..ed53d193b68d38b38a1f3c428ddda92588cc9bdf:/lib/service/servicedvb.h diff --git a/lib/service/servicedvb.h b/lib/service/servicedvb.h index 29cff4d3..b2306e10 100644 --- a/lib/service/servicedvb.h +++ b/lib/service/servicedvb.h @@ -7,11 +7,17 @@ #include #include #include +#include #include +class eStaticServiceDVBInformation; +class eStaticServiceDVBBouquetInformation; + class eServiceFactoryDVB: public iServiceHandler { -DECLARE_REF(eServiceFactoryDVB); + DECLARE_REF(eServiceFactoryDVB); + ePtr m_StaticServiceDVBInfo; + ePtr m_StaticServiceDVBBouquetInfo; public: eServiceFactoryDVB(); virtual ~eServiceFactoryDVB(); @@ -41,7 +47,7 @@ public: RESULT startEdit(ePtr &); RESULT flushChanges(); - RESULT addService(eServiceReference &ref); + RESULT addService(eServiceReference &ref, eServiceReference before); RESULT removeService(eServiceReference &ref); RESULT moveService(eServiceReference &ref, int pos); RESULT setListName(const std::string &name); @@ -59,7 +65,7 @@ private: class eDVBServiceBase: public iFrontendInformation { protected: - eDVBServicePMTHandler m_service_handler; + eDVBServicePMTHandler m_service_handler ; public: // iFrontendInformation int getFrontendInfo(int w); @@ -73,7 +79,8 @@ class eDVBServicePlay: public eDVBServiceBase, public iSeekableService, public Object, public iServiceInformation, public iAudioTrackSelection, public iAudioChannelSelection, public iSubserviceList, public iTimeshiftService, - public iCueSheet, public iSubtitleOutput, public iAudioDelay + public iCueSheet, public iSubtitleOutput, public iAudioDelay, + public iRadioText { DECLARE_REF(eDVBServicePlay); public: @@ -95,7 +102,8 @@ public: RESULT timeshift(ePtr &ptr); RESULT cueSheet(ePtr &ptr); RESULT subtitle(ePtr &ptr); - RESULT audioDelay(ePtr &ptr); + RESULT audioDelay(ePtr &ptr); + RESULT radioText(ePtr &ptr); // iPauseableService RESULT pause(); @@ -127,6 +135,9 @@ public: int getCurrentChannel(); RESULT selectChannel(int i); + // iRadioText + std::string getRadioText(int i=0); + // iSubserviceList int getNumberOfSubservices(); RESULT getSubservice(eServiceReference &subservice, unsigned int n); @@ -161,6 +172,7 @@ private: ePtr m_decoder; int m_is_primary; + int m_have_video_pid; /* in timeshift mode, we essentially have two channels, and thus pmt handlers. */ eDVBServicePMTHandler m_service_handler_timeshift; @@ -231,11 +243,16 @@ private: ePtr m_new_subtitle_page_connection; ePtr m_teletext_parser; + ePtr m_radiotext_parser; eSubtitleWidget *m_subtitle_widget; eTimer m_subtitle_sync_timer; std::list m_subtitle_pages; void checkSubtitleTiming(); + + /* radiotext */ + ePtr m_radiotext_updated_connection; + void radioTextUpdated(); }; #endif