homescreenapp/stateplugins/hsapplibrarystateplugin/inc/hsallcollectionsstate.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 15:43:04 +0300
changeset 46 23b5d6a29cce
parent 39 4e8ebe173323
child 51 4785f57bf3d4
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
 * 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: Menu All Collections state.
 *
 */

#ifndef HSALLCOLLECTIONSSTATE_H
#define HSALLCOLLECTIONSSTATE_H

#include <qstate.h>
#include <QModelIndex>
#include <QPointF>
#include <QPointer>

#include "hsmenustates_global.h"
#include "hsmenumodewrapper.h"
#include "hsmenuservice.h"
#include "hsmenuview.h"

HS_STATES_TEST_CLASS(MenuStatesTest)

class HbMenu;
class HsMenuViewBuilder;
class HbAbstractViewItem;
class HbAction;
class HbMainWindow;
class HsMenuItemModel;
class HsMenuView;

class HsAllCollectionsState: public QState
{
    Q_OBJECT
    HS_STATES_TEST_FRIEND_CLASS(MenuStatesTest)
public:
    HsAllCollectionsState(HsMenuViewBuilder &menuViewBuilder,
                          HsMenuModeWrapper &menuMode,
                          QState *parent = 0);
    ~HsAllCollectionsState();
protected:
signals:
    void sortOrderChanged(HsSortAttribute sortAttribute);
    void toAppLibraryState();

public slots:
    void scrollToBeginning();
private slots:
    bool openTaskSwitcher();
    void listItemActivated(const QModelIndex &index);
    void addActivated(const QModelIndex &index);
    void listItemLongPressed(HbAbstractViewItem *item, const QPointF &coords);
    void addLongPressed(HbAbstractViewItem *item, const QPointF &coords);
    void createNewCollection();
    void createArrangeCollection();
    void customMenuAction();
    void ascendingMenuAction();
    void descendingMenuAction();
    void stateEntered();
    void addModeEntered();
    void normalModeEntered();
    void normalModeExited();
    void stateExited();
	void contextMenuAction(HbAction *action);
private:
    void construct();
    void setMenuOptions();
private:
    HbAction *mSecondarySoftkeyAction;
    HsSortAttribute mSortAttribute;
    HsMenuView mMenuView;
    HsMenuModeWrapper &mMenuMode;
    HsMenuItemModel *mAllCollectionsModel;
	QModelIndex mContextModelIndex;
	QPointer<HbMenu> mContextMenu;
};

#endif // HSALLCOLLECTIONSSTATE_H