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 | \group activeqt-tools
|
---|
30 | \title Tools for ActiveQt
|
---|
31 | \brief Tools to help integrate Qt applications with ActiveX components.
|
---|
32 |
|
---|
33 | These tools provide support for integrating Qt with ActiveX components.
|
---|
34 |
|
---|
35 | \generatelist{related}
|
---|
36 |
|
---|
37 | \sa {ActiveQt Framework}
|
---|
38 | */
|
---|
39 |
|
---|
40 | /*!
|
---|
41 | \page activeqt.html
|
---|
42 | \title Qt's ActiveX Framework (ActiveQt)
|
---|
43 | \brief An overview of Qt's ActiveX and COM integration on Windows.
|
---|
44 |
|
---|
45 | \ingroup qt-activex
|
---|
46 | \keyword ActiveQt
|
---|
47 | \target ActiveQt Framework
|
---|
48 |
|
---|
49 | Qt's ActiveX and COM support allows Qt for Windows developers to:
|
---|
50 |
|
---|
51 | \list 1
|
---|
52 | \o Access and use ActiveX controls and COM objects provided by any
|
---|
53 | ActiveX server in their Qt applications.
|
---|
54 | \o Make their Qt applications available as COM servers, with
|
---|
55 | any number of Qt objects and widgets as COM objects and ActiveX
|
---|
56 | controls.
|
---|
57 | \endlist
|
---|
58 |
|
---|
59 | For more information about using ActiveX with Qt, see
|
---|
60 | \l{Building ActiveX servers in Qt}.
|
---|
61 |
|
---|
62 | The ActiveQt framework consists of two modules:
|
---|
63 |
|
---|
64 | \list
|
---|
65 | \o The \l{Using ActiveX controls and COM in Qt}{QAxContainer}
|
---|
66 | module is a static library implementing QObject and QWidget subclasses,
|
---|
67 | QAxObject and QAxWidget, that act as containers for COM objects and
|
---|
68 | ActiveX controls.
|
---|
69 | \o The \l{Building ActiveX servers in Qt}{QAxServer}
|
---|
70 | module is a static library that implements
|
---|
71 | functionality for in-process and executable COM servers. This
|
---|
72 | module provides the QAxAggregated, QAxBindable and QAxFactory
|
---|
73 | classes.
|
---|
74 | \endlist
|
---|
75 |
|
---|
76 | A set of \l{Tools for ActiveQt}{tools} is provided to simplify the
|
---|
77 | developing and building of Qt projects that use ActiveX.
|
---|
78 |
|
---|
79 | To build the static libraries, change into the \c activeqt directory
|
---|
80 | (usually \c QTDIR/src/activeqt), and run \c qmake and your make
|
---|
81 | tool in both the \c container and the \c control subdirectory.
|
---|
82 | The libraries \c qaxcontainer.lib and \c qaxserver.lib will be linked
|
---|
83 | into \c QTDIR/lib.
|
---|
84 |
|
---|
85 | If you are using a shared configuration of Qt enter the \c plugin
|
---|
86 | subdirectory and run \c qmake and your make tool to build a
|
---|
87 | plugin that integrates the QAxContainer module into \l{Qt
|
---|
88 | Designer}.
|
---|
89 |
|
---|
90 | The ActiveQt modules are part of the \l{Qt Commercial Edition} and
|
---|
91 | the \l{Open Source Versions of Qt}.
|
---|
92 |
|
---|
93 | \sa {QAxContainer Module}, {QAxServer Module}
|
---|
94 | */
|
---|