mpviewplugins/mpplaybackviewplugin/tsrc/unittest_mpmpxpbframeworkwrapper/stub/inc/mpxplaybackutility.h
changeset 43 0f32e550d9d8
parent 38 b93f525c9244
child 45 612c4815aebe
equal deleted inserted replaced
38:b93f525c9244 43:0f32e550d9d8
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: mpxplaybackutility stub for testing mpmpxframeworkwrapper
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MMPXPLAYBACKUTILITY_H
       
    20 #define MMPXPLAYBACKUTILITY_H
       
    21 
       
    22 #include <mpxplaybackframeworkdefs.h>
       
    23 #include <mpxcommonframeworkdefs.h>
       
    24 #include <badesca.h>
       
    25 #include <mpxattribute.h>
       
    26 #include <mpxattributespecs.h>
       
    27 
       
    28 //Forward declarations
       
    29 class CMPXCollectionPlaylist;
       
    30 class MMPXPlaybackObserver;  
       
    31 class MMPXPlaybackCallback;
       
    32 
       
    33 class MMPXSource
       
    34 {
       
    35 public:
       
    36     //MMPXSource interface for playback utility stub
       
    37     virtual CMPXCollectionPlaylist* PlaylistL()=0;
       
    38     virtual void MediaL(const TArray<TMPXAttribute>& aAttrs,
       
    39                     MMPXPlaybackCallback& aCallback)=0;
       
    40 
       
    41  
       
    42 };
       
    43 
       
    44 class MMPXPlaybackUtility: public MMPXSource
       
    45 {
       
    46 public:
       
    47 
       
    48     // Stub functions
       
    49     MMPXPlaybackUtility();
       
    50     ~MMPXPlaybackUtility();
       
    51     static MMPXPlaybackUtility* UtilityL(const TUid& aModeId = KPbModeDefault);
       
    52     void AddObserverL(MMPXPlaybackObserver& aObs);
       
    53     void RemoveObserverL(MMPXPlaybackObserver& aObs);
       
    54     void Close();
       
    55     void CommandL(TMPXPlaybackCommand aCmd,TInt aData=0);
       
    56     void CommandL(CMPXCommand& aCmd, MMPXPlaybackCallback* aCallback=NULL);
       
    57     MMPXSource* Source();
       
    58      void SetL(TMPXPlaybackProperty aProperty, TInt aValue);
       
    59     TMPXPlaybackState StateL() const;
       
    60     // Stub function from MMPXSource
       
    61     CMPXCollectionPlaylist* PlaylistL();
       
    62     void MediaL(const TArray<TMPXAttribute>& aAttrs,
       
    63                     MMPXPlaybackCallback& aCallback);
       
    64     
       
    65 
       
    66 public:
       
    67 
       
    68     TInt                    iValue;
       
    69     TMPXPlaybackProperty    iProperty;
       
    70     MMPXPlaybackObserver*   iObs;
       
    71     TMPXPlaybackCommand     iCmd;
       
    72     CMPXCommand*            iCMPXCmd;
       
    73     TMPXPlaybackState       iState;
       
    74     RArray<TMPXAttribute>*   iAttrs;
       
    75 };
       
    76 
       
    77 #endif      // MMPXPLAYBACKUTILITY_H
       
    78