4 #include <lib/base/object.h>
5 #include <lib/service/iservice.h>
6 #include <connection.h>
10 class eNavigation: public iObject, public Object
12 DECLARE_REF(eNavigation);
13 ePtr<iServiceHandler> m_servicehandler;
15 ePtr<iPlayableService> m_runningService;
16 Signal1<void,int> m_event;
17 ePtr<eConnection> m_service_event_conn;
18 void serviceEvent(iPlayableService* service, int event);
20 std::map<ePtr<iRecordableService>, ePtr<eConnection>, std::less<iRecordableService*> > m_recordings;
21 std::set<ePtr<iRecordableService>, std::less<iRecordableService*> > m_simulate_recordings;
23 Signal2<void,ePtr<iRecordableService>,int> m_record_event;
24 void recordEvent(iRecordableService* service, int event);
27 RESULT playService(const eServiceReference &service);
28 RESULT connectEvent(const Slot1<void,int> &event, ePtr<eConnection> &connection);
29 RESULT connectRecordEvent(const Slot2<void,ePtr<iRecordableService>,int> &event, ePtr<eConnection> &connection);
30 /* int connectServiceEvent(const Slot1<void,iPlayableService*,int> &event, ePtr<eConnection> &connection); */
31 RESULT getCurrentService(ePtr<iPlayableService> &service);
32 RESULT stopService(void);
34 RESULT recordService(const eServiceReference &ref, ePtr<iRecordableService> &service, bool simulate=false);
35 RESULT stopRecordService(ePtr<iRecordableService> &service);
36 PyObject *getRecordings(bool simulate=false);
39 eNavigation(iServiceHandler *serviceHandler);
40 virtual ~eNavigation();