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