summaryrefslogtreecommitdiffstats
path: root/dist/changes-3.3.0-b1
blob: d784439eed2b34b3adde092f5dac13989e66d66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
Qt 3.3 introduces many new features as well as many improvements over
the 3.2.x series. For more details, see the online documentation which
is included in this distribution. The documentation is also available
at http://qt.nokia.com/doc/

The Qt version 3.3 series is binary compatible with the 3.2.x series.
Applications compiled for 3.2 will continue to run with 3.3.

****************************************************************************
*			    General					   *
****************************************************************************

Qt library
----------

Qt 3.3 is .NET enabled. This release shows how to use classes
developed with Qt in a .NET environment. It includes an analysis of
the different interoperability infrastructures provided by the .NET
framework. An example demonstrates how to use both a manual approach
with Microsoft's managed extensions to the C++ language, and also
automated solutions based on COM and the ActiveQt framework to reuse
native Qt classes and widgets in .NET projects. To learn more about Qt
and .NET read the "Using Qt objects in Microsoft .NET" walkthrough
found in the ActiveQt framework documentation.

Qt 3.3 now supports IPv6 in addition to IPv4. New functions have been
added for IPv6 support to QSocketDevice, QHostAddress and QDNns.

Qt now includes a new tool class called QLocale. This class converts
between numbers and their string representations in various languages.
QLocale supports the concept of a default locale which allows a locale
to be set globally for the entire application.

Support for new 64bit platforms and compilers has been added for Qt
3.3.  Qt now supports Itanium on both Linux (Intel) and Windows
(VC++). Qt 3.3 now also officially supports FreeBSD.

Qt 3.3 also supports precompiled headers for both Windows and Mac OS
X. To use precompiled headers when compiling your Qt application
simply add PRECOMPH and then specify the header file to precompile in
your .pro file. To learn more about precompiled headers see the
"Using Precompiled Headers" chapter in the qmake User Guide.

Two new database drivers have been added to the SQL module, InterBase
and SQLite. This makes it possible to write database applications that
do not require a database server. SQLite is provided in the Qt 3.3
distribution and can be enabled with either -qt-sql-sqlite or
-plugin-sql-sqlite. The InterBase plugin also works with Firebird, the
open source version of InterBase.

QWidget has a new function setWindowState() which is used to make a
widget maximized, minimized, etc. This allows individual settings for
the minimized/maximized/fullscreen properties.

Support for semi-transparent top-level widgets on Mac OS X and Windows
2000/XP has also been added.

Qt 3.3 includes in addition to this, numerous bug fixes and
improvements. Special thanks goes to KDE for their reports and
suggestions.


Qt/Embedded
-----------

Added support for SNAP graphics drivers from SciTech Software. This
gives access to accelerated drivers for more than 150 graphics
chipsets.


Qt/Mac
------

Added support for Xcode project files in qmake.
Added Tablet support for Mac OS X.
Numerous visual improvements.


Qt/X11
------

Added support for Xft2 client side fonts on X servers without the
RENDER extension.

Added a new configure option (-dlopen-opengl) which will remove the
OpenGL and Xmu library dependencies in the Qt library. The functions
used by Qt in those libraries are resolved manually using dlopen()
when this option is used.

Improved support for the Extended Window Manager Hints.


Qt/Windows
----------

Added support for Windows Server 2003 (Win64/Itanium).


Qt Motif Extension
------------------

Clipboard operations now work between Qt and Motif widgets in the same
application. Click-to-focus works with Motif widgets that are children
of a QMotifWidget.


ActiveQt Extension
------------------

Two new functions, QAxFactory::startServer() and
QAxFactory::stopServer(), can be used to start and stop an
out-of-process ActiveQt server at runtime. The new functions
QAxFactory::serverDirPath() and QAxFactory::serverFilePath() return
the location of the COM server binary. Server binaries no longer
need to implement a main() entry point function. A default
implementation is used for out-of-process servers. IClassFactory2
is supported for the development of licensed components, and
QAxFactory supports the creation of non-visual COM objects. Class
specific information can be provided directly in the C++ class
declaration using the Q_CLASSINFO macro to control how objects and
controls are registered and exposed. New helper classes and macros
are avialable to make it even easier to expose object classes (see the
QAxServer documentation for details).

COM objects developed with ActiveQt are now supported in a wider range
of clients, including Microsoft Office applications and .NET. Examples
that demonstrate how to use the Qt objects from the examples in .NET
languages like C# are included. QStringList is supported as a type,
and QRect, QSize and QPoint are now supported datatypes for control
properties and as reference parameters. Saving the controls to a
storage or stream now includes the version number of the QDataStream
used for the serialization (note that this might break existing
storages).

