homescreenapp/stateplugins/hsmenuworkerstateplugin/inc/hsuninstallitemstate.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 23 Jun 2010 18:03:36 +0300
changeset 60 30f14686fb04
parent 55 03646e8da489
child 63 52b0f64eeb51
child 77 4b195f3bea29
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description:
 *
 */

#ifndef HSUNINSTALLITEMSTATE_H
#define HSUNINSTALLITEMSTATE_H

#include <QState>

#include "hsmenustates_global.h"
HS_STATES_TEST_CLASS(MenuStatesTest)

class HbAction;
class HbMessageBox;
class HsShortcutService;
class HsMenuService;
class HbDialog;
class CaNotifier;

class HsUninstallItemState: public QState
{
    Q_OBJECT

    HS_STATES_TEST_FRIEND_CLASS(MenuStatesTest)

public:
    enum UninstallDialogType {
        UninstallDialogDefinition01 = 1,
        UninstallDialogDefinition02,
        UninstallDialogDefinition03,
        UninstallDialogDefinition04
    };

    HsUninstallItemState(QState *parent = 0);

    virtual ~HsUninstallItemState();

protected:

    void onEntry(QEvent *event);

private slots:

    void uninstallMessageFinished(HbAction* finishedAction);

    void cleanUp();

signals:

    void exit();

private:

    void construct();
    
    bool getApplicationsNames(QString &componentName,
        QStringList &applicationsNames,
        QString &confirmationMessage);
    
    void createUninstallMessage();
    void createUninstallJavaMessage();
    void subscribeForMemoryCardRemove();

private:

    int mItemId;
    
    CaNotifier *mNotifier;

    HbMessageBox *mUninstallMessage; // deletes itself automatically on close
    HbDialog *mUninstallJavaMessage;
    QObjectList mObjectList;
    UninstallDialogType mDialogType;

    HbAction *mConfirmAction; // child for mConfirmMessage

};

#endif //HSUNINSTALLITEMSTATE_H