videoplayback/videoplaybackview/tsrc/testcontrolscontroller/stub/src/videobaseplaybackview.cpp
changeset 44 518105d52e45
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Implementation of Video playback view
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 4 %
       
    19 
       
    20 
       
    21 
       
    22 //  Include Files
       
    23 #include <aknappui.h>
       
    24 #include <qgraphicssceneevent>
       
    25 #include <hbinstance.h>
       
    26 #include <mmf/common/mmferrors.h>
       
    27 
       
    28 #include "../inc/videobaseplaybackview.h"
       
    29 #include "mpxvideo_debug.h"
       
    30 
       
    31 
       
    32 //  Member Functions
       
    33 
       
    34 // -------------------------------------------------------------------------------------------------
       
    35 // VideoBasePlaybackView::VideoBasePlaybackView()
       
    36 // -------------------------------------------------------------------------------------------------
       
    37 //
       
    38 VideoBasePlaybackView::VideoBasePlaybackView()
       
    39     : mViewClosed( false )
       
    40 {
       
    41     MPX_DEBUG(_L("VideoBasePlaybackView::VideoBasePlaybackView()"));
       
    42 }
       
    43 
       
    44 // -------------------------------------------------------------------------------------------------
       
    45 //   VideoBasePlaybackView::~VideoBasePlaybackView()
       
    46 // -------------------------------------------------------------------------------------------------
       
    47 //
       
    48 VideoBasePlaybackView::~VideoBasePlaybackView()
       
    49 {
       
    50     MPX_DEBUG(_L("VideoBasePlaybackView::~VideoBasePlaybackView()"));
       
    51 }
       
    52 
       
    53 // -------------------------------------------------------------------------------------------------
       
    54 //   VideoBasePlaybackView::closePlaybackView()
       
    55 // -------------------------------------------------------------------------------------------------
       
    56 //
       
    57 void VideoBasePlaybackView::closePlaybackView()
       
    58 {
       
    59     MPX_DEBUG(_L("VideoBasePlaybackView::closePlaybackView()"));
       
    60     mViewClosed = true;    
       
    61 }
       
    62 
       
    63 // EOF