X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0e65f17c7564ec8ea11477a9baa5e6ef82fc94f8..b5682256605acc192f4dddea11b0595344348bcb:/lib/nav/pcore.cpp diff --git a/lib/nav/pcore.cpp b/lib/nav/pcore.cpp index fdcb385e..a6ed35f6 100644 --- a/lib/nav/pcore.cpp +++ b/lib/nav/pcore.cpp @@ -14,6 +14,7 @@ pNavigation::pNavigation() m_core = new eNavigation(service_center); m_core->connectEvent(slot(*this, &pNavigation::navEvent), m_nav_event_connection); + m_core->connectRecordEvent(slot(*this, &pNavigation::navRecordEvent), m_nav_record_event_connection); } RESULT pNavigation::playService(const eServiceReference &service) @@ -21,11 +22,6 @@ RESULT pNavigation::playService(const eServiceReference &service) return m_core->playService(service); } -RESULT pNavigation::recordService(const eServiceReference &ref, ePtr &service) -{ - return m_core->recordService(ref, service); -} - RESULT pNavigation::getCurrentService(ePtr &service) { return m_core->getCurrentService(service); @@ -41,8 +37,29 @@ RESULT pNavigation::stopService() return m_core->stopService(); } -void pNavigation::navEvent(eNavigation *nav, int event) +RESULT pNavigation::recordService(const eServiceReference &ref, ePtr &service) +{ + return m_core->recordService(ref, service); +} + +RESULT pNavigation::stopRecordService(ePtr &service) +{ + return m_core->stopRecordService(service); +} + +PyObject *pNavigation::getRecordings(void) +{ + return m_core->getRecordings(); +} + +void pNavigation::navEvent(int event) { /* just relay the events here. */ m_event(event); } + +void pNavigation::navRecordEvent(ePtr service, int event) +{ + /* just relay the events here. */ + m_record_event(service, event); +}