appinstaller/AppinstUi/sifuiinstallindicatorplugin/tsrc/testindiapp/testindiapp.h
changeset 25 98b66e4fb0be
child 33 8110bf1194d1
equal deleted inserted replaced
24:84a16765cd86 25:98b66e4fb0be
       
     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:  Test applicaiton for SW install indicator plugin
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TESTINDICAPPLICATION_H
       
    19 #define TESTINDICAPPLICATION_H
       
    20 
       
    21 #include <hbapplication.h>
       
    22 
       
    23 class HbMainWindow;
       
    24 class HbView;
       
    25 class HbIndicator;
       
    26 
       
    27 
       
    28 class TestInstallIndicator : public HbApplication
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32 public:     // constructor and destructor
       
    33     TestInstallIndicator(int& argc, char* argv[]);
       
    34     ~TestInstallIndicator();
       
    35 
       
    36 private slots:  // new functions
       
    37     void activateStateChanged(int state);
       
    38 
       
    39 private:    // data
       
    40     HbMainWindow *mMainWindow;
       
    41     HbView       *mMainView;
       
    42     HbIndicator  *mIndicator;
       
    43 };
       
    44 
       
    45 #endif  // TESTINDICAPPLICATION_H
       
    46