620ba6a715671f470be80594e8bd2c613818c9a6
[profile/ivi/qtdeclarative.git] / examples / quick / canvas / tiger / tiger.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42 import "../contents"
43 import "tiger.js" as Tiger
44 Item {
45   id:container
46   width:320
47   height:480
48
49   Column {
50     spacing:5
51     anchors.fill:parent
52     Text { font.pointSize:15; text:"Tiger with SVG path"; anchors.horizontalCenter:parent.horizontalCenter}
53
54     Canvas {
55         id:canvas
56         width:320
57         height:280
58         smooth:true
59         renderTarget:Canvas.FramebufferObject
60         renderStrategy: Canvas.Cooperative
61         property string strokeStyle:"steelblue"
62         property string fillStyle:"yellow"
63         property bool fill:true
64         property bool stroke:true
65         property real alpha:alphaCtrl.value
66         property real scaleX : scaleXCtrl.value
67         property real scaleY : scaleYCtrl.value
68         property real rotate : rotateCtrl.value
69         property int frame:0
70
71         onFillChanged: requestPaint();
72         onStrokeChanged: requestPaint();
73         onAlphaChanged: requestPaint();
74         onScaleXChanged: requestPaint();
75         onScaleYChanged: requestPaint();
76         onRotateChanged: requestPaint();
77
78         onPainted : {
79             canvas.frame++;
80             if (canvas.frame < Tiger.tiger.length)
81                 requestPaint();
82         }
83         onPaint: {
84             var ctx = canvas.getContext('2d');
85             ctx.save();
86             ctx.clearRect(0, 0, canvas.width, canvas.height);
87             ctx.globalAlpha = canvas.alpha;
88             ctx.scale(canvas.scaleX, canvas.scaleY);
89             ctx.rotate(canvas.rotate);
90             ctx.globalCompositeOperation = "source-over";
91             ctx.translate(canvas.width/2, canvas.height/2);
92             ctx.strokeStyle = Qt.rgba(.3, .3, .3,1);
93             ctx.lineWidth = 1;
94
95             //! [0]
96             for (var i = 0; i < canvas.frame && i < Tiger.tiger.length; i++) {
97                 if (Tiger.tiger[i].width != undefined)
98                     ctx.lineWidth = Tiger.tiger[i].width;
99
100                 if (Tiger.tiger[i].path != undefined)
101                     ctx.path = Tiger.tiger[i].path;
102
103                 if (Tiger.tiger[i].fill != undefined) {
104                     ctx.fillStyle = Tiger.tiger[i].fill;
105                     ctx.fill();
106                 }
107
108                 if (Tiger.tiger[i].stroke != undefined) {
109                     ctx.strokeStyle = Tiger.tiger[i].stroke;
110                     ctx.stroke();
111                 }
112             }
113             //! [0]
114             ctx.restore();
115         }
116     }
117     Rectangle {
118         id:controls
119         width:320
120         height:150
121         Column {
122           spacing:3
123           Slider {id:scaleXCtrl; width:300; height:20; min:0.1; max:10; init:0.5; name:"ScaleX"}
124           Slider {id:scaleYCtrl; width:300; height:20; min:0.1; max:10; init:0.5; name:"ScaleY"}
125           Slider {id:rotateCtrl; width:300; height:20; min:0; max:Math.PI*2; init:0; name:"Rotate"}
126           Slider {id:alphaCtrl; width:300; height:20; min:0; max:1; init:1; name:"Alpha"}
127         }
128     }
129   }
130 }