1 /****************************************************************************
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
6 ** This file is part of the examples of the Qt Toolkit.
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
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
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
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."
39 ****************************************************************************/
43 import "tiger.js" as Tiger
52 Text { font.pointSize:15; text:"Tiger with SVG path"; anchors.horizontalCenter:parent.horizontalCenter}
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
71 onFillChanged: requestPaint();
72 onStrokeChanged: requestPaint();
73 onAlphaChanged: requestPaint();
74 onScaleXChanged: requestPaint();
75 onScaleYChanged: requestPaint();
76 onRotateChanged: requestPaint();
80 if (canvas.frame < Tiger.tiger.length)
84 var ctx = canvas.getContext('2d');
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);
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;
100 if (Tiger.tiger[i].path != undefined)
101 ctx.path = Tiger.tiger[i].path;
103 if (Tiger.tiger[i].fill != undefined) {
104 ctx.fillStyle = Tiger.tiger[i].fill;
108 if (Tiger.tiger[i].stroke != undefined) {
109 ctx.strokeStyle = Tiger.tiger[i].stroke;
122 Slider {id:scaleXCtrl; width:300; height:20; min:0.1; max:10; init:0.5; name:"ScaleX"}
123 Slider {id:scaleYCtrl; width:300; height:20; min:0.1; max:10; init:0.5; name:"ScaleY"}
124 Slider {id:rotateCtrl; width:300; height:20; min:0; max:Math.PI*2; init:0; name:"Rotate"}
125 Slider {id:alphaCtrl; width:300; height:20; min:0; max:1; init:1; name:"Alpha"}