]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt
Correct typo in wxRefCounter description.
[wxWidgets.git] / docs / changes.txt
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame - docs/changes.txt


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 1712.
CommitLineData
70cf18ef
VZ
1-------------------------------------------------------------------------------
2 wxWidgets Change Log
3-------------------------------------------------------------------------------
d643b80e 4
5ec9d741 5INCOMPATIBLE CHANGES SINCE 2.8.x
aae53500
VZ
6================================
7
500b128d
VZ
8
9 Notice that these changes are described in more details in
10 the "Changes Since wxWidgets 2.8" section of the manual,
11 please read it if the explanation here is too cryptic.
12
13
e6d4038a
VZ
14Unicode-related changes
15-----------------------
16
17The biggest changes in wxWidgets 3.0 are the changes due to the merge of the
18old ANSI and Unicode build modes in a single build. See the Unicode overview
19in the manual for more details but here are the most important incompatible
20changes:
21
22- Many wxWidgets functions taking "const wxChar *" have been changed to take
3dac8f8a
VS
23 either "const wxString&" (so that they accept both Unicode and ANSI strings;
24 the argument can't be NULL anymore in this case) or "const char *" (if the
e0e7a341
VS
25 strings are always ANSI; may still be NULL). This change is normally
26 backwards compatible except:
4baf7800
VZ
27
28 a) Virtual functions: derived classes versions must be modified to take
29 "const wxString&" as well to make sure that they continue to override the
30 base class version.
31
32 b) Passing NULL as argument: as NULL can't be unambiguously converted to
33 wxString, in many cases code using it won't compile any more and NULL
0d5ab92f
VZ
34 should be replaced with an empty string.
35
b7aadf25
VZ
36- Functions returning "const wxChar *" were changed as well. Mostly they now
37 return wxString which is then transparently convertible to either "const char
38 *" or "const wchar_t *" but in some cases, notably wxDateTime::ParseXXX(),
39 the returned string could be NULL and so a separate helper class is used. If
40 you obtain compilation errors because of this, you can always correct them by
41 explicitly assigning the function return value to a variable of wanted type.
c398434d
VZ
42 A slightly more intrusive but better solution is to use ParseXXX() version
43 with wxString::const_iterator output parameter which simply returns bool to
44 indicate the parsing success.
0d5ab92f
VZ
45
46- Some structure fields which used to be of type "const wxChar *" (such as
47 wxCmdLineEntryDesc::shortName, longName and description fields) are now of
48 type "const char *", you need to remove wxT() or _T() around the values used
49 to initialize them (which should normally always be ASCII).
e6d4038a 50
50c549b9
VZ
51- wxIPC classes didn't work correctly in Unicode build before, this was fixed
52 but at a price of breaking backwards compatibility: many methods which used
53 to work with "wxChar *" before use "void *" now (some int parameters were
54 also changed to size_t). While wxIPC_TEXT can still be used to transfer 7
55 bit text, the new wxIPC_UTF8TEXT format is used for transferring wxStrings.
f01a77c7
VZ
56 Also notice that connection classes should change the parameter types of
57 their overridden OnExecute() or override a more convenient OnExec() instead.
e6d4038a
VZ
58
59
6f67af05
FM
60wxODBC and contrib libraries removal
61------------------------------------
1e6b2edf
VZ
62
63wxODBC library was unmaintained since several years and we couldn't continue
64supporting it any longer so it was removed. Please use any of the other open
65source ODBC libraries in the future projects.
66
6f67af05
FM
67Also the "applet", "deprecated", "fl", "mmedia" and "plot" contrib libraries
68were removed as they were unmaintained and broken since several years.
69The "gizmos", "ogl", "net" and "foldbar" contribs have been moved to
70wxCode (see http://wxcode.sourceforge.net/complist.php); they are now
71open for futher development by volunteers.
72
73The "stc" and "svg" contribs instead have been moved respectively into a new
74"official" library stc and in the core lib.
75
1e6b2edf 76
b1f3b29c
VZ
77Changes in behaviour not resulting in compilation errors, please read this!
78---------------------------------------------------------------------------
79
466e87bd
VZ
80- Default location of wxFileConfig files has changed under Windows, you will
81 need to update your code if you access these files directly.
82
47a8a4d5
VZ
83- wxWindow::IsEnabled() now returns false if a window parent (and not
84 necessarily the window itself) is disabled, new function IsThisEnabled()
85 with the same behaviour as old IsEnabled() was added.
86
5644933f
VZ
87- Generating wxNavigationKeyEvent events doesn't work any more under wxGTK (and
88 other platforms in the future), use wxWindow::Navigate() or NavigateIn()
89 instead.
90
89064717
VZ
91- Sizers distribute only the extra space between the stretchable items
92 according to their proportions and not all available space. We believe the
93 new behaviour corresponds better to user expectations but if you did rely
94 on the old behaviour you will have to update your code to set the minimal
95 sizes of the sizer items to be in the same proportion as the items
96 proportions to return to the old behaviour.
97
17808a75
VZ
98- wxWindow::Freeze/Thaw() are not virtual any more, if you overrode them in
99 your code you need to override DoFreeze/Thaw() instead now.
100
628e155d
VZ
101- wxCalendarCtrl has native implementation in wxGTK, but it has less features
102 than the generic one. The native implementation is used by default, but you
103 can still use wxGenericCalendarCtrl instead of wxCalendarCtrl in your code if
104 you need the extra features.
105
9c8116f8
VZ
106- wxDocument::FileHistoryLoad() and wxFileHistory::Load() now take const
107 reference to wxConfigBase argument and not just a reference, please update
108 your code if you overrode these functions and change the functions in the
109 derived classes to use const reference as well.
110
a6eac99d
VZ
111- Under MSW wxExecute() arguments are now always properly quoted, as under
112 Unix, and so shouldn't contain quotes unless they are part of the argument.
17808a75 113
c6e4d276
VZ
114- wxDocument::OnNewDocument() doesn't call OnCloseDocument() any more.
115
1d7b600d
VZ
116- If you use wxScrolledWindow::SetTargetWindow() you must implement its
117 GetSizeAvailableForScrollTarget() method, please see its documentation for
118 more details.
119
0e1e143d
FM
120- Processing of pending events now requires a running event loop.
121 Thus initialization code (e.g. showing a dialog) previously done in wxApp::OnRun()
122 or equivalent function should now be done into wxApp::OnEventLoopEnter().
123 See wxApp::OnEventLoopEnter() and wxApp::OnEventLoopExit() docs for more info.
124
f2a18fbe
VZ
125- wxLoadFileSelector() now allows the user to select existing files only.
126
9c61c5b0
VZ
127- Erase background events are now not generated at all when background style is
128 changed. See the updated wxWindow::SetBackgroundStyle() description in the
129 manual for more details.
130
febebac1 131- wxTreeCtrl::GetSelection now asserts if the tree has the wxTR_MULTIPLE style.
bc73d5ae 132 Instead use GetSelections() for multiple items; or if you want only the
febebac1
VZ
133 single item last touched, the new wxTreeCtrl::GetFocusedItem.
134
bc73d5ae
VZ
135- Custom log targets should be updated to override wxLog::DoLogRecord() method
136 instead of DoLog() or DoLogString() and must be updated if they call the base
137 class versions of these functions as this won't work any more; please see the
138 documentation of wxLog for more information.
139
1d7b600d 140
b1f3b29c
VZ
141Changes in behaviour which may result in compilation errors
142-----------------------------------------------------------
143
c1dc9f83
VZ
144- WXWIN_COMPATIBILITY_2_4 doesn't exist any more, please update your code if
145 you still relied on features deprecated since version 2.4
146
ddc0ac4a
VZ
147- wxDC classes hierarchy has changed, if you derived any classes from wxDC you
148 need to review them as wxDC doesn't have any virtual methods any longer and
149 uses delegation instead of inheritance to present different behaviours.
150
8cc208e3 151- wxWindow::ProcessEvent() (and other wxEvtHandler methods inherited by wxWindow)
bca627de
FM
152 has been made protected to prevent wrongly using it instead of correct
153 GetEventHandler()->ProcessEvent().
154 New ProcessWindowEvent() was added for convenience.
3b7fa206 155
c9f78968
VS
156- Return type of wxString::operator[] and wxString::iterator::operator* is no
157 longer wxChar (i.e. char or wchar_t), but wxUniChar. This is not a problem
158 in vast majority of cases because of conversion operators, but it can break
159 code that depends on the result being wxChar.
160
ef0f1387
VS
161- The value returned by wxString::c_str() cannot be casted to non-const char*
162 or wchar_t* anymore. The solution is to use newly added wxString methods
163 char_str() (which returns a buffer convertible to char*) or wchar_str()
164 (which returns a buffer convertible to wchar_t*). These methods are
165 available in wxWidgets 2.8 series beginning with 2.8.4 as well.
166
c9f78968
VS
167- The value returned by wxString::operator[] or wxString::iterator cannot be
168 used in switch statements anymore, because it's a class instance. Code like
169 this won't compile:
170 switch (str[i]) { ... }
171 and has to be replaced with this:
172 switch (str[i].GetValue()) { ... }
173
73ba5ab9
VZ
174- Return type of wxString::c_str() is now a helper wxCStrData struct and not
175 const wxChar*. wxCStrData is implicitly convertible to both "const char *"
176 and "const wchar_t *", so this only presents a problem if the compiler cannot
177 apply the conversion. This can happen in 2 cases:
a6eac99d 178
73ba5ab9
VZ
179 + There is an ambiguity because the function being called is overloaded to
180 take both "const char *" and "const wchar_t *" as the compiler can't choose
181 between them. In this case you may use s.wx_str() to call the function
182 matching the current build (Unicode or not) or s.mb_str() or s.wc_str() to
183 explicitly select narrow or wide version of it.
184
185 Notice that such functions are normally not very common but unfortunately
186 Microsoft decided to extend their STL with standard-incompatible overloads
187 of some functions accepting "const wchar_t *" so you may need to replace
188 some occurrences of c_str() with wx_str() when using MSVC 8 or later.
189
190 + Some compilers, notably Borland C++ and DigitalMars, don't correctly
191 convert operator?: operands to the same type and fail with compilation
192 error instead. This can be worked around by explicitly casting to const
193 wxChar*: wxLogError(_("error: %s"), !err.empty() ? (const wxChar*)err.c_str() : "")
c9f78968 194
52de37c7 195- wxCtime() and wxAsctime() return char*; this is incompatible with Unicode
5bce3e6f 196 build in wxWidgets 2.8 that returned wchar_t*.
52de37c7 197
c9f78968
VS
198- DigitalMars compiler has a bug that prevents it from using
199 wxUniChar::operator bool in conditions and it erroneously reports type
200 conversion ambiguity in expressions such as this:
201 for ( wxString::const_iterator p = s.begin(); *p; ++p )
202 This can be worked around by explicitly casting to bool:
203 for ( wxString::const_iterator p = s.begin(); (bool)*p; ++p )
204
d03dab2a 205- Virtual wxHtmlParser::AddText() takes wxString, not wxChar*, argument now.
5bce3e6f 206
73ba5ab9 207- Functions that took wxChar* arguments that could by NULL in wxWidgets 2.8
d38f70b2 208 are deprecated and passing NULL to them won't compile anymore, wxEmptyString
ab29bb87 209 must be used instead.
d38f70b2 210
de34bb08
VZ
211- wxTmemxxx() functions take either wxChar* or char*, not void*: use memxxx()
212 with void pointers.
213
d03dab2a
VS
214- Removed insecure wxGets() and wxTmpnam() functions.
215
6a4cbac1
VS
216- Removed global GetLine() function from wx/protocol/protocol.h, use
217 wxProtocol::ReadLine() instead.
17808a75 218
c8058a09
JS
219- wxVariant no longer derives from wxObject. wxVariantData also no longer
220 derives from wxObject; instead of using wxDynamicCast with wxVariantData you
221 can use the macro wxDynamicCastVariantData with the same arguments.
6a4cbac1 222
1a8a13ee 223- wxWindow::Next/PrevControlId() don't exist any more as they couldn't be
08f1c27c 224 implemented correctly any longer because automatically generated ids are not
1a8a13ee 225 necessarily allocated consecutively now. Use GetChildren() to find the
08f1c27c
VZ
226 next/previous control sibling instead.
227
500b128d
VZ
228- Calling wxConfig::Write() with an enum value will fail to compile because
229 wxConfig now tries to convert all unknown types to wxString automatically.
230 The simplest solution is to cast the enum value to int.
d03dab2a 231
e98e625c
VZ
232- Several wxImage methods which previously had "long bitmaptype" parameters
233 have been changed to accept "wxBitmapType bitmaptype", please use enum
234 wxBitmapType in your code.
235
763163a8
VZ
236- wxGridCellEditor::EndEdit() signature has changed and it was split in two
237 functions, one still called EndEdit() and ApplyEdit(). See the documentation
238 of the new functions for more details about how grid editors should be
239 written now.
240
241- wxEVT_GRID_CELL_CHANGE event renamed to wxEVT_GRID_CELL_CHANGED and shouldn't
242 be vetoed any more, use the new wxEVT_GRID_CELL_CHANGING event to do it.
243
6e2f3084 244- wxListCtrlCompare function used with wxListCtrl::SortItems() must now declare
b18e2046 245 its third parameter as wxIntPtr and not long (this allows passing pointers
6e2f3084
VZ
246 to it under 64 bit platforms too).
247
8cc208e3
VZ
248- Global wxPendingEvents and wxPendingEventsLocker objects were removed.
249 You may use wxEventLoopBase::SuspendProcessingOfPendingEvents instead of
250 locking wxPendingEventsLocker now.
251
2352862a
VZ
252- wxBitmapButton::GetBitmapXXX() overloads returning non-const wxBitmap
253 references have been removed, modifying the returned bitmaps never worked and
254 now results in compile-time error.
255
34a083c9
VZ
256- wxLogXXX() are now macros, not functions. Because of this calling them with
257 an explicit scope resolution operator ("::wxLogError()") doesn't work any
258 longer, just remove it. Also notice that using them inside an "if" statement
259 without enclosing parentheses results in warnings from g++ with -Wparentheses,
260 add parentheses around the if statement body to work around it.
261
763163a8 262
5ec9d741
VZ
263Deprecated methods and their replacements
264-----------------------------------------
265
13dd765c 266- wxCreateGreyedImage() deprecated, use wxImage::ConvertToGreyscale() instead.
7890307b
VS
267- wxString::GetWriteBuf() and UngetWriteBuf() deprecated, using wxStringBuffer
268 or wxStringBufferLength instead.
d0bc78e2
VZ
269- wxDIRCTRL_SHOW_FILTERS style is deprecated, filters are alwsys shown if
270 specified so this style should simply be removed
724b119a
VZ
271- wxDocManager::MakeDefaultName() replaced by MakeNewDocumentName() and
272 wxDocument::GetPrintableName() with GetUserReadableName() which are simpler
273 to use
288b6107
VS
274- wxXmlProperty class was renamed to wxXmlAttribute in order to use standard
275 terminology. Corresponding wxXmlNode methods were renamed to use
276 "Attribute" instead of "Property" or "Prop" in their names.
022a8a5a
VZ
277- wxConnection::OnExecute() is not formally deprecated yet but new code should
278 use simpler OnExec() version which is called with wxString argument
8cc208e3
VZ
279- Various wxMenuItem methods were deprecated in favour of more consisently
280 named new versions:
281 . GetLabel() is now GetItemLabelText()
282 . GetText() is not GetItemLabel()
283 . GetLabelFromText() is now GetLabelText()
284 . SetText() is now SetItemLabel()
285- wxBrush's, wxPen's SetStyle() and GetStyle() as well as the wxBrush/wxPen
286 ctor now take respectively a wxBrushStyle and a wxPenStyle value instead of a
287 plain "int style"; use the new wxBrush/wxPen style names (wxBRUSHSTYLE_XXX
288 and wxPENSTYLE_XXX) instead of the old deprecated wxXXX styles.
e557577d
VZ
289- EVT_GRID_CELL_CHANGE was deprecated, use EVT_GRID_CELL_CHANGED instead if you
290 don't veto the event in its handler and EVT_GRID_CELL_CHANGING if you do.
628e155d
VZ
291- EVT_CALENDAR_DAY event has been deprecated, use EVT_CALENDAR_SEL_CHANGED.
292- EVT_CALENDAR_MONTH and EVT_CALENDAR_YEAR events are deprecated,
293 use EVT_CALENDAR_PAGE_CHANGED which replaces both of them.
294- wxCalendarCtrl::EnableYearChange() and wxCAL_NO_YEAR_CHANGE are deprecated.
fdaad94e
VZ
295 There is no replacement for this functionality, it is being dropped as it is
296 not available in native wxCalendarCtrl implementations.
297- wxDC::SetClippingRegion(const wxRegion&) overload is deprecated as it used
298 different convention from the other SetClippingRegion() overloads: wxRegion
299 passed to it was interpreted in physical, not logical, coordinates. Replace
300 it with SetDeviceClippingRegion() if this was the correct thing to do in your
301 code.
053ac76f 302- wxTE_AUTO_SCROLL style is deprecated as it's always on by default anyhow.
8cc208e3
VZ
303- wxThreadHelper::Create() has been renamed to CreateThread which has a better
304 name for a mix-in class, and allows setting the thread type.
bca627de
FM
305- wxDos2UnixFilename, wxUnix2DosFilename, wxStripExtension, wxGetTempFileName,
306 wxExpandPath, wxContractPath, wxRealPath, wxCopyAbsolutePath, wxSplitPath
307 were deprecated in favour of wxFileName methods. See docs for more info.
8cc208e3
VZ
308- wxEvtHandler::TryValidator/Parent() are deprecated, override the new and
309 documented TryBefore/After() methods if you used to override these ones.
e5cfb314
VZ
310- wxGetMultipleChoices() is deprecated, use wxGetSelectedChoices() which has
311 the same signature but returns -1 and not 0 if the dialog was cancelled.
39cdc95f
FM
312- building the windows which are placed inside wxStaticBoxes as siblings of the
313 wxStaticBox is still allowed but it's deprecated as it gives some problems
314 on some ports (e.g. wxGTK).
315 You should now create windows placed inside a wxStaticBox as children of
316 the static box itself.
c1ea6afb
VZ
317- wxMouseState::{Left,Middle,Right}Down() were renamed to XXXIsDown() for
318 consistency with wxMouseEvent and the old names were deprecated.
319
41ae85f8 320
5ec9d741
VZ
321Major new features in this release
322----------------------------------
323
9135f74e
VZ
324- wxWidgets is now always built with Unicode support but provides the same
325 simple (i.e. "char *"-tolerant) API as was available in ANSI build in the
326 past.
327
328- wxWidgets may now use either wchar_t (UTF-16/32) or UTF-8 internally,
329 depending on what is optimal for the target platform.
330
058f225a
VZ
331- New propgrid library containing wxPropertyGrid and related classes.
332
333- Many enhancements to wxDataViewCtrl.
1c4293cb 334
89ff7d64
VZ
335- Event loops, timers and sockets can now be used in wxBase, without GUI.
336
3c778901
VZ
337- Events can now be connected to any functor, not necessarily a method of
338 wxEvtHandler-derived class. The compile-time safety was also improved.
339
89ff7d64
VZ
340- Documentation for wxWidgets has been converted from LaTex to C++ headers
341 with Doxygen comments and significantly improved in the process (screenshots
342 of various controls were added, more identifiers are now linked to their
343 definition &c). Any reports about inaccuracies in the documentation are
344 welcome (and due to using the simple Doxygen syntax it is now easier than
345 ever to submit patches correcting them! :-)
6f8dd114 346
0fa541e8
VZ
347- Support for persistent objects automatically saving and restoring their state
348 was added.
349
12dc0a01 350
ae901b23
VZ
3512.9.1:
352------
353
3aaaf1aa
VZ
354All:
355
72a7c559 356- Added wxStd{Input,Output}Stream classes (Jonathan Liu).
1c7a6772 357- Include port number in host header in wxHTTP (Marcin 'Malcom' Malich).
f1a73c6a 358- Added wxTempFile::Flush().
4e00b908 359- Added support for wxLongLong and wxULongLong in wxVariant.
dbe0872f 360- Added wxVector::swap().
acad886c
VZ
361- Many wxLog improvements:
362 * wxLogXXX() functions are now thread-safe.
363 * Log levels can now be set independently for different log components.
364 * wxLog::DoLogRecord() has access to the location of the log message
365 (file, line and function name) and id of the thread which generated it.
366 * SetThreadActiveTarget() allows to set up thread-specific log targets.
1c7a6772
VZ
367
368All (GUI):
369
e5d05b90 370- Added support for showing bitmaps in wxButton.
6528a7f1 371- wxWindow::SetAutoLayout() now works for all windows, not just panels.
ef18e792 372