homescreenapp/widgetplugins/hsclockwidgetplugin/inc/hsclockwidgettype_symbian.h
changeset 46 23b5d6a29cce
parent 39 4e8ebe173323
child 48 11a8fa9275d5
child 51 4785f57bf3d4
--- a/homescreenapp/widgetplugins/hsclockwidgetplugin/inc/hsclockwidgettype_symbian.h	Mon May 03 12:24:59 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,63 +0,0 @@
-/*
-* Copyright (c) 2008 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 HSCLOCKWIDGETTYPE_H
-#define HSCLOCKWIDGETTYPE_H
-
-#include <QObject>
-#include <QString>
-#include <hstest_global.h>
-
-HOMESCREEN_TEST_CLASS(TestClockWidget)
-
-class CEnvironmentChangeNotifier;
-class HsClockWidgetType : public QObject
-{
-    Q_OBJECT
-    
-public:
-
-    HsClockWidgetType(QObject *parent = 0);
-    ~HsClockWidgetType();
-
-    QString type() const;
-    
-    static TInt EnvironmentChanged( TAny* aObj );
-    
-signals:
-    void typeChanged(QString type);
-        
-private: 
-    void createObserver();
-    QString localeTypeString()const;
-    
-private slots:
-    void onTypeChanged();
-
-
-private:
-    CEnvironmentChangeNotifier *mDateTimeNotifier;
-    
-    QString mClockType;
-
-    Q_DISABLE_COPY(HsClockWidgetType)
-
-    HOMESCREEN_TEST_FRIEND_CLASS(TestClockWidget)
-
-};
-
-#endif