diff -r cf5481c2bc0b -r 69946d1824c4 videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/inc/videoservices.h --- a/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/inc/videoservices.h Fri Apr 16 14:59:52 2010 +0300 +++ b/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/inc/videoservices.h Mon May 03 12:32:50 2010 +0300 @@ -11,10 +11,12 @@ * * Contributors: * -* Description: ?Description +* Description: Declaration of VideoServices Stub * */ +// Version : %version: % + #ifndef __VIDEOSERVICES_H__ #define __VIDEOSERVICES_H__ @@ -24,6 +26,7 @@ //FORWARD CLASS DECLARATION class VideoServiceUriFetch; class VideoServicePlay; +class VideoServiceView; class QVideoPlayerEngine; class VideoServices : public QObject @@ -51,7 +54,8 @@ { ENoService, EUriFetcher, - EPlayback + EPlayback, + EView }; /** @@ -83,6 +87,9 @@ Q_DISABLE_COPY(VideoServices) +signals: + void activated( int command ); + private: /** @@ -93,12 +100,16 @@ VideoServiceUriFetch* mServiceUriFetch; VideoServicePlay* mServicePlay; + + VideoServiceView* mServiceView; VideoServices::TVideoService mCurrentService; friend class VideoServiceUriFetch; friend class VideoServicePlay; + + friend class VideoServiceView; public: