homescreenapp/widgetplugins/hsclockwidgetplugin/inc/hsanalogclockwidget.h
author hgs
Fri, 25 Jun 2010 19:19:22 +0300
changeset 62 341166945d65
parent 46 23b5d6a29cce
child 69 87476091b3f5
permissions -rw-r--r--
201025

/*
* 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:  Clock widget
*
*/

#ifndef HSANALOGCLOCKWIDGET_H
#define HSANALOGCLOCKWIDGET_H

#include <HbWidget>

#include <hstest_global.h>

HOMESCREEN_TEST_CLASS(TestClockWidget)

class HbIconItem;
class HbTouchArea;

class HsAnalogClockWidget : public HbWidget
{
    Q_OBJECT

public:
    explicit HsAnalogClockWidget(QGraphicsItem *parent = 0);
    ~HsAnalogClockWidget();

    bool eventFilter(QObject *watched, QEvent *event);
    QRectF boundingRect() const;
    QPainterPath shape() const;

signals:
    void clockTapped();

public slots:
    void tick();

protected:
    void resizeEvent(QGraphicsSceneResizeEvent *event);

private:
    Q_DISABLE_COPY(HsAnalogClockWidget)
    void createPrimitives();
    void updatePrimitives();
    void handleMouseReleaseEvent(QGraphicsSceneMouseEvent *event);

private:
    HbIconItem *mBackground;
    HbIconItem *mHourHand;
    HbIconItem *mMinuteHand;
    HbIconItem *mSecondHand;
    HbTouchArea *mTouchArea;

    HOMESCREEN_TEST_FRIEND_CLASS(TestClockWidget)
};

#endif