~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to doc/html/opengl-textures-glwidget-cpp.html

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!DOCTYPE html
 
3
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
5
<head>
 
6
    <title>Qt 4.0: glwidget.cpp Example File (opengl/textures/glwidget.cpp)</title>
 
7
    <style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }
 
8
a:link { color: #004faf; text-decoration: none }
 
9
a:visited { color: #672967; text-decoration: none }
 
10
td.postheader { font-family: sans-serif }
 
11
tr.address { font-family: sans-serif }
 
12
body { background: #ffffff; color: black; }</style>
 
13
</head>
 
14
<body>
 
15
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 
16
<tr>
 
17
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></td>
 
18
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="annotated.html"><font color="#004faf">Annotated</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td>
 
19
<td align="right" valign="top" width="230"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></td></tr></table><h1 align="center">glwidget.cpp Example File<br /><small><small>opengl/textures/glwidget.cpp</small></small></h1>
 
20
<pre>&nbsp;   /****************************************************************************
 
21
    **
 
22
    ** Copyright (C) 2005-2005 Trolltech AS. All rights reserved.
 
23
    **
 
24
    ** This file is part of the documentation of the Qt Toolkit.
 
25
    **
 
26
    ** This file may be distributed under the terms of the Q Public License
 
27
** as defined by Trolltech AS of Norway and appearing in the file
 
28
** LICENSE.QPL included in the packaging of this file.
 
29
**
 
30
** This file may be distributed and/or modified under the terms of the
 
31
** GNU General Public License version 2 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.
 
34
**
 
35
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
36
**   information about Qt Commercial License Agreements.
 
37
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
38
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
39
**
 
40
** Contact info@trolltech.com if any conditions of this licensing are
 
41
** not clear to you.
 
42
    **
 
43
    ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
44
    ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
45
    **
 
46
    ****************************************************************************/
 
47
 
 
48
    #include &lt;QtGui&gt;
 
49
    #include &lt;QtOpenGL&gt;
 
50
 
 
51
    #include &lt;math.h&gt;
 
52
 
 
53
    #include &quot;glwidget.h&quot;
 
54
 
 
55
    GLuint GLWidget::sharedObject = 0;
 
56
    int GLWidget::refCount = 0;
 
57
 
 
58
    GLWidget::GLWidget(QWidget *parent, QGLWidget *shareWidget)
 
59
        : QGLWidget(parent, shareWidget)
 
60
    {
 
61
        clearColor = Qt::black;
 
62
        xRot = 0;
 
63
        yRot = 0;
 
64
        zRot = 0;
 
65
    }
 
66
 
 
67
    GLWidget::~GLWidget()
 
68
    {
 
69
        if (--refCount == 0) {
 
70
            makeCurrent();
 
71
            glDeleteLists(sharedObject, 1);
 
72
        }
 
73
    }
 
74
 
 
75
    QSize GLWidget::minimumSizeHint() const
 
76
    {
 
77
        return QSize(50, 50);
 
78
    }
 
79
 
 
80
    QSize GLWidget::sizeHint() const
 
81
    {
 
82
        return QSize(200, 200);
 
83
    }
 
84
 
 
85
    void GLWidget::rotateBy(int xAngle, int yAngle, int zAngle)
 
86
    {
 
87
        xRot += xAngle;
 
88
        yRot += yAngle;
 
89
        zRot += zAngle;
 
90
        updateGL();
 
91
    }
 
92
 
 
93
    void GLWidget::setClearColor(const QColor &amp;color)
 
94
    {
 
95
        clearColor = color;
 
96
        updateGL();
 
97
    }
 
98
 
 
99
    void GLWidget::initializeGL()
 
100
    {
 
101
        if (!sharedObject)
 
102
            sharedObject = makeObject();
 
103
        ++refCount;
 
104
 
 
105
        glEnable(GL_DEPTH_TEST);
 
106
        glEnable(GL_CULL_FACE);
 
107
        glEnable(GL_TEXTURE_2D);
 
108
    }
 
109
 
 
110
    void GLWidget::paintGL()
 
111
    {
 
112
        qglClearColor(clearColor);
 
113
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
 
114
        glLoadIdentity();
 
115
        glTranslated(0.0, 0.0, -10.0);
 
116
        glRotated(xRot / 16.0, 1.0, 0.0, 0.0);
 
117
        glRotated(yRot / 16.0, 0.0, 1.0, 0.0);
 
118
        glRotated(zRot / 16.0, 0.0, 0.0, 1.0);
 
119
        glCallList(sharedObject);
 
120
    }
 
121
 
 
122
    void GLWidget::resizeGL(int width, int height)
 
123
    {
 
124
        int side = qMin(width, height);
 
125
        glViewport((width - side) / 2, (height - side) / 2, side, side);
 
126
 
 
127
        glMatrixMode(GL_PROJECTION);
 
128
        glLoadIdentity();
 
129
        glOrtho(-0.5, +0.5, +0.5, -0.5, 4.0, 15.0);
 
130
        glMatrixMode(GL_MODELVIEW);
 
131
    }
 
132
 
 
133
    void GLWidget::mousePressEvent(QMouseEvent *event)
 
134
    {
 
135
        lastPos = event-&gt;pos();
 
136
    }
 
137
 
 
138
    void GLWidget::mouseMoveEvent(QMouseEvent *event)
 
139
    {
 
140
        int dx = event-&gt;x() - lastPos.x();
 
141
        int dy = event-&gt;y() - lastPos.y();
 
142
 
 
143
        if (event-&gt;buttons() &amp; Qt::LeftButton) {
 
144
            rotateBy(8 * dy, 8 * dx, 0);
 
145
        } else if (event-&gt;buttons() &amp; Qt::RightButton) {
 
146
            rotateBy(8 * dy, 0, 8 * dx);
 
147
        }
 
148
        lastPos = event-&gt;pos();
 
149
    }
 
150
 
 
151
    void GLWidget::mouseReleaseEvent(QMouseEvent * /* event */)
 
152
    {
 
153
        emit clicked();
 
154
    }
 
155
 
 
156
    GLuint GLWidget::makeObject()
 
157
    {
 
158
        static const int coords[6][4][3] = {
 
159
            { { +1, -1, -1 }, { -1, -1, -1 }, { -1, +1, -1 }, { +1, +1, -1 } },
 
160
            { { +1, +1, -1 }, { -1, +1, -1 }, { -1, +1, +1 }, { +1, +1, +1 } },
 
161
            { { +1, -1, +1 }, { +1, -1, -1 }, { +1, +1, -1 }, { +1, +1, +1 } },
 
162
            { { -1, -1, -1 }, { -1, -1, +1 }, { -1, +1, +1 }, { -1, +1, -1 } },
 
163
            { { +1, -1, +1 }, { -1, -1, +1 }, { -1, -1, -1 }, { +1, -1, -1 } },
 
164
            { { -1, -1, +1 }, { +1, -1, +1 }, { +1, +1, +1 }, { -1, +1, +1 } }
 
165
        };
 
166
 
 
167
        GLuint list = glGenLists(1);
 
168
        glNewList(list, GL_COMPILE);
 
169
 
 
170
        for (int i = 0; i &lt; 6; ++i) {
 
171
            bindTexture(QPixmap(QString(&quot;:/images/side%1.png&quot;).arg(i + 1)));
 
172
 
 
173
            glBegin(GL_QUADS);
 
174
            for (int j = 0; j &lt; 4; ++j) {
 
175
                glTexCoord2d(j == 0 || j == 3, j == 0 || j == 1);
 
176
                glVertex3d(0.2 * coords[i][j][0], 0.2 * coords[i][j][1],
 
177
                           0.2 * coords[i][j][2]);
 
178
            }
 
179
            glEnd();
 
180
        }
 
181
 
 
182
        glEndList();
 
183
        return list;
 
184
    }</pre>
 
185
<p /><address><hr /><div align="center">
 
186
<table width="100%" cellspacing="0" border="0"><tr class="address">
 
187
<td width="30%">Copyright &copy; 2005 <a href="trolltech.html">Trolltech</a></td>
 
188
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
 
189
<td width="30%" align="right"><div align="right">Qt 4.0.0</div></td>
 
190
</tr></table></div></address></body>
 
191
</html>