Opens a stub about page
authorHeli Hyvättinen <heli.hyvattinen@kymp.net>
Sun, 7 Aug 2011 17:16:07 +0000 (20:16 +0300)
committerHeli Hyvättinen <heli.hyvattinen@kymp.net>
Sun, 7 Aug 2011 17:16:07 +0000 (20:16 +0300)
chessclock.pro
qml/AboutPage.qml [new file with mode: 0644]
qml/ClocksPage.qml [new file with mode: 0644]
qml/MainPage.qml
qml/aboutPage.qml [deleted file]
qml/main.qml
res.qrc

index e08fd14..38e1a45 100644 (file)
@@ -79,7 +79,8 @@ OTHER_FILES += \
     qtc_packaging/debian_harmattan/control \
     qtc_packaging/debian_harmattan/compat \
     qtc_packaging/debian_harmattan/changelog \
-    qml/aboutPage.qml
+    qml/ClocksPage.qml \
+    qml/AboutPage.qml
 
 RESOURCES += \
     res.qrc \
diff --git a/qml/AboutPage.qml b/qml/AboutPage.qml
new file mode 100644 (file)
index 0000000..44f4f70
--- /dev/null
@@ -0,0 +1,6 @@
+import QtQuick 1.0
+
+Rectangle {
+    width: 100
+    height: 62
+}
diff --git a/qml/ClocksPage.qml b/qml/ClocksPage.qml
new file mode 100644 (file)
index 0000000..6a34eba
--- /dev/null
@@ -0,0 +1,12 @@
+import QtQuick 1.0
+import com.meego 1.0
+import QtQuick 1.1
+
+Page
+{
+    id: clocksPage
+Rectangle {
+    width: 100
+    height: 62
+}
+}
index 7d673ac..7e26f1e 100644 (file)
@@ -136,11 +136,10 @@ Page {
 
 
 
-
         title:Label
         {
             color:"white"
-            font.pointSize: 40
+            font.pointSize: 64
             text: newGameDialog.name
         }
 
diff --git a/qml/aboutPage.qml b/qml/aboutPage.qml
deleted file mode 100644 (file)
index a272638..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-import QtQuick 1.1
-import com.meego 1.0
-
-Page
-{
-    id: aboutPage
-
-    Rectangle {
-        width: 100
-        height: 62
-    }
-}
index 445856f..8d6ad91 100644 (file)
@@ -10,6 +10,10 @@ PageStackWindow {
 
     MainPage{id: mainPage}
 
+    AboutPage{id: aboutPage}
+
+    ClocksPage{id: clocksPage}
+
     ToolBarLayout {
         id: commonTools
         visible: true
diff --git a/res.qrc b/res.qrc
index aff7583..539837f 100644 (file)
--- a/res.qrc
+++ b/res.qrc
@@ -2,6 +2,7 @@
     <qresource prefix="/">
         <file>qml/main.qml</file>
         <file>qml/MainPage.qml</file>
-        <file>qml/aboutPage.qml</file>
+        <file>qml/ClocksPage.qml</file>
+        <file>qml/AboutPage.qml</file>
     </qresource>
 </RCC>