videoplayback/hbvideoplaybackview/tsrc/testmpxvideoplaybackdocumentloader/stub/inc/mpxvideoplaybackprogressbar.h
branchGCC_SURGE
changeset 48 ebbeb6bcda56
parent 27 7bf7319dbddd
parent 47 45e72b57a2fd
equal deleted inserted replaced
27:7bf7319dbddd 48:ebbeb6bcda56
     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 QMPXVideoPlaybackProgressBar
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  1 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef MPXVIDEOPLAYBACKPROGRESSBAR_H_
       
    23 #define MPXVIDEOPLAYBACKPROGRESSBAR_H_
       
    24 
       
    25 #include <qobject>
       
    26 
       
    27 class QMPXVideoPlaybackControlsController;
       
    28 
       
    29 class QMPXVideoPlaybackProgressBar : public QObject
       
    30 {
       
    31     Q_OBJECT
       
    32 
       
    33     public:
       
    34         QMPXVideoPlaybackProgressBar( QMPXVideoPlaybackControlsController* controller );
       
    35         virtual ~QMPXVideoPlaybackProgressBar();
       
    36 
       
    37     public:
       
    38         QMPXVideoPlaybackControlsController *mController;
       
    39 };
       
    40 
       
    41 #endif /*MPXVIDEOPLAYBACKPROGRESSBAR_H_*/
       
    42