homescreenapp/stateplugins/hshomescreenstateplugin/inc/hsrootstate.h
changeset 51 4785f57bf3d4
equal deleted inserted replaced
46:23b5d6a29cce 51:4785f57bf3d4
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef HSROOTSTATE_H
       
    19 #define HSROOTSTATE_H
       
    20 
       
    21 #include <QState>
       
    22 #include "hstest_global.h"
       
    23 HOMESCREEN_TEST_CLASS(HomeScreenStatePluginTest)
       
    24 
       
    25 
       
    26 class HsRootState : public QState
       
    27 {
       
    28     Q_OBJECT
       
    29 
       
    30 public:
       
    31     HsRootState(QState *parent = 0);
       
    32     ~HsRootState();
       
    33 
       
    34 signals:    
       
    35     void event_backupRestore();
       
    36 
       
    37 private slots:    
       
    38     void action_startListenBURStatus();
       
    39     void action_stopListenBURStatus();
       
    40 
       
    41 private:
       
    42     Q_DISABLE_COPY(HsRootState)
       
    43 
       
    44 private:	
       
    45     HOMESCREEN_TEST_FRIEND_CLASS(HomeScreenStatePluginTest)
       
    46 };
       
    47 
       
    48 #endif // HSROOTSTATE_H