ganeswidgets/inc/hgcenteritemarea.h
branchGCC_SURGE
changeset 10 c348b9772569
parent 8 15f034b8a3b5
equal deleted inserted replaced
4:463f1934e292 10:c348b9772569
       
     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 HGCENTERICONAREA_H
       
    19 #define HGCENTERICONAREA_H
       
    20 
       
    21 #include <HbWidget>
       
    22 
       
    23 class HgCenterItemArea: public HbWidget
       
    24 {
       
    25     Q_OBJECT
       
    26     Q_DISABLE_COPY(HgCenterItemArea)
       
    27 
       
    28 public:
       
    29     explicit HgCenterItemArea(QGraphicsItem* parent = 0);
       
    30     virtual ~HgCenterItemArea();
       
    31 
       
    32 signals:
       
    33     void geometryChanged();
       
    34 
       
    35 private:
       
    36     void resizeEvent(QGraphicsSceneResizeEvent *event);
       
    37     void moveEvent(QGraphicsSceneMoveEvent *event);
       
    38     
       
    39 private: // Data
       
    40 
       
    41 };
       
    42 
       
    43 #endif