aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlviewer/startup
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qmlviewer/startup')
-rw-r--r--tools/qmlviewer/startup/Logo.qml179
-rw-r--r--tools/qmlviewer/startup/qt-back.pngbin3549 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/qt-blue.jpgbin20900 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/qt-front.pngbin3318 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/qt-sketch.jpgbin17048 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/qt-text.pngbin14565 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/quick-blur.pngbin2826 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/quick-regular.pngbin1399 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/shadow.pngbin1592 -> 0 bytes
-rw-r--r--tools/qmlviewer/startup/startup.qml173
-rw-r--r--tools/qmlviewer/startup/startup.qrc16
-rw-r--r--tools/qmlviewer/startup/white-star.pngbin2651 -> 0 bytes
12 files changed, 0 insertions, 368 deletions
diff --git a/tools/qmlviewer/startup/Logo.qml b/tools/qmlviewer/startup/Logo.qml
deleted file mode 100644
index 177b41561c..0000000000
--- a/tools/qmlviewer/startup/Logo.qml
+++ /dev/null
@@ -1,179 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the QtDeclarative module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 1.0
-
-Rectangle {
- id: myApp
- width: 411
- height: 411
- color: "transparent"
- property alias logoState : myApp.state
- signal animationFinished
-
- Item {
- id: sketchBlueHolder
- width: sketchLogo.width
- height: sketchLogo.height
- Image {
- id: image1
- x: -44
- y: -45
- smooth: true
- source: "shadow.png"
- }
- Item {
- clip: true
- width: sketchLogo.width
- height: sketchLogo.height
- Image {
- id: sketchLogo
- smooth: true
- source: "qt-sketch.jpg"
- }
- Image {
- id: blueLogo
- y: -420
- smooth: true
- source: "qt-blue.jpg"
- }
- }
- }
-
- states: [
- State {
- name: "showBlueprint"
- PropertyChanges {
- target: blueLogo
- y: 0
- }
- PropertyChanges {
- target: sketchLogo
- opacity: 0
- }
- },
- State {
- extend: "showBlueprint"
- name: "finale"
- PropertyChanges {
- target: fullLogo
- opacity: 1
- }
- PropertyChanges {
- target: backLogo
- opacity: 1
- scale: 1
- }
- PropertyChanges {
- target: frontLogo
- opacity: 1
- scale: 1
- }
- PropertyChanges {
- target: qtText
- opacity: 1
- scale: 1
- }
- PropertyChanges {
- target: sketchBlueHolder
- opacity: 0
- scale: 1.4
- }
- }
- ]
-
- transitions: [
- Transition {
- to: "showBlueprint"
- SequentialAnimation {
- NumberAnimation { property: "y"; duration: 600; easing.type: "OutBounce" }
- PropertyAction { target: sketchLogo; property: "opacity" }
- }
- },
- Transition {
- to: "finale"
- PropertyAction { target: fullLogo; property: "opacity" }
- SequentialAnimation {
- NumberAnimation { target: backLogo; properties: "scale, opacity"; duration: 300 }
- NumberAnimation { target: frontLogo; properties: "scale, opacity"; duration: 300 }
- ParallelAnimation {
- NumberAnimation { target: qtText; properties: "opacity, scale"; duration: 400; easing.type: "OutQuad" }
- NumberAnimation { target: sketchBlueHolder; property: "opacity"; duration: 300; easing.type: "OutQuad" }
- NumberAnimation { target: sketchBlueHolder; property: "scale"; duration: 320; easing.type: "OutQuad" }
- }
- PauseAnimation { duration: 1000 }
- ScriptAction { script: myApp.animationFinished() }
- }
- }
- ]
-
- Item {
- id: fullLogo
- opacity: 0
- Image {
- id: backLogo
- x: -16
- y: -41
- opacity: 0
- scale: 0.7
- smooth: true
- source: "qt-back.png"
- }
- Image {
- id: frontLogo
- x: -17
- y: -41
- opacity: 0
- scale: 1.2
- smooth: true
- source: "qt-front.png"
- }
- Image {
- id: qtText
- x: -10
- y: -41
- opacity: 0
- scale: 1.2
- smooth: true
- source: "qt-text.png"
- }
- }
-}
diff --git a/tools/qmlviewer/startup/qt-back.png b/tools/qmlviewer/startup/qt-back.png
deleted file mode 100644
index 077215f882..0000000000
--- a/tools/qmlviewer/startup/qt-back.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/qt-blue.jpg b/tools/qmlviewer/startup/qt-blue.jpg
deleted file mode 100644
index b204896483..0000000000
--- a/tools/qmlviewer/startup/qt-blue.jpg
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/qt-front.png b/tools/qmlviewer/startup/qt-front.png
deleted file mode 100644
index dbfb43e374..0000000000
--- a/tools/qmlviewer/startup/qt-front.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/qt-sketch.jpg b/tools/qmlviewer/startup/qt-sketch.jpg
deleted file mode 100644
index 1ede6f079b..0000000000
--- a/tools/qmlviewer/startup/qt-sketch.jpg
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/qt-text.png b/tools/qmlviewer/startup/qt-text.png
deleted file mode 100644
index d44995c9b3..0000000000
--- a/tools/qmlviewer/startup/qt-text.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/quick-blur.png b/tools/qmlviewer/startup/quick-blur.png
deleted file mode 100644
index 29ec243387..0000000000
--- a/tools/qmlviewer/startup/quick-blur.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/quick-regular.png b/tools/qmlviewer/startup/quick-regular.png
deleted file mode 100644
index 38321cbf19..0000000000
--- a/tools/qmlviewer/startup/quick-regular.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/shadow.png b/tools/qmlviewer/startup/shadow.png
deleted file mode 100644
index 44f92fee73..0000000000
--- a/tools/qmlviewer/startup/shadow.png
+++ /dev/null
Binary files differ
diff --git a/tools/qmlviewer/startup/startup.qml b/tools/qmlviewer/startup/startup.qml
deleted file mode 100644
index c843ad20ed..0000000000
--- a/tools/qmlviewer/startup/startup.qml
+++ /dev/null
@@ -1,173 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the QtDeclarative module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 1.0
-
-Rectangle {
- id: treatsApp
- width: 800
- height: 480
- color: "darkgrey"
- Component.onCompleted: treatsApp.state = "part1"
- signal animationFinished
-
- Item {
- width: 800
- height: 480
- anchors.centerIn: parent
- clip: true
-
- Logo {
- id: logo
- x: 165
- y: 35
- rotation: -15
- scale: 0.6
- opacity: 0
- onAnimationFinished: treatsApp.animationFinished();
- }
-
- Item {
- id: quickblur
- x: 800//325
- y: 344
- Image {
- id: blurText
- source: "quick-blur.png"
- }
- Image {
- id: quickregular
- x: -1
- y: 0
- opacity: 0
- source: "quick-regular.png"
- }
- Image {
- id: star
- x: -1
- y: 0
- opacity: 0
- source: "white-star.png"
- smooth: true
- NumberAnimation on rotation {
- from: 0
- to: 360
- loops: 3
- running: true
- duration: 2000
- }
- }
- }
- }
-
- states: [
- State {
- name: "part1"
- PropertyChanges {
- target: logo
- scale: 0.8
- opacity: 1
- rotation: 0
- }
- PropertyChanges {
- target: treatsApp
- color: "black"
- }
- PropertyChanges {
- target: logo
- y: 10
- }
- PropertyChanges {
- target: quickblur
- x: logo.x + 145
- }
- PropertyChanges {
- target: blurText
- opacity: 0
- }
- PropertyChanges {
- target: quickregular
- opacity: 1
- }
- PropertyChanges {
- target: star
- x: -7
- y: -37
- }
- }
- ]
-
- transitions: [
- Transition {
- ParallelAnimation {
- NumberAnimation { target: logo; property: "opacity"; duration: 500 }
- NumberAnimation { target: logo; property: "scale"; duration: 4000; }
- NumberAnimation { target: logo; property: "rotation"; duration: 2000; easing.type: "OutBack"}
- ColorAnimation { duration: 3000}
- SequentialAnimation {
- PauseAnimation { duration: 1000 }
- ScriptAction { script: logo.logoState = "showBlueprint" }
- PauseAnimation { duration: 800 }
- ScriptAction { script: logo.logoState = "finale" }
- PauseAnimation { duration: 800 }
- ParallelAnimation {
- NumberAnimation { target: quickblur; property: "x"; duration: 200;}
- SequentialAnimation {
- PauseAnimation { duration: 200}
- ParallelAnimation {
- NumberAnimation { target: blurText; property: "opacity"; duration: 300;}
- NumberAnimation { target: quickregular; property: "opacity"; duration: 300;}
- }
- NumberAnimation { target: star; property: "opacity"; from: 0; to: 1; duration: 500 }
- PauseAnimation { duration: 200 }
- NumberAnimation { target: star; property: "opacity"; from: 1; to: 0; duration: 500 }
- }
- SequentialAnimation {
- PauseAnimation { duration: 150}
- NumberAnimation { target: logo; property: "y"; duration: 300; easing.type: "OutBounce" }
- }
- }
- }
- }
- }
- ]
-
-} // treatsApp
diff --git a/tools/qmlviewer/startup/startup.qrc b/tools/qmlviewer/startup/startup.qrc
deleted file mode 100644
index 52e67050d9..0000000000
--- a/tools/qmlviewer/startup/startup.qrc
+++ /dev/null
@@ -1,16 +0,0 @@
-<RCC>
- <qresource prefix="/startup">
- <file>Logo.qml</file>
- <file>qt-back.png</file>
- <file>qt-blue.jpg</file>
- <file>qt-front.png</file>
- <file>qt-sketch.jpg</file>
- <file>qt-text.png</file>
- <file>quick-blur.png</file>
- <file>quick-regular.png</file>
- <file>shadow.png</file>
- <file>startup.qml</file>
- <file>startup.qrc</file>
- <file>white-star.png</file>
- </qresource>
-</RCC>
diff --git a/tools/qmlviewer/startup/white-star.png b/tools/qmlviewer/startup/white-star.png
deleted file mode 100644
index f467c9480e..0000000000
--- a/tools/qmlviewer/startup/white-star.png
+++ /dev/null
Binary files differ