Update changelog - Accessibility
[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 ****************************************************************************
89 *                           General                                        *
90 ****************************************************************************
91
92 General Improvements
93 --------------------
94
95 - The directory structure of the qtbase unit-tests has been reworked to
96   more closely match the directory structure of the code under test.
97   Integration tests have been moved to tests/auto/integrationtests.
98
99 Third party components
100 ----------------------
101
102 -
103
104
105 ****************************************************************************
106 *                          Library                                         *
107 ****************************************************************************
108
109 QtCore
110 ------
111 * drop a bogus QChar::NoCategory enum value; the proper QChar::Other_NotAssigned
112   value is returned for an unassigned codepoints now.
113
114 QtGui
115 -----
116 * Accessibility has been refactored. The hierachy of accessible objects is implemented via
117   proper parent/child functions instead of using navigate which has been deprecated for this purpose.
118   Table and cell interfaces have been added to qaccessible2.h
119
120
121 QtWidgets
122 ---------
123 * QWidget::setInputContext() is removed. Input contexts are now platform
124   specific.
125
126 QtNetwork
127 ---------
128 * QHostAddress::isLoopback() API added. Returns true if the address is
129   one of the IP loopback addresses.
130
131 * QSslCertificate::serialNumber() now always returns the serial number in
132   hexadecimal format.
133
134
135 QtOpenGL
136 --------
137
138 QtScript
139 --------
140
141
142 QTestLib
143 --------
144 * [QTBUG-20615] Autotests can now log test output to multiple destinations
145   and log formats simultaneously.
146
147
148 ****************************************************************************
149 *                          Database Drivers                                *
150 ****************************************************************************
151
152
153 ****************************************************************************
154 *                      Platform Specific Changes                           *
155 ****************************************************************************
156
157 Qt for Linux/X11
158 ----------------
159
160
161 Qt for Windows
162 --------------
163 * Accessibility framework uses IAccessible2
164
165
166 Qt for Mac OS X
167 ---------------
168
169
170 Qt for Embedded Linux
171 ---------------------
172
173
174 Qt for Windows CE
175 -----------------
176
177
178 ****************************************************************************
179 *                      Compiler Specific Changes                           *
180 ****************************************************************************
181
182
183 ****************************************************************************
184 *                          Tools                                           *
185 ****************************************************************************
186
187 - Build System
188
189 - Assistant
190
191 - Designer
192
193 - Linguist
194
195 - rcc
196
197
198 - moc
199
200 * [QTBUG-20785] The moc now has a -b<file> option to #include an additional
201   file at the beginning of the generated file.
202
203
204 - uic
205
206
207 - uic3
208
209
210 - qmake
211
212 * QMAKE_MOC_OPTIONS variable is now available for passing additional parameters
213   to the moc.
214
215
216 - configure
217
218
219 - qtconfig
220
221
222 ****************************************************************************
223 *                          Plugins                                         *
224 ****************************************************************************
225
226
227 ****************************************************************************
228 *                   Important Behavior Changes                             *
229 ****************************************************************************
230