source: trunk/doc/src/examples/activeqt/opengl.qdoc@ 1168

Last change on this file since 1168 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.5 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the documentation of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:FDL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in a
14** written agreement between you and Nokia.
15**
16** GNU Free Documentation License
17** Alternatively, this file may be used under the terms of the GNU Free
18** Documentation License version 1.3 as published by the Free Software
19** Foundation and appearing in the file included in the packaging of this
20** file.
21**
22** If you have questions regarding the use of this file, please contact
23** Nokia at [email protected].
24** $QT_END_LICENSE$
25**
26****************************************************************************/
27
28/*!
29 \page qaxserver-demo-opengl.html
30
31 \title OpenGL in an HTML page
32
33 \raw HTML
34 <SCRIPT LANGUAGE="JavaScript">
35 function setRot( form )
36 {
37 GLBox.setXRotation( form.XEdit.value );
38 GLBox.setYRotation( form.YEdit.value );
39 GLBox.setZRotation( form.ZEdit.value );
40 }
41 </SCRIPT>
42
43 <p />
44 An OpenGL scene:<br />
45 <object ID="GLBox" CLASSID="CLSID:5fd9c22e-ed45-43fa-ba13-1530bb6b03e0"
46 CODEBASE="http://qt.nokia.com/demos/openglax.cab">
47 [Object not available! Did you forget to build and register the server?]
48 </object><br />
49
50 <form>
51 Rotate the scene:<br />
52 X:<input type="edit" ID="XEdit" value="0" /><br />
53 Y:<input type="edit" name="YEdit" value="0" /><br />
54 Z:<input type="edit" name="ZEdit" value="0" /><br />
55 <input type="button" value="Set" onClick="setRot(this.form)" />
56 </form>
57 \endraw
58*/
59
60/*!
61 \example activeqt/opengl
62 \title OpenGL Example (ActiveQt)
63
64 The OpenGL example demonstrates the use of the default factory
65 and QAxFactory::isServer(), and the implementation of an
66 additional COM interface using QAxBindable and QAxAggregated.
67 The server executable can run both as an ActiveX server and as a
68 stand-alone application.
69
70 The ActiveX control in this example uses the QGlWidget class in
71 Qt to render an OpenGL scene in an ActiveX. The control exposes a few
72 methods to change the scene.
73
74 The application uses the default factory as provided by the
75 QAXFACTORY_DEFAULT macro to expose the \c GLBox widget as an ActiveX
76 control.
77 \snippet examples/activeqt/opengl/main.cpp 0
78 The implementation of \c main initializes the QApplication object,
79 and uses \c QAxFactory::isServer() to determine whether or not it is
80 appropriate to create and show the application interface.
81 \snippet examples/activeqt/opengl/main.cpp 1
82 \snippet examples/activeqt/opengl/main.cpp 2
83 \snippet examples/activeqt/opengl/main.cpp 3
84
85 The \c GLBox class inherits from both the \l QGLWidget class to be able
86 to render OpenGL, and from \l QAxBindable.
87 \snippet examples/activeqt/opengl/glbox.h 0
88 The class reimplements the \l QAxBindable::createAggregate() function from QAxBindable
89 to return the pointer to a \l QAxAggregated object.
90 \snippet examples/activeqt/opengl/glbox.h 1
91 The rest of the class declaration and the implementation of the OpenGL
92 rendering is identical to the original "box" example.
93
94 The implementation file of the \c GLBox class includes the \c objsafe.h
95 system header, in which the \c IObjectSafety COM interface is defined.
96 \snippet examples/activeqt/opengl/glbox.cpp 0
97 A class \c ObjectSafetyImpl is declared using multiple inheritance
98 to subclass the QAxAggregated class, and to implement the IObjectSafety
99 interface.
100 \snippet examples/activeqt/opengl/glbox.cpp 1
101 The class declares a default constructor, and implements the queryInterface
102 function to support the IObjectSafety interface.
103 \snippet examples/activeqt/opengl/glbox.cpp 2
104 Since every COM interface inherits \c IUnknown the \c QAXAGG_IUNKNOWN macro
105 is used to provide the default implementation of the \c IUnknown interface.
106 The macro is defined to delegate all calls to \c QueryInterface, \c AddRef
107 and \c Release to the interface returned by the controllingUnknown() function.
108 \snippet examples/activeqt/opengl/glbox.cpp 3
109 The implementation of the \c IObjectSafety interface provides the caller
110 with information about supported and enabled safety options, and returns
111 \c S_OK for all calls to indicate that the ActiveX control is safe.
112 \snippet examples/activeqt/opengl/glbox.cpp 4
113 The implementation of the \c createAggregate() function just returns a new
114 \c ObjectSafetyImpl object.
115 \snippet examples/activeqt/opengl/glbox.cpp 5
116
117 To build the example you must first build the QAxServer library.
118 Then run \c qmake and your make tool in \c
119 examples/activeqt/wrapper.
120
121 The \l{qaxserver-demo-opengl.html}{demonstration} requires your
122 WebBrowser to support ActiveX controls, and scripting to be
123 enabled.
124
125 In contrast to the other QAxServer examples Internet Explorer will not
126 open a dialog box to ask the user whether or not the scripting of the GLBox
127 control should be allowed (the exact browser behaviour depends on the security
128 settings in the Internet Options dialog).
129
130 \snippet doc/src/examples/activeqt/opengl-demo.qdocinc 0
131*/
Note: See TracBrowser for help on using the repository browser.