videoplayback/hbvideoplaybackview/tsrc/testmpxvideoviewwrapper/stub/inc/mpxplaybackutility.h
changeset 52 e3cecb93e76a
parent 47 45e72b57a2fd
child 59 a76e86df7ccd
--- a/videoplayback/hbvideoplaybackview/tsrc/testmpxvideoviewwrapper/stub/inc/mpxplaybackutility.h	Tue Jul 06 14:17:50 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,111 +0,0 @@
-/*
-* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  Implementation of interface for playbackutility
-*
-*/
-
-// Version : %version:  2 %
-
-#ifndef CMPXPLAYBACKUTILITY_H
-#define CMPXPLAYBACKUTILITY_H
-
-#include <e32base.h>
-#include <mpxcommand.h>
-#include <mpxattributespecs.h>
-#include <mpxplaybackcommanddefs.h>
-#include <mpxplaybackframeworkdefs.h>
-
-class TMPXAttribute;
-class MMPXPlaybackObserver;
-class CMPXCollectionPlaylist;
-class MMPXPlaybackCallback;
-class CMPXPlaybackUtility;
-
-class MMPXSource
-{
-    public:
-        virtual CMPXCollectionPlaylist* PlaylistL() = 0;
-
-        virtual void MediaL( const TArray<TMPXAttribute>& aAttrs,
-                             MMPXPlaybackCallback& aCallback,
-                             CMPXAttributeSpecs* aSpecs ) = 0;
-
-};
-
-class MMPXPlaybackUtility : public CBase
-{
-    public:
-        static MMPXPlaybackUtility* UtilityL( const TMPXCategory aCategory,
-                                              const TUid& aModeId = KPbModeDefault );
-
-        virtual TMPXPlaybackState StateL() const = 0;
-        virtual void AddObserverL( MMPXPlaybackObserver& aObs ) = 0;
-        virtual void CommandL( CMPXCommand& aCmd, MMPXPlaybackCallback* aCallback=NULL ) = 0;
-        virtual void CommandL( TMPXPlaybackCommand aCmd ) = 0;
-        virtual MMPXSource* Source() = 0;
-        virtual void PropertyL( MMPXPlaybackCallback& aCallback, TMPXPlaybackProperty aProperty ) = 0;
-        virtual void RemoveObserverL( MMPXPlaybackObserver& aObs ) = 0;
-        virtual void Close() = 0;
-        virtual void SetPrimaryClientL() = 0;
-        virtual void SetL( TMPXPlaybackProperty aProperty,TInt aValue ) = 0;
-
-    public:
-        TMPXPlaybackState iState;
-        TMPXPlaybackProperty iProperty;
-        TInt iPropertyValue;
-        TInt iCommand;
-};
-
-class CMPXPlaybackUtility : public MMPXPlaybackUtility,
-                            public MMPXSource
-{
-    public:
-
-        static CMPXPlaybackUtility* NewL();							
-
-        ~CMPXPlaybackUtility();
-
-    private:
-
-        CMPXPlaybackUtility();
-
-        void ConstructL();
-
-        void AddObserverL( MMPXPlaybackObserver& aObs );
-
-        void RemoveObserverL( MMPXPlaybackObserver& aObs );
-
-        void Close();
-
-        void CommandL( CMPXCommand& aCmd, MMPXPlaybackCallback* aCallback );
-        void CommandL( TMPXPlaybackCommand aCmd );
-
-        TMPXPlaybackState StateL() const;
-
-        MMPXSource* Source();
-
-        void SetL( TMPXPlaybackProperty aProperty,TInt aValue );
-
-        void PropertyL( MMPXPlaybackCallback& aCallback, TMPXPlaybackProperty aProperty );
-
-        CMPXCollectionPlaylist* PlaylistL();
-
-        void MediaL( const TArray<TMPXAttribute>& aAttrs,
-                     MMPXPlaybackCallback& aCallback,
-                     CMPXAttributeSpecs* aSpecs );
-
-        void SetPrimaryClientL();
-};
-
-#endif // CMPXPLAYBACKUTILITY_H