qtbase: Remove QSound.
[profile/ivi/qtbase.git] / dist / changes-5.0.0
1 Some of the changes listed in this file include issue tracking numbers
2 corresponding to tasks in the Qt Bug Tracker:
3
4   http://bugreports.qt.nokia.com/
5
6 Each of these identifiers can be entered in the bug tracker to obtain more
7 information about a particular change.
8
9
10 ****************************************************************************
11 *                       Source incompatible changes                        *
12 ****************************************************************************
13
14
15 - QSslCertificate::subjectInfo() and QSslCertificate::issuerInfo() now
16   return a QStringList instead of a QString
17
18 - QSslCertificate::isValid() has been deprecated. Originally it only checked
19   the certificate dates, but later checking for blacklisting was added. Now
20   there's a more specific QSslCertificate::isBlacklisted() method.
21
22 - Unite clipping support has been removed from QPainter. The alternative is
23   to unite QRegion's and using the result on QPainter.
24
25 - QLibrary::resolve() now returns a function pointer instead of a void
26   pointer.
27
28 - QSslCertificate::alternateSubjectNames() is deprecated (but can be enabled
29   via QT_DISABLE_DEPRECATED_BEFORE), use
30   QSslCertificate::subjectAlternativeNames() instead.
31
32 - QLibraryInfo::buildKey() has been removed. Likewise, the QT_BUILD_KEY
33   preprocessor #define has also been removed. The build-key is obsolete
34   and is no longer necessary.
35
36 - QCoreApplication::translate() will no longer return the source text when
37   the translation is empty. Use lrelease -removeidentical for optimization.
38   
39 - Qt::escape() is deprecated (but can be enabled via
40   QT_DISABLE_DEPRECATED_BEFORE), use QString::toHtmlEscaped() instead.
41
42 - QMetaType::construct() has been renamed to QMetaType::create().
43
44 - QTestLib:
45   * The QTRY_VERIFY and QTRY_COMPARE macros have been moved into QTestLib.
46     These macros formerly lived in tests/shared/util.h but are now provided
47     by including the <QtTest/QtTest> header.
48   * The QTEST_NOOP_MAIN macro has been removed from the API.  If a test is
49     known at compile-time to be inapplicable for a particular build it should
50     be omitted via .pro file logic, or the test should call QSKIP in the
51     initTestCase() method to skip the entire test and report a meaningful
52     explanation in the test log.
53   * The DEPENDS_ON macro has been removed from the API.  This macro did nothing
54     and misled some users to believe that they could make test functions depend
55     on each other or impose an execution order on test functions.
56   * The QSKIP macro no longer has the "mode" parameter, which caused problems
57     for calculating test metrics, as the SkipAll mode hid information about
58     what test data was skipped.  Calling QSKIP in a test function now behaves
59     like SkipSingle -- skipping a non-data-driven test function or skipping
60     only the current data row of a data-driven test function.  Every skipped
61     data row is now reported in the test log.
62
63 - The QSsl::TlsV1 enum value was renamed to QSsl::TlsV1_0 .
64
65 - QAccessible:
66   * Internal QAccessible::State enum value HasInvokeExtension removed
67 - QAccessibleInterface:
68   * The "child" integer parameters have been removed. This moves the api
69     to be closer to IAccessible2.
70     This means several functions lose their integer parameter:
71     text(Text t, int child) -> text(Text t), rect(int child) -> rect()
72     setText(Text t, int child, const QString &text) -> setText(Text t, const QString &text)
73     role(int child) -> role(), state(int child) -> state()
74     relationTo(int child, const QAccessibleInterface *other, int otherChild) ->
75       relationTo(const QAccessibleInterface *other)
76   * Accessible-Action related functions have been removed. QAccessibleInterface
77     subclasses are expected to implement the QAccessibleActionInterface instead.
78     These functions have been removed:
79     QAccessibleInterface::userActionCount, QAccessibleInterface::actionText,
80     QAccessibleInterface::doAction
81 - QAccessibleEvent also loses the child parameter.
82     QAccessibleEvent(Type type, int child) -> QAccessibleEvent(Type type)
83     QAccessibleEvent::child() removed.
84 - QAccessibleActionInterface:
85   * Refactored to be based on action names. All functions have been changed from using
86     int parameters to strings.
87
88 - QSound has been moved from QtGui to QtMultimedia
89
90 ****************************************************************************
91 *                           General                                        *
92 ****************************************************************************
93
94 General Improvements
95 --------------------
96
97 - The directory structure of the qtbase unit-tests has been reworked to
98   more closely match the directory structure of the code under test.
99   Integration tests have been moved to tests/auto/integrationtests.
100
101 Third party components
102 ----------------------
103
104 -
105
106
107 ****************************************************************************
108 *                          Library                                         *
109 ****************************************************************************
110
111 QtCore
112 ------
113 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
114   value is returned for an unassigned codepoints now.
115
116 QtGui
117 -----
118 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
119   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
120   Table and cell interfaces have been added to qaccessible2.h
121
122
123 QtWidgets
124 ---------
125 * QWidget::setInputContext() is removed. Input contexts are now platform
126   specific.
127
128 QtNetwork
129 ---------
130 * QHostAddress::isLoopback() API added. Returns true if the address is
131   one of the IP loopback addresses.
132
133 * QSslCertificate::serialNumber() now always returns the serial number in
134   hexadecimal format.
135
136
137 QtOpenGL
138 --------
139
140 QtScript
141 --------
142
143
144 QTestLib
145 --------
146 * [QTBUG-20615] Autotests can now log test output to multiple destinations
147   and log formats simultaneously.
148
149
150 ****************************************************************************
151 *                          Database Drivers                                *
152 ****************************************************************************
153
154
155 ****************************************************************************
156 *                      Platform Specific Changes                           *
157 ****************************************************************************
158
159 Qt for Linux/X11
160 ----------------
161
162
163 Qt for Windows
164 --------------
165 * Accessibility framework uses IAccessible2
166
167
168 Qt for Mac OS X
169 ---------------
170
171
172 Qt for Embedded Linux
173 ---------------------
174
175
176 Qt for Windows CE
177 -----------------
178
179
180 ****************************************************************************
181 *                      Compiler Specific Changes                           *
182 ****************************************************************************
183
184
185 ****************************************************************************
186 *                          Tools                                           *
187 ****************************************************************************
188
189 - Build System
190
191 - Assistant
192
193 - Designer
194
195 - Linguist
196
197 - rcc
198
199
200 - moc
201
202 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
203   file at the beginning of the generated file.
204
205
206 - uic
207
208
209 - uic3
210
211
212 - qmake
213
214 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
215   to the moc.
216
217
218 - configure
219
220
221 - qtconfig
222
223
224 ****************************************************************************
225 *                          Plugins                                         *
226 ****************************************************************************
227
228
229 ****************************************************************************
230 *                   Important Behavior Changes                             *
231 ****************************************************************************
232