1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of the documentation of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and The Qt Company. For licensing terms
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
16 **
17 ** BSD License Usage
18 ** Alternatively, you may use this file under the terms of the BSD license
19 ** as follows:
20 **
21 ** "Redistribution and use in source and binary forms, with or without
22 ** modification, are permitted provided that the following conditions are
23 ** met:
24 **   * Redistributions of source code must retain the above copyright
25 **     notice, this list of conditions and the following disclaimer.
26 **   * Redistributions in binary form must reproduce the above copyright
27 **     notice, this list of conditions and the following disclaimer in
28 **     the documentation and/or other materials provided with the
29 **     distribution.
30 **   * Neither the name of The Qt Company Ltd nor the names of its
31 **     contributors may be used to endorse or promote products derived
32 **     from this software without specific prior written permission.
33 **
34 **
35 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
46 **
47 ** $QT_END_LICENSE$
48 **
49 ****************************************************************************/
50 
51 #include <QtGui>
52 #include <cmath>
53 
54 class SimpleTransformation : public QWidget
55 {
56     void paintEvent(QPaintEvent *) override;
57 };
58 
59 //! [0]
paintEvent(QPaintEvent *)60 void SimpleTransformation::paintEvent(QPaintEvent *)
61 {
62     QPainter painter(this);
63     painter.setPen(QPen(Qt::blue, 1, Qt::DashLine));
64     painter.drawRect(0, 0, 100, 100);
65 
66     painter.rotate(45);
67 
68     painter.setFont(QFont("Helvetica", 24));
69     painter.setPen(QPen(Qt::black, 1));
70     painter.drawText(20, 10, "QMatrix");
71 }
72 //! [0]
73 
74 class CombinedTransformation : public QWidget
75 {
76     void paintEvent(QPaintEvent *) override;
77 };
78 
79 //! [1]
paintEvent(QPaintEvent *)80 void CombinedTransformation::paintEvent(QPaintEvent *)
81 {
82     QPainter painter(this);
83     painter.setPen(QPen(Qt::blue, 1, Qt::DashLine));
84     painter.drawRect(0, 0, 100, 100);
85 
86     QMatrix matrix;
87     matrix.translate(50, 50);
88     matrix.rotate(45);
89     matrix.scale(0.5, 1.0);
90     painter.setMatrix(matrix);
91 
92     painter.setFont(QFont("Helvetica", 24));
93     painter.setPen(QPen(Qt::black, 1));
94     painter.drawText(20, 10, "QMatrix");
95 }
96 //! [1]
97 
98 class BasicOperations : public QWidget
99 {
100     void paintEvent(QPaintEvent *) override;
101 };
102 
103 //! [2]
paintEvent(QPaintEvent *)104 void BasicOperations::paintEvent(QPaintEvent *)
105 {
106     double pi = 3.14;
107 
108     double a    = pi/180 * 45.0;
109     double sina = sin(a);
110     double cosa = cos(a);
111 
112     QMatrix translationMatrix(1, 0, 0, 1, 50.0, 50.0);
113     QMatrix rotationMatrix(cosa, sina, -sina, cosa, 0, 0);
114     QMatrix scalingMatrix(0.5, 0, 0, 1.0, 0, 0);
115 
116     QMatrix matrix;
117     matrix =  scalingMatrix * rotationMatrix * translationMatrix;
118 
119     QPainter painter(this);
120     painter.setPen(QPen(Qt::blue, 1, Qt::DashLine));
121     painter.drawRect(0, 0, 100, 100);
122 
123     painter.setMatrix(matrix);
124 
125     painter.setFont(QFont("Helvetica", 24));
126     painter.setPen(QPen(Qt::black, 1));
127     painter.drawText(20, 10, "QMatrix");
128 }
129 //! [2]
130 
main(int argc,char ** argv)131 int main(int argc, char **argv)
132 {
133     QApplication app(argc, argv);
134 
135     QWidget widget;
136 
137     SimpleTransformation *simpleWidget = new SimpleTransformation;
138     CombinedTransformation *combinedWidget = new CombinedTransformation;
139     BasicOperations *basicWidget = new BasicOperations;
140 
141     QVBoxLayout *layout = new QVBoxLayout;
142     layout->addWidget(simpleWidget);
143     layout->addWidget(combinedWidget);
144     layout->addWidget(basicWidget);
145     widget.setLayout(layout);
146 
147     widget.show();
148     widget.resize(130, 350);
149     return app.exec();
150 }
151