Removed some obsolete files
authorHeli Hyvättinen <heli.hyvattinen@kymp.net>
Sat, 13 Aug 2011 08:13:27 +0000 (11:13 +0300)
committerHeli Hyvättinen <heli.hyvattinen@kymp.net>
Sat, 13 Aug 2011 08:13:27 +0000 (11:13 +0300)
chessclock.pro
classes/clockswidgetplugin.cpp [deleted file]
classes/clockswidgetplugin.h [deleted file]
qml/ClocksWidgetWrapper.qml [deleted file]

index 2b6e577..6906150 100644 (file)
@@ -43,8 +43,7 @@ SOURCES += main.cpp \
     classes/timecontrol/hourglassclock.cpp \
     classes/timecontrol/hourglasstimecontrol.cpp \
     classes/screenlitkeeper.cpp \
-    classes/wrappedclockswidget.cpp \
-    classes/clockswidgetplugin.cpp
+    classes/wrappedclockswidget.cpp
 
 HEADERS  += chessclockwindow.h \
     classes/turninformation.h \
@@ -67,8 +66,7 @@ HEADERS  += chessclockwindow.h \
     classes/timecontrol/hourglasstimecontrol.h \
     classes/timecontrol/hourglassclock.h \
     classes/screenlitkeeper.h \
-    classes/wrappedclockswidget.h \
-    classes/clockswidgetplugin.h
+    classes/wrappedclockswidget.h
 
 
 OTHER_FILES += \
@@ -85,7 +83,8 @@ OTHER_FILES += \
     qtc_packaging/debian_harmattan/changelog \
     qml/ClocksPage.qml \
     qml/AboutPage.qml \
-    qml/ClocksWidgetWrapper.qml
+    qml/NewGameDialog.qml \
+    qml/TimePicker.qml
 
 RESOURCES += \
     res.qrc \
diff --git a/classes/clockswidgetplugin.cpp b/classes/clockswidgetplugin.cpp
deleted file mode 100644 (file)
index 1fc6c1b..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "clockswidgetplugin.h"
-#include "wrappedclockswidget.h"
-#include <qdeclarative.h>
-
-ClocksWidgetPlugin::ClocksWidgetPlugin(QObject *parent) :
-    QDeclarativeExtensionPlugin(parent)
-{
-
-
-}
-
-void ClocksWidgetPlugin::registerTypes(const char *uri)
-{
-    qmlRegisterType<WrappedClocksWidget>(uri,1,0,"ChessClocks");
-}
-
-Q_EXPORT_PLUGIN2(clockswidgetplugin,ClocksWidgetPlugin);
diff --git a/classes/clockswidgetplugin.h b/classes/clockswidgetplugin.h
deleted file mode 100644 (file)
index 16e58ab..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef CLOCKSWIDGETPLUGIN_H
-#define CLOCKSWIDGETPLUGIN_H
-
-#include <QDeclarativeExtensionPlugin>
-
-class ClocksWidgetPlugin : public QDeclarativeExtensionPlugin
-{
-    Q_OBJECT
-public:
-    explicit ClocksWidgetPlugin(QObject *parent = 0);
-
-    void registerTypes(const char *uri);
-
-signals:
-
-public slots:
-
-};
-
-#endif // CLOCKSWIDGETPLUGIN_H
diff --git a/qml/ClocksWidgetWrapper.qml b/qml/ClocksWidgetWrapper.qml
deleted file mode 100644 (file)
index 83ddcf4..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/**************************************************************************
-
-   Chess Clock
-
-   This file is part of Chess Clock software.
-
-   (This file) Copyright (c) Heli Hyvättinen 2011
-
-   Chess Clock is free software: you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation, either version 3 of the License, or
-   (at your option) any later version.
-
-   Chess Clock is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-
-**************************************************************************/
-
-import QtQuick 1.0
-
-ClocksWidgetWrapper {
-    width: 400
-    height: 200
-}