The QAxContainer library is now static even for shared configurations
of Qt. This simplifies deployment and allows using both QAxServer and
QAxContainer in one project, i.e. an OLE automatable application that
uses COM objects itself. The semantics of QAxBase::setControl() have
been extended to allow creating of COM objects on remote machines via
DCOM, to create controls requiring a license key and to connect to
already running objects. The implementation of QAxBase::dynamicCall()
has been improved to support passing of parameter values directly in
the function string. Three new classes, QAxScript, QAxScriptManager
and QAxScriptEngine, can be used to script COM objects from within Qt
applications using Windows Script Host.

SAFEARRAY(BSTR) parameters are supported as QStringList. Calling COM
object methods with out-parameters of type short is now supported (the
parameters are of type int& in the Qt wrapper), and QVariants used for
out-parameters don't have to be initialized to the expected type.
Calling QByteArray functions in out-of-process controls no longer
returns an error code. The control's client side is set to zero when
the container releases the control.


Qt Designer
-----------

Qt Designer, Qt's visual GUI builder, has received some speed
optimizations, along with minor improvements to the menu editor.


Qt Assistant
------------

Qt Assistant now saves the states of the tab bars between runs. This
enables users to start browsing where they ended their previous
assistant session.

Shortcuts for Find Next (F3) and Find Previous (Shift+F3) have been
implemented.


Compilers
---------

Qt 3.3 adds support for two new compilers. The Intel C++ compiler is
supported on Linux and FreeBSD. GNU gcc is supported on Windows using
MinGW.

Qt 3.3 no longer officially supports the Sun CC 5.0 compiler or the
IRIX MIPSpro o32 mode.


****************************************************************************
*			   Library					   *
****************************************************************************

- QAction
	Added a setDisabled() slot similar to QWidget::setDisabled.
	Added an activate() slot which activates the action and
	executes all connected slots.
	Added showStatusMessage() and whatsThisClicked() signals.

- QButtonGroup
	Added QButtonGroup::selectedId property to allow mapping with
	SQL property sets.

- QCursor
	Added new enum value Qt::BusyCursor.

- QDom
	The QDom classes are now reentrant.

- QEvent
	Added new event type WindowStateChange, obsoleting ShowNormal,
	ShowMinimized, ShowMaximized and ShowFullScreen.

- QHeader
	The sizeChange() signal is emitted when the section sizes are
	adjusted by double clicking.

- QHostAddress
	Added new constructor for IPv6 and new functions
	isIPv6Address() and toIPv6Address(). Obsoleted the functions
	isIp4Addr() and ip4Addr(), replacing them with isIPv4Address()
	and toIPv4Address().

- QListView
	Improved alignment for text in QListViewItems. Right aligned
	text now has the ellipsis on the left.
	Keyboard search now uses the sort column as the column to
	start searching in.
	Improved branch drawing.

- QLocale [new]
	This new tool class converts between numbers and their string
	representations in various languages.

- QMacStyle
	Allow disabling of size constraints.

- QMovie
	Added JNG support.

- QPixmap
	Support full alpha-maps for paletted (8-bit) images.
	Support 16-bit grayscale PNG images with transparency.

- QSocketDevice
	Added setProtocol() and protocol() for IPv6 support.

- QSound
	Windows: Support loop related APIs.

- QSplashScreen
	Less intrusive stay-on-top policy.

- QSql
	Support for InterBase and SQLite.

- QStatusBar
	Draw messages with the foreground() color of the palette,
	rather than with the text() color.

- QString
	Added support for %lc and %ls to sprintf(). %lc takes a
	Unicode character of type ushort, %ls takes a zero-terminated
	array of Unicode characters of type ushort (i.e. const
	ushort*). Also added support for precision (e.g. "%.5s").
	Changed arg() to support "%L1" for localized conversions.

- QStyle
	Add a new primitive element: PE_RubberBand.

- QTextEdit
	Reduced memory consumption by 20 bytes per line.
	Added a getter for the currently set QSyntaxHighlighter.

- QVariant
	Comparison between variants where one of the variants is a
	numeric value will compare on the numeric value. Type casting
	between different variants is more consistent.

- QWidget
	Added setWindowOpacity() and windowOpacity() to support
	transparent top-level widgets on Windows and Mac.
	Added windowState() and setWindowState() to allow individual
	setting of the minimized/maximized/fullscreen properties.

- QWindowsStyle
	Qt supports toggling of the accelerator underlines using the
	Alt-key on Windows 98, 2000 and later. On other platforms this
	change has no effect.