add CMoviePlayer
[enigma2.git] / lib / nav / pcore.h
1 #ifndef __lib_nav_pcore_h
2 #define __lib_nav_pcore_h
3
4 #include <lib/nav/core.h>
5 #include <lib/python/connections.h>
6
7 /* a subset of eNavigation */
8
9 class pNavigation: public iObject, public Object
10 {
11 DECLARE_REF(pNavigation);
12 public:
13         PSignal1<void, int> m_event;
14         
15         enum
16         {
17                 evStopService,  /** the "current" service was just stopped and likes to be deallocated (clear refs!) */
18                 evNewService,   /** a new "current" service was just started */
19                 evPlayFailed,   /** the next service (in playlist) or the one given in playService failed to play */
20                 evPlaylistDone, /** the last service in the playlist was just played */
21                 evUpdatedEventInfo /** the "currently running" event info was updated */
22         };
23         
24         pNavigation();
25         
26         RESULT playService(const eServiceReference &service);
27         SWIG_VOID(RESULT) recordService(const eServiceReference &ref, ePtr<iRecordableService> &SWIG_OUTPUT);
28         
29         RESULT enqueueService(const eServiceReference &service);
30         SWIG_VOID(RESULT) getCurrentService(ePtr<iPlayableService> &SWIG_OUTPUT);
31         SWIG_VOID(RESULT) getPlaylist(ePtr<ePlaylist> &SWIG_OUTPUT);
32         RESULT stopService();
33         
34         RESULT pause(int p);
35 private:
36         ePtr<eNavigation> m_core;
37         ePtr<eConnection> m_nav_event_connection;
38         void navEvent(eNavigation *nav, int event);
39 };
40
41 #endif