videoplayerapp/videoplayer/inc/videoplayerapp.h
changeset 62 0e1e938beb1a
equal deleted inserted replaced
59:a76e86df7ccd 62:0e1e938beb1a
       
     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:  Implementation of VideoPlayerApp
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 1 %
       
    19 
       
    20 #ifndef VIDEOPLAYERAPP_H
       
    21 #define VIDEOPLAYERAPP_H
       
    22 
       
    23 #include <hbapplication.h>
       
    24 
       
    25 /**
       
    26  *  VideoPlayerApp
       
    27  * 
       
    28  */
       
    29 class VideoPlayerApp : public HbApplication
       
    30 {
       
    31     Q_OBJECT
       
    32 
       
    33     public:
       
    34         /**
       
    35          * Constructor
       
    36          */
       
    37         VideoPlayerApp(int &argc,
       
    38                        char *argv[],
       
    39                        Hb::ApplicationFlags flags = Hb::DefaultApplicationFlags);
       
    40 
       
    41         /**
       
    42         * Destructor.
       
    43         */
       
    44         ~VideoPlayerApp();
       
    45     
       
    46     signals:
       
    47         
       
    48         /**
       
    49          * Emitted when application view has been drawn.
       
    50          */
       
    51         void applicationReady();
       
    52     
       
    53     public slots:
       
    54         
       
    55         /**
       
    56          * Should be connected to HbMainWindow's viewReady signal, so that
       
    57          * applicationReady signal is emitted at correct time.
       
    58          */
       
    59         void viewReadySlot();
       
    60 };
       
    61 
       
    62 #endif // VIDEOPLAYERAPP_H
       
    63 
       
    64 // EOF