taskswitcherapp/tsdevicedialogplugin/inc/tstasksgriditem.h
author William Roberts <williamr@symbian.org>
Fri, 11 Jun 2010 16:23:43 +0100
branchGCC_SURGE
changeset 53 f75922b9e380
parent 39 4e8ebe173323
child 60 30f14686fb04
permissions -rw-r--r--
Branch for GCC_SURGE fixes

/*
* 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 TSTASKSGRIDITEM_H
#define TSTASKSGRIDITEM_H

#include <hbabstractviewitem.h>

class HbLabel;
class HbPushButton;

class TsTasksGridItem : public HbAbstractViewItem
{
    Q_OBJECT

public:
    TsTasksGridItem();
    TsTasksGridItem(const TsTasksGridItem &item);
    ~TsTasksGridItem();

    HbAbstractViewItem *createItem();
    void updateChildItems();

private slots:
    void handleDeleteClicked();

signals:
    void deleteClicked(const QModelIndex &index);

private:
    HbLabel *mScreenshotLabel;
    HbLabel *mApplicationNameLabel;
    HbPushButton *mDeleteButton;

};

#endif //TSTASKSGRIDITEM_H