clock/clockui/clockwidget/inc/digitalclock.h
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 46 ecd7b9840282
--- a/clock/clockui/clockwidget/inc/digitalclock.h	Mon May 03 12:30:32 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,67 +0,0 @@
-/*
-* 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: 
-*
-*/
-
-// digitalclock.h
-
-#ifndef DIGITALCLOCK_H
-#define DIGITALCLOCK_H
-
-#include <QObject>
-
-#include <hbwidget.h>
-#include <hbeffect.h>
-
-class QGraphicsLinearLayout;
-class QGraphicsWidget;
-class HbIconItem;
-class HbLabel;
-
-class DigitalClock : public HbWidget
-{
-    Q_OBJECT
-
-public:
-    DigitalClock(QGraphicsWidget *parent = 0);
-    ~DigitalClock();
-
-public:
-    void updateDisplay();
-
-public slots:
-	void fadeBackIn(const HbEffect::EffectStatus &status);
-
-private:
-    void constructImages();
-
-private:
-    QGraphicsLinearLayout *mDigitalClockLayout;
-    QGraphicsLinearLayout *mWidgetLayout;
-    QGraphicsWidget *mDummyWidget;
-
-    HbIconItem *mPositionOne;
-    HbIconItem *mPositionTwo;
-    HbIconItem *mPositionThree;
-    HbIconItem *mPositionFour;
-    HbIconItem *mSeperator;
-    HbLabel *mAmPmLabel;
-
-    bool m24HourFormat;
-};
-
-#endif // DIGITALCLOCK_H
-
-// End of file