videoplayback/videohelix/inc/mpxvideoposterframesetter.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 25 May 2010 12:44:54 +0300
branchRCL_3
changeset 15 8f0df5c82986
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2008 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:   Poster Frame Setter
 *
*/

// Version : %version:  ou1cpsw#2 %



#ifndef _MPXVIDEOPOSTERFRAMESETTER_H
#define _MPXVIDEOPOSTERFRAMESETTER_H

//  INCLUDES
#include <e32base.h>
#include <thumbnailmanager.h>
#include <thumbnailobjectsource.h>
#include <thumbnailmanagerobserver.h>


// FORWARD DECLARATIONS
class CMPXVideoPlaybackController;
class CThumbnailManager;

// CLASS DECLARATION
NONSHARABLE_CLASS(CMPXVideoPosterFrameSetter) : public CBase,
                                                public MThumbnailManagerObserver
{
    public:  // Constructors and destructor
        
        /**
        * Two-phased constructor.
        */
        static CMPXVideoPosterFrameSetter* NewL( CMPXVideoPlaybackController* aVideoPlaybackCtlr );
        
        /**
        * Destructor.
        */
        virtual ~CMPXVideoPosterFrameSetter();

    public: 
        
        void RequestPosterFrame();
        
        void HandlePosterFrameReady(TInt aError);
        
        // from MThumbnailManagerObserver
        void ThumbnailPreviewReady( MThumbnailData& aThumbnail,
                                    TThumbnailRequestId aId );
        
        // from MThumbnailManagerObserver
        void ThumbnailReady( TInt aError, 
                             MThumbnailData& aThumbnail,
                             TThumbnailRequestId aId );

        
    private:

        /**
        * C++ default constructor.
        */
        CMPXVideoPosterFrameSetter( CMPXVideoPlaybackController* aVideoPlaybackCtlr );

        /**
        * By default Symbian 2nd phase constructor is private.
        */
        void ConstructL();        

    private:    // Data        

        CMPXVideoPlaybackController*    iVideoPlaybackCtlr;
        TThumbnailRequestId             iRequestId;
        CThumbnailManager*              iTNManager;
};

#endif      // _MPXVIDEOPOSTERFRAMESETTER_H
            
// End of File