annotate examples/opengl/hellogl/window.d @ 282:256ab6cb8e85

Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
author eldar
date Fri, 16 Oct 2009 02:43:59 +0000
parents 8aaa84d48451
children 7a3c43424dca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 /****************************************************************************
e78566595089 initial import
mandel
parents:
diff changeset
2 **
e78566595089 initial import
mandel
parents:
diff changeset
3 ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
e78566595089 initial import
mandel
parents:
diff changeset
4 ** Contact: Qt Software Information (qt-info@nokia.com)
e78566595089 initial import
mandel
parents:
diff changeset
5 **
e78566595089 initial import
mandel
parents:
diff changeset
6 ** This file is part of the example classes of the Qt Toolkit.
e78566595089 initial import
mandel
parents:
diff changeset
7 **
e78566595089 initial import
mandel
parents:
diff changeset
8 ** Commercial Usage
e78566595089 initial import
mandel
parents:
diff changeset
9 ** Licensees holding valid Qt Commercial licenses may use this file in
e78566595089 initial import
mandel
parents:
diff changeset
10 ** accordance with the Qt Commercial License Agreement provided with the
e78566595089 initial import
mandel
parents:
diff changeset
11 ** Software or, alternatively, in accordance with the terms contained in
e78566595089 initial import
mandel
parents:
diff changeset
12 ** a written agreement between you and Nokia.
e78566595089 initial import
mandel
parents:
diff changeset
13 **
e78566595089 initial import
mandel
parents:
diff changeset
14 **
e78566595089 initial import
mandel
parents:
diff changeset
15 ** GNU General Public License Usage
e78566595089 initial import
mandel
parents:
diff changeset
16 ** Alternatively, this file may be used under the terms of the GNU
e78566595089 initial import
mandel
parents:
diff changeset
17 ** General Public License versions 2.0 or 3.0 as published by the Free
e78566595089 initial import
mandel
parents:
diff changeset
18 ** Software Foundation and appearing in the file LICENSE.GPL included in
e78566595089 initial import
mandel
parents:
diff changeset
19 ** the packaging of this file. Please review the following information
e78566595089 initial import
mandel
parents:
diff changeset
20 ** to ensure GNU General Public Licensing requirements will be met:
e78566595089 initial import
mandel
parents:
diff changeset
21 ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
e78566595089 initial import
mandel
parents:
diff changeset
22 ** http://www.gnu.org/copyleft/gpl.html. In addition, as a special
e78566595089 initial import
mandel
parents:
diff changeset
23 ** exception, Nokia gives you certain additional rights. These rights
e78566595089 initial import
mandel
parents:
diff changeset
24 ** are described in the Nokia Qt GPL Exception version 1.3, included in
e78566595089 initial import
mandel
parents:
diff changeset
25 ** the file GPL_EXCEPTION.txt in this package.
e78566595089 initial import
mandel
parents:
diff changeset
26 **
e78566595089 initial import
mandel
parents:
diff changeset
27 ** Qt for Windows(R) Licensees
e78566595089 initial import
mandel
parents:
diff changeset
28 ** As a special exception, Nokia, as the sole copyright holder for Qt
e78566595089 initial import
mandel
parents:
diff changeset
29 ** Designer, grants users of the Qt/Eclipse Integration plug-in the
e78566595089 initial import
mandel
parents:
diff changeset
30 ** right for the Qt/Eclipse Integration to link to functionality
e78566595089 initial import
mandel
parents:
diff changeset
31 ** provided by Qt Designer and its related libraries.
e78566595089 initial import
mandel
parents:
diff changeset
32 **
e78566595089 initial import
mandel
parents:
diff changeset
33 ** If you are unsure which license is appropriate for your use, please
e78566595089 initial import
mandel
parents:
diff changeset
34 ** contact the sales department at qt-sales@nokia.com.
e78566595089 initial import
mandel
parents:
diff changeset
35 **
e78566595089 initial import
mandel
parents:
diff changeset
36 ****************************************************************************/
e78566595089 initial import
mandel
parents:
diff changeset
37
e78566595089 initial import
mandel
parents:
diff changeset
38 import qt.gui.QWidget;
e78566595089 initial import
mandel
parents:
diff changeset
39 import qt.gui.QSlider;
e78566595089 initial import
mandel
parents:
diff changeset
40 import qt.gui.QHBoxLayout;
e78566595089 initial import
mandel
parents:
diff changeset
41
215
8aaa84d48451 Improve examples.
SokoL_SD
parents: 1
diff changeset
42 version(D_Version2)
8aaa84d48451 Improve examples.
SokoL_SD
parents: 1
diff changeset
43 import glwidget;
8aaa84d48451 Improve examples.
SokoL_SD
parents: 1
diff changeset
44 else
8aaa84d48451 Improve examples.
SokoL_SD
parents: 1
diff changeset
45 import glwidget_d1;
1
e78566595089 initial import
mandel
parents:
diff changeset
46
e78566595089 initial import
mandel
parents:
diff changeset
47 class Window : public QWidget
e78566595089 initial import
mandel
parents:
diff changeset
48 {
e78566595089 initial import
mandel
parents:
diff changeset
49 // Q_OBJECT
e78566595089 initial import
mandel
parents:
diff changeset
50
e78566595089 initial import
mandel
parents:
diff changeset
51 public:
e78566595089 initial import
mandel
parents:
diff changeset
52 this()
e78566595089 initial import
mandel
parents:
diff changeset
53 {
e78566595089 initial import
mandel
parents:
diff changeset
54 glWidget = new GLWidget;
e78566595089 initial import
mandel
parents:
diff changeset
55
e78566595089 initial import
mandel
parents:
diff changeset
56 xSlider = createSlider();
e78566595089 initial import
mandel
parents:
diff changeset
57 ySlider = createSlider();
e78566595089 initial import
mandel
parents:
diff changeset
58 zSlider = createSlider();
e78566595089 initial import
mandel
parents:
diff changeset
59
282
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
60 connect!("valueChanged")(xSlider, &glWidget.setXRotation);
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
61 connect!("xRotationChanged")(glWidget, &xSlider.setValue);
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
62 connect!("valueChanged")(ySlider, &glWidget.setYRotation);
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
63 connect!("yRotationChanged")(glWidget, &ySlider.setValue);
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
64 connect!("valueChanged")(zSlider,&glWidget.setZRotation);
256ab6cb8e85 Signals look-up andNew syntax for connect. The old one will not work from now on. This will allow for the signals overload. Although changes are done for both D1 and D2 versions, D1 won't work because of compiler bugs. I am tired of waiting for fixes.
eldar
parents: 215
diff changeset
65 connect!("zRotationChanged")(glWidget, &zSlider.setValue);
1
e78566595089 initial import
mandel
parents:
diff changeset
66
e78566595089 initial import
mandel
parents:
diff changeset
67 QHBoxLayout mainLayout = new QHBoxLayout;
e78566595089 initial import
mandel
parents:
diff changeset
68 mainLayout.addWidget(glWidget);
e78566595089 initial import
mandel
parents:
diff changeset
69 mainLayout.addWidget(xSlider);
e78566595089 initial import
mandel
parents:
diff changeset
70 mainLayout.addWidget(ySlider);
e78566595089 initial import
mandel
parents:
diff changeset
71 mainLayout.addWidget(zSlider);
e78566595089 initial import
mandel
parents:
diff changeset
72 setLayout(mainLayout);
e78566595089 initial import
mandel
parents:
diff changeset
73
e78566595089 initial import
mandel
parents:
diff changeset
74 xSlider.setValue(15 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
75 ySlider.setValue(345 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
76 zSlider.setValue(0 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
77 setWindowTitle(tr("Hello GL"));
e78566595089 initial import
mandel
parents:
diff changeset
78 }
e78566595089 initial import
mandel
parents:
diff changeset
79
e78566595089 initial import
mandel
parents:
diff changeset
80 private:
e78566595089 initial import
mandel
parents:
diff changeset
81 QSlider createSlider()
e78566595089 initial import
mandel
parents:
diff changeset
82 {
e78566595089 initial import
mandel
parents:
diff changeset
83 auto slider = new QSlider(Qt.Vertical);
e78566595089 initial import
mandel
parents:
diff changeset
84 slider.setRange(0, 360 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
85 slider.setSingleStep(16);
e78566595089 initial import
mandel
parents:
diff changeset
86 slider.setPageStep(15 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
87 slider.setTickInterval(15 * 16);
e78566595089 initial import
mandel
parents:
diff changeset
88 slider.setTickPosition(QSlider.TicksRight);
e78566595089 initial import
mandel
parents:
diff changeset
89 return slider;
e78566595089 initial import
mandel
parents:
diff changeset
90 }
e78566595089 initial import
mandel
parents:
diff changeset
91
e78566595089 initial import
mandel
parents:
diff changeset
92 GLWidget glWidget;
e78566595089 initial import
mandel
parents:
diff changeset
93 QSlider xSlider;
e78566595089 initial import
mandel
parents:
diff changeset
94 QSlider ySlider;
e78566595089 initial import
mandel
parents:
diff changeset
95 QSlider zSlider;
e78566595089 initial import
mandel
parents:
diff changeset
96 }