homescreenapp/stateplugins/hsmenuworkerstateplugin/inc/hsinstallationlogstate.h
changeset 63 52b0f64eeb51
child 90 3ac3aaebaee5
equal deleted inserted replaced
62:341166945d65 63:52b0f64eeb51
       
     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:
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef HSINSTALLATIONLOGSTATE_H
       
    19 #define HSINSTALLATIONLOGSTATE_H
       
    20 
       
    21 #include <QState>
       
    22 
       
    23 #include "hsmenustates_global.h"
       
    24 HS_STATES_TEST_CLASS(MenuStatesTest)
       
    25 
       
    26 class HbDialog;
       
    27 
       
    28 class HsInstallationLogState: public QState
       
    29 {
       
    30     Q_OBJECT
       
    31 
       
    32     HS_STATES_TEST_FRIEND_CLASS(MenuStatesTest)
       
    33 
       
    34 public:
       
    35 
       
    36     HsInstallationLogState(QState *parent = 0);
       
    37 
       
    38     virtual ~HsInstallationLogState();
       
    39 
       
    40 protected:
       
    41 
       
    42     void onEntry(QEvent *event);
       
    43     void onExit(QEvent *event);
       
    44 
       
    45 private slots:
       
    46 
       
    47     void stateExited();
       
    48     void cleanUp();
       
    49 
       
    50 signals:
       
    51 
       
    52     void exit();
       
    53 
       
    54 private:
       
    55 
       
    56     void construct();
       
    57     void createInstallationLogDialog();
       
    58 
       
    59 private:
       
    60     
       
    61     HbDialog* mInstalationLogDialog;
       
    62 
       
    63 };
       
    64 
       
    65 #endif //HSINSTALLATIONLOGSTATE_H