videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/inc/videoservices.h
changeset 17 69946d1824c4
parent 15 cf5481c2bc0b
child 20 b9e04db066d4
--- 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: