videoplayback/hbvideoplaybackview/tsrc/testmpxvideoplaybackbuttonbar/inc/testmpxvideoplaybackbuttonbar.h
changeset 15 cf5481c2bc0b
child 17 69946d1824c4
equal deleted inserted replaced
2:dec420019252 15:cf5481c2bc0b
       
     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:   tester for methods in TestMPXVideoPlaybackButtonBar
       
    15 * 
       
    16 */
       
    17 
       
    18 // Version : %version:  1 %
       
    19 
       
    20 #ifndef __TESTMPXVIDEOPLAYBACKBUTTONBAR_H__
       
    21 #define __TESTMPXVIDEOPLAYBACKBUTTONBAR_H__
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <QtTest/QtTest>
       
    26 
       
    27 class QMPXVideoPlaybackButtonBar;
       
    28 class QMPXVideoPlaybackControlsController;
       
    29 
       
    30 class TestMPXVideoPlaybackButtonBar : public QObject
       
    31 {
       
    32     Q_OBJECT
       
    33 
       
    34 public:
       
    35 
       
    36     /**
       
    37      * will be called before each testfunction is executed.
       
    38      *
       
    39      */
       
    40     void init(); 
       
    41     
       
    42     /**
       
    43      * will be called after every testfunction.
       
    44      *
       
    45      */
       
    46     void cleanup();
       
    47 
       
    48     // test functions for the test framework         
       
    49 private slots:
       
    50 
       
    51     // the order in which these testXX methods are declared is important
       
    52     // changing this order will affect the test results
       
    53     void testPlay();
       
    54     void testStartFFSeeking();
       
    55     void testStartRWSeeking();
       
    56     void testEndSeeking();
       
    57     void testPause();
       
    58     void testChangeAspectRatio();
       
    59     void testUpdateState();
       
    60     void testAspectRatioChanged();
       
    61     void testHandleButtonPressed();
       
    62     void testUpdateWithFileDetails();
       
    63     void testOpenDetailsView();
       
    64 
       
    65 signals:
       
    66     void commandSignal(int);
       
    67 
       
    68 private:
       
    69     QMPXVideoPlaybackButtonBar*           mButtonBar;
       
    70     QMPXVideoPlaybackControlsController*  mController;
       
    71 };
       
    72 
       
    73 
       
    74 #endif  // __TESTMPXVIDEOPLAYBACKBUTTONBAR_H__
       
    75 
       
    76 // End of file
       
    77     
       
    78 
       
    79