add a possibility to disable individual grid rows/columns resizing
[wxWidgets.git] / docs / changes.txt
1 -------------------------------------------------------------------------------
2                              wxWidgets Change Log
3 -------------------------------------------------------------------------------
4
5 INCOMPATIBLE CHANGES SINCE 2.8.x
6 ================================
7
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
14 Unicode-related changes
15 -----------------------
16
17 The biggest changes in wxWidgets 3.0 are the changes due to the merge of the
18 old ANSI and Unicode build modes in a single build. See the Unicode overview
19 in the manual for more details but here are the most important incompatible
20 changes:
21
22 - Many wxWidgets functions taking "const wxChar *" have been changed to take
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
25   strings are always ANSI; may still be NULL). This change is normally
26   backwards compatible except:
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
34      should be replaced with an empty string.
35
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.
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.
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).
50
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.
56   Also notice that connection classes should change the parameter types of
57   their overridden OnExecute() or override a more convenient OnExec() instead.
58
59
60 wxODBC and contrib libraries removal
61 ------------------------------------
62
63 wxODBC library was unmaintained since several years and we couldn't continue
64 supporting it any longer so it was removed. Please use any of the other open
65 source ODBC libraries in the future projects.
66
67 Also the "applet", "deprecated", "fl", "mmedia" and "plot" contrib libraries
68 were removed as they were unmaintained and broken since several years.
69 The "gizmos", "ogl", "net" and "foldbar" contribs have been moved to
70 wxCode (see http://wxcode.sourceforge.net/complist.php); they are now
71 open for futher development by volunteers.
72
73 The "stc" and "svg" contribs instead have been moved respectively into a new
74 "official" library stc and in the core lib.
75
76
77 Changes in behaviour not resulting in compilation errors, please read this!
78 ---------------------------------------------------------------------------
79
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
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
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
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
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
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
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
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.
113
114 - wxDocument::OnNewDocument() doesn't call OnCloseDocument() any more.
115
116 - If you use wxScrolledWindow::SetTargetWindow() you must implement its
117   GetSizeAvailableForScrollTarget() method, please see its documentation for
118   more details.
119
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
125
126 Changes in behaviour which may result in compilation errors
127 -----------------------------------------------------------
128
129 - WXWIN_COMPATIBILITY_2_4 doesn't exist any more, please update your code if
130   you still relied on features deprecated since version 2.4
131
132 - wxDC classes hierarchy has changed, if you derived any classes from wxDC you
133   need to review them as wxDC doesn't have any virtual methods any longer and
134   uses delegation instead of inheritance to present different behaviours.
135
136 - wxWindow::ProcessEvent() (and other wxEvtHandler methods inherited by wxWindow)
137   has been made protected to prevent wrongly using it instead of correct
138   GetEventHandler()->ProcessEvent().
139   New ProcessWindowEvent() was added for convenience.
140
141 - Return type of wxString::operator[] and wxString::iterator::operator* is no
142   longer wxChar (i.e. char or wchar_t), but wxUniChar. This is not a problem
143   in vast majority of cases because of conversion operators, but it can break
144   code that depends on the result being wxChar.
145
146 - The value returned by wxString::c_str() cannot be casted to non-const char*
147   or wchar_t* anymore. The solution is to use newly added wxString methods
148   char_str() (which returns a buffer convertible to char*) or wchar_str()
149   (which returns a buffer convertible to wchar_t*). These methods are
150   available in wxWidgets 2.8 series beginning with 2.8.4 as well.
151
152 - The value returned by wxString::operator[] or wxString::iterator cannot be
153   used in switch statements anymore, because it's a class instance. Code like
154   this won't compile:
155      switch (str[i]) { ... }
156   and has to be replaced with this:
157      switch (str[i].GetValue()) { ... }
158
159 - Return type of wxString::c_str() is now a helper wxCStrData struct and not
160   const wxChar*. wxCStrData is implicitly convertible to both "const char *"
161   and "const wchar_t *", so this only presents a problem if the compiler cannot
162   apply the conversion. This can happen in 2 cases:
163
164   + There is an ambiguity because the function being called is overloaded to
165     take both "const char *" and "const wchar_t *" as the compiler can't choose
166     between them. In this case you may use s.wx_str() to call the function
167     matching the current build (Unicode or not) or s.mb_str() or s.wc_str() to
168     explicitly select narrow or wide version of it.
169
170     Notice that such functions are normally not very common but unfortunately
171     Microsoft decided to extend their STL with standard-incompatible overloads
172     of some functions accepting "const wchar_t *" so you may need to replace
173     some occurrences of c_str() with wx_str() when using MSVC 8 or later.
174
175   + Some compilers, notably Borland C++ and DigitalMars, don't correctly
176     convert operator?: operands to the same type and fail with compilation
177     error instead. This can be worked around by explicitly casting to const
178     wxChar*: wxLogError(_("error: %s"), !err.empty() ? (const wxChar*)err.c_str() : "")
179
180 - wxCtime() and wxAsctime() return char*; this is incompatible with Unicode
181   build in wxWidgets 2.8 that returned wchar_t*.
182
183 - DigitalMars compiler has a bug that prevents it from using
184   wxUniChar::operator bool in conditions and it erroneously reports type
185   conversion ambiguity in expressions such as this:
186      for ( wxString::const_iterator p = s.begin(); *p; ++p )
187   This can be worked around by explicitly casting to bool:
188      for ( wxString::const_iterator p = s.begin(); (bool)*p; ++p )
189
190 - Virtual wxHtmlParser::AddText() takes wxString, not wxChar*, argument now.
191
192 - Functions that took wxChar* arguments that could by NULL in wxWidgets 2.8
193   are deprecated and passing NULL to them won't compile anymore, wxEmptyString
194   must be used instead.
195
196 - wxTmemxxx() functions take either wxChar* or char*, not void*: use memxxx()
197   with void pointers.
198
199 - Removed insecure wxGets() and wxTmpnam() functions.
200
201 - Removed global GetLine() function from wx/protocol/protocol.h, use
202   wxProtocol::ReadLine() instead.
203
204 - wxVariant no longer derives from wxObject. wxVariantData also no longer
205   derives from wxObject; instead of using wxDynamicCast with wxVariantData you
206   can use the macro wxDynamicCastVariantData with the same arguments.
207
208 - wxWindow::Next/PrevControlId() don't exist any more as they couldn't be
209   implemented correctly any longer because automatically generated ids are not
210   necessarily allocated consecutively now. Use GetChildren() to find the
211   next/previous control sibling instead.
212
213 - Calling wxConfig::Write() with an enum value will fail to compile because
214   wxConfig now tries to convert all unknown types to wxString automatically.
215   The simplest solution is to cast the enum value to int.
216
217 - Several wxImage methods which previously had "long bitmaptype" parameters
218   have been changed to accept "wxBitmapType bitmaptype", please use enum
219   wxBitmapType in your code.
220
221 - wxGridCellEditor::EndEdit() signature has changed and it was split in two
222   functions, one still called EndEdit() and ApplyEdit(). See the documentation
223   of the new functions for more details about how grid editors should be
224   written now.
225
226 - wxEVT_GRID_CELL_CHANGE event renamed to wxEVT_GRID_CELL_CHANGED and shouldn't
227   be vetoed any more, use the new wxEVT_GRID_CELL_CHANGING event to do it.
228
229 - wxListCtrlCompare function used with wxListCtrl::SortItems() must now declare
230   its third parameter as wxIntPtr and not long (this allows passing pointers
231   to it under 64 bit platforms too).
232
233 - Global wxPendingEvents and wxPendingEventsLocker objects were removed.
234   You may use wxEventLoopBase::SuspendProcessingOfPendingEvents instead of
235   locking wxPendingEventsLocker now.
236
237
238 Deprecated methods and their replacements
239 -----------------------------------------
240
241 - wxCreateGreyedImage() deprecated, use wxImage::ConvertToGreyscale() instead.
242 - wxString::GetWriteBuf() and UngetWriteBuf() deprecated, using wxStringBuffer
243   or wxStringBufferLength instead.
244 - wxDIRCTRL_SHOW_FILTERS style is deprecated, filters are alwsys shown if
245   specified so this style should simply be removed
246 - wxDocManager::MakeDefaultName() replaced by MakeNewDocumentName() and
247   wxDocument::GetPrintableName() with GetUserReadableName() which are simpler
248   to use
249 - wxXmlProperty class was renamed to wxXmlAttribute in order to use standard
250   terminology. Corresponding wxXmlNode methods were renamed to use
251   "Attribute" instead of "Property" or "Prop" in their names.
252 - wxConnection::OnExecute() is not formally deprecated yet but new code should
253   use simpler OnExec() version which is called with wxString argument
254 - Various wxMenuItem methods were deprecated in favour of more consisently
255   named new versions:
256     . GetLabel() is now GetItemLabelText()
257     . GetText() is not GetItemLabel()
258     . GetLabelFromText() is now GetLabelText()
259     . SetText() is now SetItemLabel()
260 - wxBrush's, wxPen's SetStyle() and GetStyle() as well as the wxBrush/wxPen
261   ctor now take respectively a wxBrushStyle and a wxPenStyle value instead of a
262   plain "int style"; use the new wxBrush/wxPen style names (wxBRUSHSTYLE_XXX
263   and wxPENSTYLE_XXX) instead of the old deprecated wxXXX styles.
264 - EVT_GRID_CELL_CHANGE was deprecated, use EVT_GRID_CELL_CHANGED instead if you
265   don't veto the event in its handler and EVT_GRID_CELL_CHANGING if you do.
266 - EVT_CALENDAR_DAY event has been deprecated, use EVT_CALENDAR_SEL_CHANGED.
267 - EVT_CALENDAR_MONTH and EVT_CALENDAR_YEAR events are deprecated,
268   use EVT_CALENDAR_PAGE_CHANGED which replaces both of them.
269 - wxCalendarCtrl::EnableYearChange() and wxCAL_NO_YEAR_CHANGE are deprecated.
270   There is no replacement for this functionality, it is being dropped as it is
271   not available in native wxCalendarCtrl implementations.
272 - wxDC::SetClippingRegion(const wxRegion&) overload is deprecated as it used
273   different convention from the other SetClippingRegion() overloads: wxRegion
274   passed to it was interpreted in physical, not logical, coordinates. Replace
275   it with SetDeviceClippingRegion() if this was the correct thing to do in your
276   code.
277 - wxTE_AUTO_SCROLL style is deprecated as it's always on by default anyhow.
278 - wxThreadHelper::Create() has been renamed to CreateThread which has a better
279   name for a mix-in class, and allows setting the thread type.
280 - wxDos2UnixFilename, wxUnix2DosFilename, wxStripExtension, wxGetTempFileName,
281   wxExpandPath, wxContractPath, wxRealPath, wxCopyAbsolutePath, wxSplitPath
282   were deprecated in favour of wxFileName methods. See docs for more info.
283 - wxEvtHandler::TryValidator/Parent() are deprecated, override the new and
284   documented TryBefore/After() methods if you used to override these ones.
285 - wxGetMultipleChoices() is deprecated, use wxGetSelectedChoices() which has
286   the same signature but returns -1 and not 0 if the dialog was cancelled.
287 - building the windows which are placed inside wxStaticBoxes as siblings of the
288   wxStaticBox is still allowed but it's deprecated as it gives some problems
289   on some ports (e.g. wxGTK).
290   You should now create windows placed inside a wxStaticBox as children of
291   the static box itself.
292
293 Major new features in this release
294 ----------------------------------
295
296 - wxWidgets is now always built with Unicode support but provides the same
297   simple (i.e. "char *"-tolerant) API as was available in ANSI build in the
298   past.
299
300 - wxWidgets may now use either wchar_t (UTF-16/32) or UTF-8 internally,
301   depending on what is optimal for the target platform.
302
303 - New propgrid library containing wxPropertyGrid and related classes.
304
305 - Many enhancements to wxDataViewCtrl.
306
307 - Event loops, timers and sockets can now be used in wxBase, without GUI.
308
309 - Events can now be connected to any functor, not necessarily a method of
310   wxEvtHandler-derived class. The compile-time safety was also improved.
311
312 - Documentation for wxWidgets has been converted from LaTex to C++ headers
313   with Doxygen comments and significantly improved in the process (screenshots
314   of various controls were added, more identifiers are now linked to their
315   definition &c). Any reports about inaccuracies in the documentation are
316   welcome (and due to using the simple Doxygen syntax it is now easier than
317   ever to submit patches correcting them! :-)
318
319 - Support for persistent objects automatically saving and restoring their state
320   was added.
321
322
323 2.9.1:
324 ------
325
326 All:
327
328 - Include port number in host header in wxHTTP (Marcin 'Malcom' Malich).
329
330 All (GUI):
331
332 - wxGrid: add possibility to prevent resizing of individual rows/columns.
333 - wxHTML: add support for table borders width (Laurent Humbertclaude).
334
335 i18n:
336
337 - Korean translations added (Sungkee Jung).
338 - Romanian translations added (Manuel Ciosici).
339
340
341 2.9.0
342 -----
343
344 All:
345
346 - Added (experimental) IPv6 support to wxSocket (Arcen).
347 - Cleaned up wxURI and made it Unicode-friendly.
348 - Add support for wxExecute(wxEXEC_ASYNC) in wxBase (Lukasz Michalski).
349 - Added wxXLocale class and xlocale-like functions using it.
350 - Allow loading message catalogs from wxFileSystem (Axel Gembe).
351 - Added wxMessageQueue class for inter-thread communications
352 - Use UTF-8 for Unicode data in wxIPC classes (Anders Larsen)
353 - Added support for user-defined types to wxConfig (Marcin Wojdyr).
354 - Added numeric options support to wxCmdLineParser (crjjrc)
355 - Added wxJoin() and wxSplit() functions (Francesco Montorsi).
356 - Added wxDateTime::FormatISOCombined() and ParseISODate/Time/Combined()
357 - Added wxMutex::LockTimeout() (Aleksandr Napylov).
358 - Added wxMemoryInputStream(wxInputStream&) ctor (Stas Sergeev).
359 - Implemented wxMemoryInputStream::CanRead().
360 - Implemented wxMemoryFSHandler::FindFirst/Next().
361 - Added wxEventLoop::DispatchTimeout().
362 - Added wxZlibStream::SetDictionary() (Axel Gembe).
363 - Added wxEXEC_BLOCK flag (Hank Schultz).
364 - Add support for wxStream-derived classes to wxRTTI (Stas Sergeev).
365 - Added wxStreamBuffer::Truncate() (Stas Sergeev).
366 - Allow using  wxEventLoop in console applications (Lukasz Michalski).
367 - Added functions for Base64 en/decoding (Charles Reimers).
368 - Added support for binary data to wxConfig (Charles Reimers).
369 - Added functions for atomically inc/decrementing integers (Armel Asselin).
370 - wxLogInterposer has been added to replace wxLogPassThrough and new
371   wxLogInterposerTemp was added.
372 - Added support for broadcasting to UDP sockets (Andrew Vincent).
373 - Documentation now includes the wx library in which each class is defined.
374 - wxrc --gettext now generates references to source .xrc files (Heikki
375   Linnakangas).
376 - wxVariant::Unshare allows exclusive allocation of data that must be shared,
377   if the wxVariantData::Clone function is implemented.
378 - Added wxWeakRef<T>, wxScopedPtr<T>, wxScopedArray<T>, wxSharedPtr<T> templates
379   and renamed old wx/ptr_{scpd,shrd}.h headers to wx/scoped{ptr,array}.h and
380   wx/sharedptr.h (but old headers are still provided for compatibility).
381 - Added wxVector<T> class templates
382 - Added wxON_BLOCK_EXIT_SET() and wxON_BLOCK_EXIT_NULL() to wx/scopeguard.h.
383 - Added wxEvtHandler::QueueEvent() replacing AddPendingEvent() and
384   wxQueueEvent() replacing wxPostEvent().
385 - wxString now uses std::[w]string internally by default, meaning that it is
386   now thread-safe if the standard library provided with your compiler is.
387 - Added wxCmdLineParser::AddUsageText() (Marcin 'Malcom' Malich).
388 - Fix reading/writing UTF-7-encoded text streams.
389 - Corrected bug in wxTimeSpan::IsShorterThan() for equal time spans.
390 - Use std::unordered_{map,set} for wxHashMap/Set if available (Jan van Dijk).
391 - Added wxString::Capitalize() and MakeCapitalized().
392 - Added wxArray::swap().
393 - Added wxSHUTDOWN_LOGOFF and wxSHUTDOWN_FORCE wxShutdown() flags (troelsk).
394 - Added wxSocket::ShutdownOutput().
395 - Handle exceptions thrown from overridden wxView::OnCreate() gracefully.
396 - Added wxPATH_RMDIR_FULL/RECURSIVE wxFileName::Rmdir() flags (Marcin Malich).
397 - Added wxStandardPaths::GetAppDocumentsDir().
398 - Added wx-prefixed versions of DECLARE_NO_{COPY,ASSIGN}_CLASS macros.
399 - Added wxFileName::ReplaceEnvVariable and wxFileName::ReplaceHomeDir.
400 - Added wxProtocol::SetDefaultTimeout(); the default timeout for both wxHTTP and wxFTP
401   protocols is 60 seconds.
402 - Added wxStrnlen() for safe computation of string length.
403 - Added wxImage::Clear() (troelsk).
404 - Added wxLog::Log().
405 - Added wxProtocolLog and use it in wxFTP.
406 - Added wxXmlResource::GetResourceNode().
407 - Optimize wxString::Replace() to use an O(N) algorithm (Kuang-che Wu).
408 - Added support of %l format specifier to wxDateTime::ParseFormat().
409 - wxImage handlers can now support multiple extensions (Ivan Krestinin).
410 - Added wxFileName::StripExtension() (troelsk).
411 - Added wxLOCALE_DATE/TIME_FMT support to wxLocale::GetInfo().
412
413 All (Unix):
414
415 - Added wx-config --optional-libs command line option (John Labenski).
416 - Noticeably (by a factor of ~150) improve wxIPC classes performance.
417 - Configure options --with-opengl and --enable-mediactrl now default to "auto":
418   if OpenGL and GStreamer libraries are available the "gl" and "media" wx libraries
419   are automatically built.
420
421 All (GUI):
422
423 - Added wxDataViewCtrl class and helper classes.
424 - Integrated wxPropertyGrid in wxWidgets itself (Jaakko Salli).
425 - Provide native implementation of wxCalendarCtrl under wxMSW and wxGTK.
426 - Added wxHeaderCtrl and allow using it in wxGrid.
427 - Added wxRearrangeList, wxRearrangeCtrl and wxRearrangeDialog.
428 - Added {wxTextCtrl,wxComboBox}::AutoComplete() and AutoCompleteFileNames().
429 - Added wxH[V]ScrolledWindow (Brad Anderson, Bryan Petty).
430 - Added wxNotificationMessage class for non-intrusive notifications.
431 - Added wxWindow::Show/HideWithEffect().
432 - Added wxWrapSizer (Arne Steinarson).
433 - Added wxSpinCtrlDouble (John Labenski).
434 - Support custom labels in wxMessageDialog (Gareth Simpson for wxMac version).
435 - Added wxScrolledWindow::ShowScrollbars().
436 - Also added wxCANCEL_DEFAULT to wxMessageDialog.
437 - Allow copying text in the log dialogs.
438 - Added multisample (anti-aliasing) support to wxGLCanvas (Olivier Playez).
439 - Added wxEVT_COMMAND_COMBOBOX_DROPDOWN/CLOSEUP events (Igor Korot).
440 - Added wxCAL_SHOW_WEEK_NUMBERS wxCalendarCtrl style (Sören Meyer-Eppler).
441 - Initialize wx{Client,Paint,Window}DC with fonts/colours of its window.
442 - Added wxNativeContainerWindow to allow embedding wx into native windows.
443 - Added custom controls support to wxFileDialog (Diaa Sami and Marcin Wojdyr).
444 - Added wxDC::StretchBlit() for wxMac and wxMSW (Vince Harron).
445 - Added support for drop down toolbar buttons (Tim Kosse).
446 - Added support for labels for toolbar controls (Vince Harron).
447 - Added wxMessageDialog::SetMessage() and SetExtendedMessage().
448 - Added wxListCtrl::Set/GetColumnsOrder() (Yury Voronov).
449 - Added wxTextEntry::SetHint().
450 - Made wxLogWindow thread-safe (Barbara Maren Winkler).
451 - Added wxWindow::AlwaysShowScrollbars() (Julian Scheid).
452 - Added wxMouseEvent::GetClickCount() (Julian Scheid).
453 - Added wxBG_STYLE_TRANSPARENT background style (Julian Scheid).
454 - Added support for drop-down toolbar buttons to XRC.
455 - Added XRCSIZERITEM() macro for obtaining sizers from XRC (Brian Vanderburg II).
456 - New and improved wxFileCtrl (Diaa Sami and Marcin Wojdyr).
457 - Added wxEventBlocker class (Francesco Montorsi).
458 - Added wxFile/DirPickerCtrl::Get/SetFile/DirName() (Francesco Montorsi).
459 - Added wxSizerFlags::Top() and Bottom().
460 - Fixed tab-related drawing and hit-testing bugs in wxRichTextCtrl.
461 - Implemented background colour in wxRichTextCtrl.
462 - Fixed crashes in helpview when opening a file.
463 - Set locale to the default in all ports, not just wxGTK.
464 - Added wxJoystick::GetButtonState/Position() (Frank C Szczerba).
465 - Added wxGridUpdateLocker helper class (Evgeniy Tarassov).
466 - Support wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize() (Evgeniy Tarassov).
467 - Added wxWindow::NavigateIn() in addition to existing Navigate().
468 - Add support for <data> tags to wxrc.
469 - Support wxAPPLY and wxCLOSE in CreateStdDialogButtonSizer() (Marcin Wojdyr).
470 - Show standard options in wxCmdLineParser usage message (Francesco Montorsi).
471 - Added wxRect::operator+ (union) and * (intersection) (bdonner).
472 - Added support for two auxiliary mouse buttons to wxMouseEvent (Chris Weiland).
473 - Added wxToolTip::SetAutoPop() and SetReshow() (Jan Knepper).
474 - Added wxTaskBarIcon::Destroy().
475 - Added XRC handler for wxSearchCtrl (Sander Berents).
476 - Read image resolution from TIFF, JPEG and BMP images (Maycon Aparecido Gasoto).
477 - Add support for reading alpha data from TIFF images.
478 - Added wxSYS_DCLICK_TIME system metric constant (Arne Steinarson).
479 - Added wxApp::Get/SetAppDisplayName() (Brian A. Vanderburg II).
480 - Added wxWindow::GetPopupMenuSelectionFromUser() (Arne Steinarson).
481 - Implemented wxTreeCtrl::GetPrevVisible() in the generic version and made the
482   behaviour of GetNextSibling() consistent between wxMSW and generic versions.
483 - Merged wxRichTextAttr and wxTextAttrEx into wxTextAttr, and added a font table
484   to wxRichTextBuffer to reduce wxFont consumption and increase performance.
485 - Optimize wxGenericTreeCtrl::Collapse/ExpandAllChildren()
486   (Szczepan Holyszewski).
487 - Added <scrollrate> parameter to wxScrolledWindow XRC handler.
488 - Added support for automatic dialog scrolling, via the new
489   wxDialogLayoutAdapter class and various new wxDialog functions. See the
490   topic "Automatic Scrolling Dialogs" in the manual for further details.
491 - Added support for resizing wxWizard bitmaps to the current page height,
492   via SetBitmapPlacement, SetBitmapBackgroundColour and SetMinimumBitmapWidth.
493   Also made it easier to derive from wxWizard and override behaviour.
494 - Made wxSizer::Fit() set the client size of the target window.
495 - Add support for wxDatePickerCtrl in wxGenericValidator (Herry Ayen Yang)
496 - Added wxWindow::HasFocus().
497 - Added wxGLCanvas::IsDisplaySupported().
498 - Added wxApp::SetNativeTheme() (Stefan H.).
499 - Made wxSpinCtrl::Reparent() in MSW and generic versions (Angelo Mottola).
500 - Freeze() and Thaw() now recursively freeze/thaw the children too.
501 - Generalized wxScrolledWindow into wxScrolled<T> template that can derive
502   from any window class, not just wxPanel.
503 - Allow having menu separators with ids != wxID_SEPARATOR (Jeff Tupper)
504 - Fix appending items to sorted wxComboCtrl after creation (Jaakko Salli)
505 - Don't blit area larger than necessary in wxBufferedDC::UnMask (Liang Jian)
506 - Fixed wxPixelData<wxImage> compilation (Leonardo Fernandes).
507 - Added wxImage::GetType() (troelsk).
508 - Added wxGenericStaticBitmap suitable for display of large bitmaps.
509 - Support wxListCtrl::GetViewRect() in report view too.
510 - Implement wxListCtrl::GetSubItemRect() in generic version (David Barnard).
511 - Added wxVListBox::GetItemRect() (Javier Urien).
512 - Show busy cursor in wxLaunchDefaultBrowser and add wxBROWSER_NOBUSYCURSOR.
513 - Added wxFlexGridSizer::Is{Row,Col}Growable() (Marcin Wojdyr).
514 - Added "enabled" and "hidden" attributes to radio box items in XRC.
515 - wxWindow::IsBeingDeleted() now returns true not only if the window itself is
516   marked for destruction but also if any of its parent windows are.
517 - Improved drawing of the hint during column move in wxGrid (Santo Pfingsten).
518 - Add wxGridSelectRowsOrColumns selection mode to wxGrid.
519 - Add wxEVT_GRID_CELL_CHANGING event matching wxEVT_GRID_CELL_CHANGED.
520 - Get/HasModifiers() of wxKeyEvent are now also available in wxMouseEvent.
521 - Provide new/old cell value in wxEVT_GRID_CELL_CHANGING/CHANGED events.
522 - Added wxArtProvider::GetNativeSizeHint(); GetSizeHint() as well as
523   GetNativeSizeHint() now return more sensible values in wxMSW and wxMac and
524   no longer return bogus values.
525 - Added wxControl::SetLabelText() and EscapeMnemonics().
526 - Added support for wxFILTER_EMPTY and wxFILTER_DIGITS styles to wxTextValidator;
527   added also the SetCharIncludes() and SetCharExcludes() utilities.
528 - Added wxIMAGE_OPTION_PNG_FILTER and many wxIMAGE_OPTION_PNG_COMPRESSION_* options
529   to wxImage and wxPNGHandler to allow for custom compression levels when saving PNGs
530   (Perdana Panduwana)
531 - Added GetValue(), GetRange(), GetMessage() functions to wxProgressDialog
532 - Moved yield functions to wxEventLoopBase and implemented for wxMSW and wxGTK
533   a selective wxEventLoopBase::YieldFor() function.
534   Added also wxEventLoopBase::IsYielding to help cure re-entrancy problems with Yield().
535 - Render <th> element contents in bold in wxHTML.
536 - Added wxGrid::{Set,Get}{Row,Col}Sizes() methods (Andrey Putrin).
537 - Add support for wxSP_WRAP in the generic version of wxSpinCtrlDouble.
538 - Add alignment flags support to wxSpinCtrl[Double] (Andrew Radke).
539 - Added wxGetSelectedChoices() replacing wxGetMultipleChoices() (Kolya Kosenko).
540 - Check whether document fits into page horizontally in wxHtmlPrintout, see the
541   new CheckFit() method for more information.
542 - Allow reading GIFs with incorrectly specified animation size.
543 - Return number of frames in animated GIF from wxGIFHandler::GetImageCount().
544
545 wxGTK:
546
547 - Support for markup and ellipsization in wxStaticText (Francesco Montorsi).
548 - Ellipsize long strings in wxStatusBar (Francesco Montorsi)
549 - Native implementation for wxHyperlinkCtrl (Francesco Montorsi).
550 - Native keyboard navigation implementation.
551 - Added wxCB_SORT support to wxComboBox (Evgeniy Tarassov).
552 - Don't overwrite primary selection with clipboard and vice versa.
553 - Implemented support for underlined fonts in wxStaticText.
554 - wxTopLevelWindow::SetSizeHints size increments now work.
555 - wxTopLevelWindow::GetSize() returns the size including the WM decorations.
556 - wxTopLevelWindow::GetClientSize() returns 0x0 when the window is minimized.
557 - Added support for colour cursors (Pascal Monasse).
558 - Pass current control text to EVT_TEXT handler for wxSpinCtrl (John Ratliff).
559 - Added gtk.tlw.can-set-transparency system option.
560 - Added support for GTK+ print backend
561 - Fix changing font/colour of label in buttons with images (Marcin Wojdyr).
562 - Fix wxDC::Blit() support for user scale and source offset (Marcin Wojdyr).
563
564 wxMac:
565
566 - Better IconRef support (Alan Shouls).
567 - Fix duplicate (empty) help menu in non-English programs (Andreas Jacobs).
568 - Allow accelerators to be used with buttons too (Ryan Wilcox).
569 - Support resource forks in wxCopyFile() (Hank Schultz).
570 - Implement wxLocale::GetInfo() using CFLocale.
571 - Native wxCollapsiblePane implementation.
572
573 wxMSW:
574
575 - Fix many problems with selection in multi-selection wxTreeCtrl (Jonathan Liu).
576 - Fixed infinite loop in wxThread::Wait() in console applications.
577 - Return the restored window size from GetSize() when window is minimized.
578 - wxCheckListBox now looks more native, especially under XP (Marcin Malich).
579 - wxCheckListBox now also supports use of client data (Marcin Malich).
580 - Allow tooltips longer than 64 (up to 128) characters in wxTaskBarIcon
581 - Fix centering wxFileDialog and allow positioning it.
582 - Allow centering wxMessageDialog on its parent window (troelsk).
583 - Use vertical scrollbar in wxMessageDialog if it's too big to fit on screen.
584 - Show resize gripper on resizeable dialogs (Kolya Kosenko).
585 - Implement support for display enumeration under WinCE (Vince Harron).
586 - Use different Win32 class names in different wx instances (Thomas Hauk).
587 - Support multiline labels for wxCheckBox and wxToggleButton.
588 - Print preview is now rendered in the resolution used by printer and
589   accurately represents what will be printed. This fixes wxHtmlEasyPrinting
590   preview inaccuracies on Windows; on other platforms, native preview
591   should be used.
592 - Implement wxFileName::SetTimes() for directories (Steve Lamerton).
593 - Added wxToolTip::SetMaxWidth() and improved default wrapping (Joachim Hönig).
594 - Changed default toolbar bitmaps size from obsolete 16x15 to 24x24 used
595   by modern apps.
596 - Ellipsize long strings in wxStatusBar (Francesco Montorsi)
597 - Fix spurious repaint when changing tooltip text (Jonathan Liu).
598 - Fix wxSP_WRAP and wxSP_ARROW_KEYS in wxSpinCtrlDouble (Andrew Radke).
599
600 wxX11:
601
602 - Added mouse wheel support (David Hart).
603 - Make Enter key activate the default button (David Hart).
604
605 wxDFB:
606
607 - Implement wxBitmap ctor from XBM data.
608
609 i18n:
610 -----
611
612 - Slovak translations added (Ivan Masár).
613
614
615 2.8.10:
616 -------
617
618 All:
619
620 - wxHashMap::insert() doesn't update the value if it didn't insert the element
621   any more (Marcin Malich).
622 - Correct bug in wxTimeSpan::Format() for negative spans.
623 - Correct several bugs in wxList using end() iterators (Suzumizaki-Kimitaka).
624 - Added Vietnamese translation (Tran Ngoc Quan).
625 - Updated Slovenian translation (Martin Srebotnjak).
626 - Corrected Serbian locale name (Cody Precord).
627 - Fix wxURL::GetInputStream() for URLs with special characters in credentials
628   (Robert Wruck).
629 - Fix wxURI::GetUser() for URIs without password.
630 - Correct wxDateTime DST computation for 2006 and later (Christopher Barker).
631
632 All (GUI):
633
634 - wxRTC: fixed input that uses Alt on Mac OS X, for example Polish Pro input.
635   Also fixed a bug whereby e.g. Croatian keys didn't work, by moving more code
636   to key down handler.
637 - wxRTC: fixed a problem with HTML list generation.
638 - wxRTC: no longer deletes a character when content is selected before
639   pressing Delete.
640 - wxRTC: fixed inability to select no superscript and no subscript in
641   formatting dialog.
642 - wxRTC: fixed centering and right-justification when combined with left
643   indentation.
644 - wxRTC: fixed lack of right margin when centering or right-justifying.
645 - wxRTC: fixed wrong descent when wrapping lines with different font sizes.
646 - wxRTC: fixed wrapping problem for long lines.
647 - wxRTC: all buffer margins now respected.
648 - wxRTC: Added wxRE_CENTRE_CARET to centre the caret line vertically.
649 - Fixed wxHTML's pagebreaks computation in tables (D.J.Stauffer).
650 - Fixed wxHtmlWindow::SelectionToText() to correctly insert newlines after
651   single-cell paragraphs.
652 - Fixed wxHTML's line breaks handling in <pre> blocks broken in 2.8.8 (#10120).
653 - wxHTML: don't include extra whitespace in table cells.
654 - Implemented wxWindow::DragAcceptFiles() on all platforms.
655 - Added wxAUI_MGR_LIVE_RESIZE flag to wxAuiManager and made it the default on
656   wxMac with CoreGraphics where sash drawing isn't implemented.
657 - Use bitmap mask in wxSplashScreen.
658 - Translate "(c)" and "(C)" to the real copyright sign in wxAboutBox.
659 - Fix painting of highlight border for merged cells in wxGrid (K. Jones).
660 - Fix handling of long lines in wxGridCellAutoWrapStringRenderer.
661
662 All (Unix):
663
664 - Return false from wxSingleInstanceChecker::IsAnotherRunning() if an error
665   occurred while opening or reading the lock file (Lauri Nurmi).
666
667 wxMSW:
668
669 - Fixed bug with using non default encoding in wxTextCtrl in ANSI build.
670 - Restored generation of events for accelerators when there is no menu bar.
671 - Fixed wxArtProvider::GetSizeHint() to return 16x16 for wxART_FRAME_ICON.
672 - Fixed toolbar buttons so that they don't disappear temporarily when clicked
673   if the event handler causes window update.
674 - Fix display enumeration under WinCE (Vince Harron).
675 - Fix best size calculation for wxNotebook with multiple rows (Alex McCarthy).
676 - Correct coordinates of wxDropFilesEvent (Dmitriy Maksimov).
677 - Fix handling of abandoned mutexes in wxMutex (David Heffernan).
678 - Avoid warnings about deprecated localtime with MSVC8/9 (Chris Stankevitz).
679 - Fixed invisible CHM tooltip text bug when window text colour is black.
680 - Automatically adjust toolbar's tool size if the provided bitmaps
681   don't fit into the default size.
682 - Don't generate EVT_LISTBOX_DCLICK events with incorrect indices.
683 - Don't reuse the double click handled by activation event handler for toggling
684   the item in wxTreeCtrl.
685
686
687 wxMSW/CE:
688
689 - Don't hardcode the menu bar height (Michele Spighi).
690
691 wxGTK:
692
693 - Fixed printing to use fonts sizes adjustment consistent with wxMSW.
694 - Make colours used by list, tree and status bar controls more consistent with
695   the system theme settings (Tim Kosse).
696 - Worked around bug in GTK+ < 2.14 where enabling some controls such
697   as wxButton didn't re-enable sensitivity until the mouse was moved.
698
699 wxOS2:
700
701 - Added implementation for wxSingleInstanceChecker contributed by Lauri Nurmi
702
703
704 2.8.9
705 -----
706
707 All:
708
709 - Optimize wxString::Replace() for single character arguments.
710 - Updated Hindi translation (Priyank Bolia).
711 - Use tr1::unordered_{map,set} for wxHash{Map,Set} implementation if available
712   in STL build; in particular do not use deprecated hash_{map,set} which
713   results in a lot of warnings from newer g++ (Jan Van Dijk and Pete Stieber).
714
715 All (GUI):
716
717 - Added support for reading alpha channel in BMP format (Kevin Wright).
718 - Fixed help viewer bug whereby the splitter sash in wxHtmlHelpWindow could
719   go underneath the left-hand pane, permanently, after resizing the
720   help window.
721 - Fixed wxHTML default font size for printing to be 12pt regardless of the
722   platform, instead of depending on GUI toolkit's screen configuration.
723 - Support wxDP_ALLOWNONE style in generic wxDatePickerCtrl version.
724 - Set wxKeyEvent::m_uniChar correctly in the events generated by generic
725   wxListCtrl (Mikkel S).
726 - Fix changing size of merged cells in wxGrid (Laurent Humbertclaude).
727 - Fixed wrapping bug in wxRichTextCtrl when there were images present;
728   now sets the cursor to the next line after pressing Shift+Enter.
729 - Fixed Cmd+Back, Cmd+Del word deletion behaviour in wxRichTextCtrl.
730 - Fix crash when reading malformed PCX images.
731 - Fix bug with wrong transparency in GIF animations (troelsk).
732 - Store palette information for XPM images in wxImage (troelsk).
733 - Fixed selection bugs and auto list numbering in wxRichTextCtrl.
734 - Significantly optimize wxGrid::BlockToDeviceRect() for large grids (kjones).
735 - Introduced new wxAuiToolBar class for better integration and look-and-feel.
736 - Fix a crash in wxAuiFrameManager when Update() was called in between mouse-up
737   and mouse-down events
738 - wxAUI: added various NULL-ptr asserts.
739 - Fixed problem with Floatable(false) not working in wxAuiFrameManager.
740 - Fixed maximize bug in wxAUI.
741 - Allow period in link anchors in wxHTML.
742 - Fixed memory corruption in wxHTML when parsing "&;" in the markup.
743 - Fixed event type in EVT_GRID_CMD_COL_MOVE and EVT_GRID_COL_MOVE.
744 - wxGrid doesn't steal focus when hiding editor any more (Tom Eckert).
745
746 All (Unix):
747
748 - MIME types reading fixed when running under GNOME, reading .desktop
749   files and also the default application list.
750 - Added filesys.no-mimetypesmanager system option so that applications that
751   must load an XRC file at program startup don't have to incur the
752   mime types manager initialization penalty.
753
754 wxMSW:
755
756 - Potentially incompatible change: wxExecute() arguments are now quoted if they
757   contain spaces and existing quotes are escaped with a backslash. However, to
758   preserve compatibility, the argument is unchanged if it is already quoted.
759   Notice that this behaviour will change in wxWidgets 3.0 where all arguments
760   will be quoted, please update your code now if you are affected and use only
761   wxWidgets 2.8.9 or later.
762 - Fix keyboard support in wxSpinCtrl broken in 2.8.8.
763 - Compile fix for WinCE in window.cpp (no VkKeyScan in Windows CE).
764 - Support disabling items before adding them to the menu (Christian Walther).
765 - Allow to call SetFont(wxNullFont) to reset the font to default.
766 - Implement UUID::operator==() and !=() (SQLAware Corporation).
767 - Fixed long standing (introduced in 2.6.3) bug which resulted in always
768   creating a DIB and not DDB in wxBitmap(const wxImage&) ctor.
769 - Fix the bug with wxFileDialog not being shown at all if the default file name
770   was invalid.
771 - Fix hang in keyboard navigation code with radio buttons under Windows 2000.
772 - Implement wxWinINetInputStream::GetSize() (spicerno).
773 - Always copy "has alpha" flag when copying bitmaps (SQLAware Corporation).
774
775 wxGTK:
776
777 - Fixed masking of disabled bitmaps in wxMenuItem and wxStaticBitmap.
778 - Fixed generation of events for an initially empty wxDirPickerCtrl.
779 - Fixed detection of Meta key state so that NumLock isn't misdetected
780   as Meta (requires GTK+ 2.10).
781 - Fix changing font/colour of label in buttons with images (Marcin Wojdyr).
782
783 wxMac:
784
785 - Fixed a glitch where clicking on a scrollbar (but not moving the scrollbar)
786   would cause the window to scroll.
787
788
789 2.8.8
790 -----
791
792 All:
793
794 - Fixed bug with parsing some dates in wxDateTime (Bob Pesner).
795 - Fixed bug with parsing negative time zones in wxDateTime::ParseRfc822Date().
796 - Initialize current line in wxTextBuffer ctor (Suzuki Masahiro).
797 - Improved performance of XML parsing (Francesco Montorsi).
798 - Fix wxDateTime::ParseRfc822Date() to handle missing seconds (Joe Nader).
799
800 All (GUI):
801
802 - Added wxWindow::GetNextSibling() and GetPrevSibling().
803 - Support wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize() (Evgeniy Tarassov).
804 - Ensure that wxGrid::AutoSizeColumn/Row() never sets column/row size
805   smaller than the minimal size.
806 - Added <scrollrate> parameter to wxScrolledWindow XRC handler.
807 - wxRichTextCtrl performance has been improved considerably.
808 - Several wxRichTextCtrl style, paste and undo bugs fixed.
809 - Added wxRichTextCtrl superscript and subscript support (Knut Petter Lehre).
810 - wxNotebook RTTI corrected, so now wxDynamicCast(notebook, wxBookCtrlBase)
811   works.
812 - When focus is set to wxScrolledWindow child, scroll it into view.
813 - Improve wximage::ResampleBox() (Mihai Ciocarlie).
814 - Implemented ScrollList() in generic wxListCtrl (Tim Kosse).
815 - SaveAs in docview takes into account path now.
816 - Fixed wxXmlResource::GetText() to convert data to current locale's
817   charset in ANSI build.
818 - wxGrid now indicates focus by using different colour for selection
819   and hiding cell cursor when it doesn't have focus.
820 - Added alpha support to wxImage::Paste() (Steven Van Ingelgem)
821 - Use current date when opening popup in generic wxDatePickerCtrl.
822 - Remove associated help text from wxHelpProvider when a window is destroyed.
823 - Added wxSizerFlags::ReserveSpaceEvenIfHidden() and
824   wxRESERVE_SPACE_EVEN_IF_HIDDEN sizer flag.
825 - Added wxWindow::ClientToWindowSize() and WindowToClientSize() helpers.
826 - Added wxSizer::ComputeFittingClientSize() and ComputeFittingWindowSize().
827 - Fixed wxSizer::SetSizeHints() to work when the best size decreases.
828 - Fixed crash in wxHtmlHelpController if the help window is still open.
829 - Fixed generic art provider to scale bitmaps down to client-specific
830   best size if needed.
831 - Made wxSpinCtrl::Reparent() in MSW and generic versions (Angelo Mottola).
832 - Fixed timing of malformed animated GIFs in wxHTML (Gennady Feller).
833 - Fixed incorrect layout width caching in wxHTML (Jeff Tupper).
834 - wxHTML: preserve TAB characters when copying <pre> content to clipboard.
835 - Set focus to wxCalendarCtrl when it is clicked.
836 - Don't clear the list control when wxLC_[HV]RULES style is toggled.
837 - Don't crash when Ctrl-Shift-T is pressed in empty wxStyledTextControl.
838
839 All (Unix):
840
841 - Fixed shared libraries to not depend on GStreamer when built with
842   --enable-media; only wxMedia library depends on it now.
843 - wxLaunchDefaultBrowser() now uses xdg-open if available.
844 - Don't close UDP socket if an empty datagram is received (Mikkel S)
845 - Honour locale modifiers such a "@valencia" in system locale (Tim Kosse)
846
847 wxMSW:
848
849 - Fix rare bug with messages delivered to wrong wxSocket (Tim Kosse).
850 - Fix setting icons when they have non-default (16*16 and 32*32) sizes.
851 - Fixed wxLocale::GetInfo to use the C locale.
852 - Don't enable disabled windows when showing them (Harry McKame).
853 - Fix assert when using owner-drawn menu items with the newest (Vista) SDK.
854 - Fixed wxTextCtrl to not process clipboard events twice if there's
855   a custom wxEVT_COMMAND_TEXT_* event handler.
856 - Fix wxComboBox to not lose the current value if it was programmatically set
857   to a value not in a list of choices on popup close (Kolya Kosenko)
858 - Switching wxListCtrl to report mode from another one now uses full row
859   highlight, just as if the control were created in report mode initially.
860 - Use correct index of the right-clicked column in wxListCtrl in the
861   corresponding event even when the control is scrolled horizontally.
862 - Implement wxRadioBox::Reparent() correctly (Vince Harron).
863 - Make context sensitive help work for the text part of wxSpinCtrl.
864 - wxFileType::GetCommand() now looks at Explorer associations and CurVer
865   for increased reliability and conformance to user expectations.
866 - Fixed double Init() call in wxTopLevelWindow causing a memory leak on
867   SmartPhone.
868 - Fixed rendering of borders for wxTextCtrl with wxTE_RICH(2) style when
869   using Windows XP's Classic UI theme.
870 - Text controls with wxTE_RICH style now also generate wxClipboardTextEvents.
871 - Fixed wxEVT_COMMAND_TEXT_ENTER generation in wxSpinCtrl.
872 - Fixed wxSpinCtrl::GetClientSize() to return sensible value and not just
873   spin button's client size.
874 - Fixed IMPLEMENT_APP() to be compatible with the -WU flag of Borland C++
875   compiler (Matthias Bohm).
876 - Correct size calculation for toolbars containing controls under pre-XP
877   systems (Gerald Giese)
878
879 wxGTK:
880
881 - Return false from wxEventLoop::Dispatch() if gtk_main_quit() was called and
882   so the loop should exit (Rodolfo Schulz de Lima).
883 - Implement wxListBox::EnsureVisible() (Andreas Kling)
884 - Fixed wxCURSOR_HAND to map to GDK_HAND2 and not GDK_HAND1, for consistency
885   with other applications.
886 - Fix wxNotebook::GetPage{Text,Image}() when they were called from the page
887   change event handler for the first added page (Mikkel S).
888 - Fixed wxBitmapButton to use focus and hover bitmaps correctly.
889 - Fixed race condition which could cause idle processing to stop without
890   processing all pending events.
891 - wxAcceleratorTable now works with buttons too.
892
893 wxMac:
894
895 - Fixed cursor for wxBusyCursor and wxContextHelp.
896 - Fixed wxListCtrl to respect items' non-default fonts.
897 - wxListCtrl::SetColumnWidth() now supports wxLIST_AUTOSIZE.
898 - Fixed handling of transparent background in borderless wxBitmapButton.
899
900
901 2.8.7
902 -----
903
904 All:
905
906 - Fixed bug with default proxy destruction in wxURL (Axel Gembe).
907
908 wxMSW:
909
910 - Correct (harmless) warnings given for forward-declared DLL-exported classes
911   by mingw32 4.2 (Tim Stahlhut).
912
913 wxGTK:
914
915 - Added gtk.window.force-background-colour wxSystemOptions option to work around
916   a background colour bug in the gtk-qt theme under KDE.
917 - Implemented wxGetClientDisplayRect() correctly for wxGTK and X11-based ports.
918
919
920 2.8.6
921 -----
922
923 All:
924
925 - Fixed another bug in wxFileConfig when deleting entries (Axel Gembe)
926 - Added Portuguese translation (Antonio Cardoso Martins)
927
928
929 2.8.5
930 -----
931
932 All (GUI):
933
934 - Added colour normalization to PNM image handler (Ray Johnston)
935 - Fixed selecting part of word from right to left in wxHTML (Michael Hieke)
936 - Selecting text in wxHTML with character precision was made easier, it's
937   enough to select half of a character (Michael Hieke)
938 - Significantly improved startup times of XRC-based applications using
939   embedded resources on Unix (requires resources recompilation)
940 - Fixed freeing of "static" alpha data in wxImage (Axel Gembe)
941 - Don't invalidate the font in SetNativeFontInfo[Desc]() if the string is
942   invalid, to conform to the documented behaviour (Langhammer)
943 - Fixed wxXPMHandler::SaveFile for images with more than 92 colors.
944
945 wxMSW:
946
947 - Correct problem with page setup dialog when using landscape mode
948 - Added msw.font.no-proof-quality system option, see manual for description
949 - Fix appearance of notebook with non-top tabs under Windows Vista
950 - Fixed bug with symbol resolving in wxStackWalker (Axel Gembe)
951 - Fixed showing busy cursor for disabled windows and during wxExecute()
952 - Set the string of wxEVT_COMMAND_CHECKLISTBOX_TOGGLED events (Luca Cappa)
953 - Fix problems with timers on SMP machines in wxAnimationCtrl (Gennady)
954
955 wxGTK:
956
957 - Setting foreground colour of single line wxTextCtrl now works
958 - More work on setting defaults in GNOME print dialogs.
959 - Also made landscape printing work as per wxMSW.
960 - Add support for clipping in GNOME print backend.
961 - Speed up wxBitmap::Rescale()
962 - Add right button event for wxToolbar's tools (Tim Kosse)
963 - Don't unconditionally add wxCAPTION style to wxMiniFrame
964 - Generate wxEVT_COMMAND_LIST_END_LABEL_EDIT event even if label didn't change
965 - Fix WX_GL_STEREO attribute handling (Tristan Mehamli)
966 - Fix wxThread::SetPriority() when the thread is running (Christos Gourdoupis)
967 - Fixed off by 1 bug in wxDC::GradientFillLinear() (Tim Kosse)
968
969
970 2.8.4
971 -----
972
973 All:
974
975 - Fix bug in wxFileConfig when recreating a group (Steven Van Ingelgem)
976 - Fix wxStringOutputStream::Write() in Unicode build when the argument
977   overlaps UTF-8 characters boundary
978 - Account for lines without newline at the end in wxExecute()
979
980 All (Unix):
981
982 - Handle socket shutdown by the peer correctly in wxSocket (Tim Kosse)
983
984 All (GUI):
985
986 - Allow status bar children in XRC (Edmunt Pienkowski)
987 - Fix memory leak in wxWizard when not using sizers for the page layout
988 - Added wxListCtrl::SetItemPtrData()
989 - wxHTML: Apply table background colour between the cells too (Michael Hieke)
990
991 wxMSW:
992
993 - Corrected wxStaticBox label appearance when its foreground colour was set:
994   it didn't respect font size nor background colour then (Juan Antonio Ortega)
995 - Don't lose combobox text when it's opened and closed (Kolya Kosenko)
996 - Corrected GetChecked() for events from checkable menu items (smanders)
997 - Fixed popup menus under Windows NT 4
998 - Fixed bug in wxThread::Wait() in console applications introduced in 2.8.3
999 - Support right-aligned/centered owner drawn items in wxListCtrl (troelsk)
1000 - Compilation fixed with WXWIN_COMPATIBILITY_2_6==0
1001 - Fix wxComboCtrl colours under Windows Vista (Kolya Kosenko)
1002
1003 wxGTK:
1004
1005 - Fix infinite loop when adding a wxStaticText control to a toolbar
1006 - Fix wxNO_BORDER style for wxRadioBox (David Hart)
1007 - Fix wxTextCtrl::GetLineText() for empty lines (Marcin Wojdyr)
1008
1009 wxMac:
1010
1011 - Fix wxComboBox::SetSelection(wxNOT_FOUND) (Adrian Secord)
1012
1013 wxUniv:
1014
1015 - Fix wxTextCtrl::SetSelection(-1, -1) to behave as documented (Anders Larsen)
1016 - Fix wxComboBox::SetSelection(wxNOT_FOUND)
1017 - Fix setting background colour for controls with transparent background
1018
1019
1020 2.8.3
1021 -----
1022
1023 All:
1024
1025 - Shut down the sockets gracefully (Sergio Aguayo)
1026 - Fix extra indentation in wxHTML_ALIGN_JUSTIFY display (Chacal)
1027
1028 wxMac:
1029
1030 - Corrected top border size for wxStaticBox with empty label (nusi)
1031
1032 wxMSW:
1033
1034 - Fixed wxFileName::GetSize() for large files
1035
1036 wxGTK:
1037
1038 - Fixed handling of accelerators using PageUp/Down keys
1039
1040
1041 2.8.2
1042 -----
1043
1044 All:
1045
1046 - Added wxSizerFlags::Shaped() and FixedMinSize() methods.
1047 - Added wxCSConv::IsOk() (Manuel Martin).
1048 - Added wxDateTime::GetDateOnly().
1049 - Made wxTextFile work with unseekable files again (David Hart).
1050 - Added wxCONFIG_USE_SUBDIR flag to wxFileConfig (Giuseppe Bilotta).
1051 - Added wxSearchCtrl::[Get|Set]DescriptiveText.
1052 - Fixed detection of number of processors under Linux 2.6
1053 - Fixed Base64 computation in wxHTTP (p_michalczyk)
1054 - Fix handling of wxSOCKET_REUSEADDR in wxDatagramSocket (troelsk)
1055
1056 Unix Ports:
1057
1058 - Fixed crash in wxGetUserName() in Unicode build
1059
1060 wxMSW
1061
1062 - Fix lack of spin control update event when control lost focus.
1063 - Corrected drawing of bitmaps for disabled menu items.
1064
1065 wxGTK
1066
1067 - Fix hang on startup when using GTK+ options in Unicode build
1068
1069 wxMac
1070
1071 - Fix position of the centered windows (didn't take menu bar size into account)
1072 - Added support for the wxFRAME_FLOAT_ON_PARENT style.
1073
1074 wxX11:
1075
1076 - Don't crash in wxWindow dtor if the window hadn't been really Create()d.
1077
1078 wxUniv:
1079
1080 - Fixed wxComboBox always sorted.
1081
1082
1083 2.8.1
1084 -----
1085
1086 All:
1087
1088 - Fix compilation with wxUSE_STL=1.
1089 - wxGrid::GetBestSize() returns same size the grid would have after AutoSize().
1090 - Added wxTreeCtrl::CollapseAll[Children]() and IsEmpty() (Francesco Montorsi).
1091 - Several RTL-related positioning fixes (Diaa Sami).
1092 - Fix wxConfig::DeleteGroup() for arguments with trailing slash (David Hart).
1093 - Fix memory leak in wxGrid::ShowCellEditControl() (Christian Sturmlechner).
1094
1095 wxMSW:
1096
1097 - Fixed compilation with Borland C++ in Unicode mode but without MSLU.
1098 - Show taskbar icon menu on right button release, not press.
1099
1100 wxGTK:
1101
1102 - Don't crash if command line is not valid UTF-8 (Unicode build only).
1103
1104 wxUniv:
1105
1106 - It is now possible to set background colour of wxStaticText.
1107
1108
1109 2.8.0
1110 -----
1111
1112 All:
1113
1114 - Added wxSearchCtrl (Vince Harron).
1115 - wxCSConv("UTF-16/32") now behaves correctly, i.e. same as wxMBConvUTF16/32.
1116 - wxArrayString::Alloc() now works as reserve() and doesn't clear array contents.
1117 - Fixed long standing bug in wxFileConfig groups renaming (Antti Koivisto).
1118 - New option wxFS_READ | wxFS_SEEKABLE for wxFileSystem::OpenFile() to return
1119   a stream that is seekable.
1120 - Fixed bug in wxCalendarCtrl::HitTest() when clicking on month change arrows.
1121 - Added wxWindow::GetWindowBorderSize() and corrected wxTreeCtrl::GetBestSize().
1122   for a control with borders (Tim Kosse).
1123
1124 wxMSW:
1125
1126 - Fixed version script problems when using configure with cygwin/mingw32.
1127 - Use system default paper size for printing instead of A4.
1128 - Fix (harmless) assert in virtual list control under Vista.
1129 - Fix colours when converting wxBitmap with alpha to wxImage (nusi).
1130
1131 wxGTK:
1132
1133 - Allow dynamically changing most of text control styles.
1134 - Enable use of libgnomeprintui by default in configure.
1135
1136
1137 2.7.2
1138 -----
1139
1140 All:
1141
1142 - Added wxFFile overload to wxFileName::CreateTemporaryFileName().
1143 - Added GetTempDir() to wxFileName and wxStandardPaths.
1144 - Added wxTar streams.
1145 - Added wxFilterFSHandler and wxArchiveFSHandler.
1146 - Added wxString::ToLongLong() and ToULongLong().
1147
1148 All (GUI):
1149
1150 - wxMemoryDC constructor now optionally accepts a wxBitmap parameter,
1151   calling SelectObject itself if a valid bitmap is passed.
1152 - Reverted wxBuffered[Paint]DC to pre 2.7.1 state, added
1153   wxAutoBufferedPaintDC and wxAutoBufferedPaintDCFactory.
1154 - Renamed wxProgressDialog::UpdatePulse() to just Pulse().
1155 - Added wxCollapsiblePane (Francesco Montorsi).
1156 - Added wxSimpleHtmlListBox (Francesco Montorsi).
1157 - Printing framework fixes by Robert J. Lang. Bugs fixed,
1158   wxPrinterDC::GetPaperRect() and other functions added to allow
1159   easier printing implementation, and the documentation updated.
1160 - Many enhancements to wxRichTextCtrl including URL support,
1161   formatting and symbol dialogs, print/preview, and better list
1162   formatting.
1163 - Support for loading TGA files added (Seth Jackson).
1164 - Added wxTB_RIGHT style for right-aligned toolbars (Igor Korot).
1165 - wxHtmlWindow now generates events on link clicks (Francesco Montorsi).
1166 - wxHtmlWindow now also generates wxEVT_COMMAND_TEXT_COPY event.
1167
1168 Unix Ports:
1169
1170 - Added autopackage for wxGTK and an example of using autopackage for a wx
1171   program (Francesco Montorsi).
1172
1173 wxGTK:
1174
1175 - More RTL work.
1176 - Support wxALWAYS_SHOW_SB.
1177 - Speed up MIME types loading. Only the GNOME database should be loaded under
1178   GNOME etc. For this, the code queries the X11 session protocol.
1179 - wxCaret redraw problem during scrolling fixed.
1180
1181
1182 2.7.1
1183 -----
1184
1185 All:
1186
1187 - Added wxDir::FindFirst() (Francesco Montorsi).
1188 - Added wxPlatformInfo class (Francesco Montorsi).
1189 - Added wxLocale::IsAvailable() (Creighton).
1190 - Added Malay translations (Mahrazi Mohd Kamal).
1191 - Added reference counting for wxVariant.
1192 - For consistency, all classes having Ok() method now also have IsOk() one, use
1193   of the latter form is preferred although the former hasn't been deprecated yet.
1194 - Added wxFileName::Is(Dir|File)(Writ|Read|Execut)able() (Francesco Montorsi).
1195 - Added wxFileName::GetSize() and GetHumanReadableSize() (Francesco Montorsi).
1196 - Added wxSizer::Replace (Francesco Montorsi).
1197 - wxXmlDocument can now optionally preserve whitespace (Francesco Montorsi).
1198 - Added wxBookCtrl::ChangeSelection() and wxTextCtrl::ChangeValue() to provide
1199   event-free alternatives to SetSelection() and SetValue() functions; see the
1200   "Events generated by the user vs programmatically generated events" paragraph
1201   in the "Event handling overview" topic for more info.
1202
1203 All (GUI):
1204
1205 - Support for right-to-left text layout (started by Diaa Sami during Google Summer of
1206   Code, with a lot of help from Tim Kosse and others).
1207 - wxAnimationCtrl added (Francesco Montorsi).
1208 - Added wxAboutBox() function for displaying the standard about dialog.
1209 - Added wxID_PAGE_SETUP standard id.
1210 - Added wxSize::IncBy() and DecBy() methods.
1211 - Added wxTextCtrl::IsEmpty().
1212 - Added file type parameter to wxTextCtrl::LoadFile, wxTextCtrl::SaveFile for
1213   consistency with wxRichTextCtrl.
1214 - wxRichTextCtrl: fixed range out-by-one bug to be consistent with wxTextCtrl API,
1215   fixed some attribute bugs and added wxRichTextStyleComboCtrl.
1216 - Added wxWindow::IsDoubleBuffered().
1217 - Added wxHL_ALIGN_* flags to wxHyperlinkCtrl (Francesco Montorsi).
1218 - Added wxGauge::Pulse() and wxProgressDialog::UpdatePulse() (Francesco Montorsi).
1219
1220 wxMSW:
1221
1222 - Implemented wxComboBox::SetEditable().
1223 - wxSemaphore::Post() returns wxSEMA_OVERFLOW as documented (Christian Walther)
1224 - Fixed a bug whereby static controls didn't use the correct text colour if the
1225   parent's background colour had been set (most noticeable when switching to a
1226   high-contrast theme).
1227 - Respect wxBU_EXACTFIT style in wxToggleButton (Alexander Borovsky).
1228
1229 wxMac:
1230
1231 - Add parameter to the --enable-universal_binary configure option for the path
1232   to the SDK.
1233
1234 wxGTK:
1235
1236 - Automatically use stock items for menu items with standard ids.
1237 - Setting cursor now works for all controls.
1238 - Implemented right-to-left support.
1239 - Implemented left indentation and tab stops support in wxTextCtrl (Tim Kosse).
1240 - Fixed wxHTML rendering of underlined text of multiple words (Mart Raudsepp).
1241
1242 wxUniv:
1243
1244 - Added wxTLW::UseNativeDecorations() and UseNativeDecorationsByDefault().
1245
1246
1247 2.7.0
1248 -----
1249
1250 All:
1251
1252 - Added positional parameters support to wxVsnprintf() (Francesco Montorsi).
1253 - wx(F)File, wxTextFile and wxInputStreams recognize Unicode BOM now.
1254 - Many fixes for UTF-16/32 handling in Unicode builds.
1255 - wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag.
1256 - Added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir()
1257 - Added wxStandardPaths::GetDocumentsDir() (Ken Thomases).
1258 - Added wxStringTokenizer::GetLastDelimiter(); improved documentation.
1259 - Fixed wxTextFile in Unicode build.
1260 - Added possibility to specify dependencies for a wxModule.
1261 - Speed improvements to wxRegEx when matching is done in a loop such as
1262   during a search and replace.
1263 - Fix regerror and regfree name conficts when built-in regex and system regex
1264   are both used in the same program.
1265 - Basic authentication supported added to wxHTTP.
1266 - wxCondition::WaitTimeout() now returns correct value when timeout occurs.
1267 - Fixed occasional wxThread cleanup crash.
1268 - Bug in wxLogStream::DoLogString in Unicode builds fixed.
1269 - Added support for memo fields to wxODBC.
1270 - Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__.
1271 - wxFileName now also looks for TMPDIR on Unix.
1272 - Fixed build error in list.h with VC++ 2005.
1273 - Fixed wxODBC buffer overflow problem in Unicode builds.
1274 - Fixed wxSocketBase::InterruptWait on wxBase.
1275 - Important code cleanup (Paul Cornett).
1276 - Added support for wxLongLong in wx stream classes (Mark Junker).
1277 - wxSOCKET_REUSEADDR can be used with wxSocketClient.
1278 - Overloaded Connect() and SetLocal() methods for binding to local address/port.
1279 - Albanian translation added (Besnik Bleta).
1280 - Assert messages now show the function in which assert failed.
1281 - wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert().
1282 - Fixed several bugs in wxDateTime::ParseDate().
1283 - The WXK*PRIOR and WXK*NEXT constants are now aliases for WXK*PAGEUP
1284   and WXK*PAGEDOWN.  If you have switch statements that use both
1285   constants from a set then you need to remove the PRIOR/NEXT
1286   versions in order to eliminate compiler errors.
1287 - Fixed bug where wxDateTime::Now() would sometimes return an incorrect value
1288   the first time it was called.
1289 - Added wxString::rbegin() and rend().
1290 - Added wxString::EndsWith().
1291 - wxSocket::_Read continues reading from socket after exhausting pushback buffer.
1292   Previously, only the buffer would be returned, even if more data was requested.
1293 - Added wxPowerEvent (currently MSW-only).
1294 - Make wx-config compatible with Bourne shells.
1295 - Fixed wxDb::Open(wxDbConnectInf) when using connection string (Hellwolf Misty).
1296 - Fixed crash in wxDb::Open() in Unicode build (Massimiliano Marretta).
1297 - Fixed wxTimeSpan::Format() for negative time spans.
1298 - Optionally count repeating wxLog messages instead of logging all (Lauri Nurmi).
1299
1300 All (GUI):
1301
1302 - New AUI (Advanced User Interface) library for docking windows and much more.
1303 - Added wxComboCtrl and wxOwnerDrawnComboBox (Jaakko Salli).
1304 - Added wxTreebook (uses a wxTreeCtrl to control pages).
1305 - Added wxColour/Dir/File/Font/PickerCtrls (Francesco Montorsi).
1306 - Added wxDC::GradientFillLinear/Concentric().
1307 - Added wxHyperlinkCtrl (Francesco Montorsi).
1308 - Added clipboard events (wxEVT_COMMAND_TEXT_COPY/CUT/PASTE).
1309 - Allow to reorder wxGrid columns by drag-and-drop (Santiago Palacios).
1310 - Added wxRadioBox::SetItemToolTip().
1311 - Added support for CMYK JPEG images loading (Robert Wruck).
1312 - Added wxListCtrl::GetSubItemRect() and subitem hit testing (Agron Selimaj).
1313 - Added wxKeyEvent::GetModifiers().
1314 - Added wxDialog::SetEscapeId().
1315 - wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox,
1316   wxComboBox and wxChoice).
1317 - wxWindow::Fit() now works correctly for frames and dialogs too.
1318 - Added access to the border size between pages and controller in book
1319   based controls (wxBookCtrlBase::Get/SetInternalBorder).
1320 - Added initial wxRichTextCtrl implementation.
1321 - All book based controls (notebook, treebook etc.) share now the same
1322   options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated
1323   wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP.
1324 - Added parent window parameter to wxHelpController constructor
1325   and added SetParentWindow/GetParentWindow.
1326 - wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not.
1327 - Added wxBitmapButton::SetHoverBitmap().
1328 - Access to titles through Get/SetTitle is available now only for top level
1329   windows (wxDialog, wxFrame).
1330 - Fixed memory leak of pending events in wxEvtHandler.
1331 - Added wxRadioBox::IsItemEnabled/Shown().
1332 - Added space after list item number in wxHTML.
1333 - Implemented <sub> and <sup> handling in wxHTML (based on patch
1334   by Sandro Sigala).
1335 - Added caption parameter to wxGetFontFromUser and wxGetColourFromUser.
1336 - Added wxGetMouseState function.
1337 - Added wxHtmlHelpWindow, wxHtmlHelpDialog and wxHtmlModalHelp classes,
1338   allowing HTML help to be embedded in an application.
1339 - wxCalendarCtrl positioning and hit-testing fixes for dimensions other than
1340   best size.
1341 - wxCalendarCtrl colour schema changed and adjusted to system settings.
1342 - wxImage::Mirror() and GetSubBitmap() now support alpha (Mickey Rose).
1343 - More checking of image validity before loading into wxImage.
1344 - Added wxImage::ConvertToGreyscale.
1345 - Added ability to use templates with static event tables
1346   with BEGIN_EVENT_TABLE_TEMPLATEn() macros.
1347 - Added play, pause, and state change events to wxMediaCtrl.
1348 - Added double-buffering to wxVListBox and fixed a scrolling issue.
1349 - Added wxToolbook (uses a wxToolBar to control pages).
1350 - Added SetSheetStyle to wxPropertySheetDialog and allowed it to
1351   behave like a Mac OS X settings dialog.
1352 - Added <disabled> XRC tag for wxToolBar elements and <bg> for wxToolBar itself.
1353 - Fixed centering of top level windows on secondary displays.
1354 - Implemented wxDisplay::GetFromWindow() for platforms other than MSW.
1355 - UpdateUI handler can now show/hide the window too (Ronald Weiss).
1356 - More than one filter allowed in in wxDocTemplate filter.
1357 - Added wxListBox::HitTest().
1358 - Added wxDisplay::GetClientArea().
1359 - Indices and counts in wxControlWithItems derived API are unsigned.
1360 - Added support for links to wxHtmlListBox; use code has to override
1361   wxHtmlListBox::OnLinkClicked() to take advantage of it.
1362 - Added an easier to use wxMenu::AppendSubMenu().
1363 - wxString <-> wxColour conversions in wxColour class (Francesco Montorsi).
1364 - Fixed bug with ignoring blank lines in multiline wxGrid cell labels.
1365 - Added wxTextAttr::Merge() (Marcin Simonides).
1366 - Added wxTB_NO_TOOLTIPS style (Igor Korot).
1367 - Added wxGenericDirCtrl::CollapsePath() (Christian Buhtz).
1368 - Added wxTreeCtrl::ExpandAllChildren() (Christian Buhtz)
1369 - Fixed 64-bit issue in wxNotebook causing segfaults on Tru64 Unix.
1370 - Made it possible to associate context help to a region of a window.
1371 - Added support for tabs in wxRichTextCtrl (Ashish More).
1372 - Fixed problem with zoom setting in print preview.
1373 - Moved wxRichTextCtrl from the advanced library to its own.
1374 - wxNB_HITTEST_* flags renamed to wxBK_HITTEST_* to serve all book controls.
1375 - Added wxTopLevelWindow::SetTransparent and CanSetTransparent, with
1376   implementations (so far) for wxMSW and wxMac.
1377 - Allow customizing individual grid lines appearance (Søren Lassen).
1378 - Fixed middle click events generation in generic wxTreeCtrl (Olly Betts).
1379 - Added wxEVT_MOUSE_CAPTURE_LOST event that must be handled by all windows
1380   that CaptureMouse() is called on.
1381
1382 wxMSW:
1383
1384 - Fixed crash with ownerdrawn menu items accelerators (Perry Miller).
1385 - wxFileDialog respects absence of wxCHANGE_DIR flag under NT (Brad Anderson).
1386 - Switching page of a hidden notebook doesn't lose focus (Jamie Gadd).
1387 - Removed wxImageList *GetImageList(int) const.
1388 - Fixed MDI context menu problem.
1389 - Removed __WIN95__ define.
1390 - Create msw/rcdefs.h in setup.h's directory, which can be included by
1391   resource files. It containts platform/compiler specific defines (such as
1392   target cpu) which can be used in #ifs in .rc files.
1393 - Add support for Win64 manifests and VC++ 8 automatic manifests (see the
1394   wxMSW faq for details).
1395 - New TARGET_CPU=amd64 (or 'ia64') option for the makefile.vc files which
1396   puts 64-bit builds in their own directory and adds /machine:amd64 or ia64
1397   to the link command.
1398 - wxStatusBar::GetFieldRect now returns correct values under XP.
1399 - wxStatusBar no longer corrupts surrounding windows on resize.
1400 - Enable wxListCtrl in report mode to be able to use images in other
1401   columns, if ComCtl32 >= 470.
1402 - Fixed problem where using SetValue and wxTE_RICH2 would cause control to
1403   show.
1404 - Numpad special keys are now distinguished from normal keys.
1405 - Fixed GDI leak in wxStaticBitmap when setting images after
1406   initial construction.
1407 - Menu codes now stripped before measuring control labels.
1408 - MFC sample now compiles in Unicode mode.
1409 - Fixed SetScrollbar thumb size setting bug (set orientation before triggering
1410   events).
1411 - Fixed icon to cursor conversion problem for bitmaps with masks.
1412 - Fixed wxToolBar background colour problem for some video cards.
1413 - wxGenericDirCtrl now shows volume name.
1414 - Added XP theme support for DrawHeaderButton, DrawTreeItemButton.
1415 - Made the wxActiveXContainer class public and documentated.
1416 - Added a Windows Media Player 9/10 backend for wxMediaCtrl.
1417 - Multiline notebook tab label change now resizes the control
1418   correctly if an extra row is removed or added.
1419 - Fixed a crash when dismissing wxPrintDialog under VC++ 7.1.
1420 - Fixed out by one error in wxTextCtrl::GetStyle.
1421 - Fixed problem with getting input in universal/unicode build of wxMSW.
1422 - Link oleacc.lib conditionally.
1423 - Drag and drop now works inside static boxes.
1424 - Fall back to unthemed wxNotebook if specified orientation not available.
1425 - wxListCtrl and wxTreeCtrl now resize their standard font if the user
1426   changes the system font.
1427 - wxDisplay doesn't require multimon.h now and is enabled by default (Olly Betts).
1428 - Fixed wxChoice/wxComboBox slow appending and infinite recursion
1429   if its size is set within a paint handler (for example when embedded in a
1430   wxHtmlWindow). [Now reverted due to problems in W2K and below.]
1431 - wxDC::GetTextExtent() width calculation is more precise for italics fonts now.
1432 - Warning fixes for VC++ 5.0 (Igor Korot).
1433
1434 wxGTK:
1435
1436 - Fixed handling of font encoding in non-Unicode build
1437 - wxEVT_MENU_CLOSE and wxEVT_MENU_OPENED for popup menus are now generated.
1438 - Implemented wxCURSOR_BLANK support.
1439 - wxSlider generates all scroll events now and not only wxEVT_SCROLL_THUMBTRACK.
1440 - Fixed a host of bugs in wxMediaCtrl as well as added a GStreamer 0.10
1441   implementation.
1442 - Improved configure checks for GStreamer. You may also now specify
1443   --enable-gstreamer8 to force configure to check for GStreamer 0.8.
1444 - Fixed problem with choice editor in wxGrid whereby the editor
1445   lost focus when the combobox menu was shown.
1446 - Fixed focusing with mnemonic accelerator keys on wxStaticText which
1447   is now able to focus on wxComboBox and possibly other controls
1448   previously unable to be focused before.
1449 - Enabled mnemonics and the corresponding accelerator keys for
1450   wxStaticBox and wxRadioBox.
1451 - Fixed problem trying to print from a preview, whereby wrong printer
1452   class was used.
1453 - Worked around pango crashes in strncmp on Solaris 10.
1454 - Polygon and line drawing speeded up if there is no scaling.
1455 - Fixed problems with CJK input method.
1456 - Implemented ScrollLines/Pages() for all windows (Paul Cornett).
1457 - Support underlined fonts in wxTextCtrl.
1458 - Support all border styles; wxListBox honours the borders now.
1459 - wxWindow and wxScrolledWindow now generate line, page and thumb-release scroll events.
1460 - Added file preview support in file dialogs.
1461 - Implemented SetLineSize and GetLineSize for wxSlider.
1462
1463 wxMac:
1464
1465 - Fixed problem with clipboard support for custom data flavors.
1466 - Fixed focus handling for generic controls in carbon-cfm.
1467 - Fixed a printing crash bug, for example using File->Print and changing
1468   Popup from 'Copies & Pages' to e.g. 'Layout'.
1469 - Improved support for help and application menu items.
1470 - Added default implementations for wxTextCtrl::Replace and wxTextCtrl::Remove.
1471 - Added support for 10.4 context menu.
1472 - Added support for wxFRAME_EX_METAL and wxDIALOG_EX_METAL styles.
1473 - Added wxNotebook::HitTest support.
1474 - Corrected idle wake-up.
1475 - Corrected wxExecute.
1476 - Now makes use of full printer resolution.
1477 - Corrected CGImage handling in wxBitmap.
1478 - Now uses simple hide/show transition for top-level windows.
1479 - Uses reasonable temporary path for wxFileName::CreateTempFileName.
1480 - Added support for default key handling (escape, enter, command-period) even
1481   if there is no control on the frame or dialog that has the focus.
1482 - Fixed joystick bugs including a link error and a crash if no joysticks
1483   were found.
1484 - Removed an errorneous assertion from wxDir.
1485 - Uses CoreFoundation based and thread-safe implementation for message boxes
1486   under Mach-O.
1487 - wxBitmapButton is created as a content icon if wxBORDER_NONE is
1488   specified, otherwise as a bevel button.
1489 - Mouse event ids set correctly (fixing problems with Connect in particular).
1490 - Fixed wxZipInputStream read error on wxSocketInputStream which signals the
1491   end of file with an error.
1492 - Xcode wxWidgets and minimal sample project files updated to create Universal
1493   binaries.
1494 - Fix for setting wxMenuBar more than once.
1495 - wxListBox minimum size bug fixed.
1496 - Fixed wxNotebook off-by-one bug in HitTest.
1497 - Fixed joystick GetXMin/Max bug.
1498 - Fixed Unix domain socket problem in wxIPC.
1499 - Fixed non-detection of process termination on Intel Macs by
1500   polling for process termination in a separate thread.
1501
1502 wxCocoa:
1503
1504 - wxDirDialog is now native (Hiroyuki Nakamura).
1505
1506 wxWinCE:
1507
1508 - Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
1509 - Native wxCheckListBox implementation.
1510 - All wxTopLevelWindows resizes accordingly to SIP visibility.
1511 - ::wxGetUserName() implemented.
1512 - wxDisplay enumeration support.
1513 - Fixed wxFileDialog breakage on WinCE due to incorrect structure size.
1514 - New wxSystemOption "wince.dialog.real-ok-cancel" to switch between WinCE
1515   guidelines with Ok-only dialogs and dialogs using wxButtons.
1516 - Checkable items in wxToolMenuBarTool supported.
1517 - Fixed date formatting and mktime.
1518 - Fixed getting standard folder paths on WinCE.
1519 - Support for backspace key on Smartphone.
1520 - Made both windows wxMediaCtrl Windows backends compilable with wxWinCE - it
1521   is recommended that you use wxMEDIABACKEND_WMP10 on this platform
1522   directly, however.
1523 - Added support for the context menu event (wxContextMenuEvent)
1524   and added platform-specific wxWindow::EnableContextMenu.
1525 - Fixed wxGenericFileDialog to work with WinCE.
1526 - Fixed compilation and menubar disappearance on Windows Mobile 5.
1527 - Fixed wxDatePickerCtrl usage.
1528
1529 wxUniv:
1530
1531 - Send wxEVT_SCROLL_XXX events from wxSlider (Danny Raynor).
1532 - Implemented wxToggleButton (David Bjorkevik).
1533 - Label in Toolbar tools implemented (Danny Raynor).
1534
1535 wxX11:
1536
1537 - Invisible text problem fixed.
1538 - Bitmap clipping with masks and scaling improved.
1539 - Fixed a crash bug in the generic timer.
1540 - Implemented child process termination notifications (David Björkevik)
1541
1542 Unix:
1543
1544 - NO_GCC_PRAGMA is not used any more, remove checks for it if you used it.
1545
1546 wxMGL:
1547
1548 - Fixed NUM_LOCK having no effect.
1549 - Fixed wxFileExists (affecting wxImage::LoadFile).
1550
1551
1552 2.6.2
1553 -----
1554
1555 All:
1556
1557 - Fixed wxScopeGuard to work with VC++, documented it.
1558 - Fixed proxy handling in wxURL.
1559 - Added wxEVT_MEDIA_LOADED event for wxMediaCtrl.
1560 - Added new methods to wxMediaCtrl (wxURI version of Load, ShowPlayerControls).
1561 - Added wxZipFSHandler::Cleanup() (Stas Sergeev).
1562 - Added wxImage::RotateHue() and RGB <-> HSV conversions (John Anderson).
1563 - Fixed compilation with IBM xlC compiler.
1564 - wxABI_VERSION, see 'Backward Compatibility' topic overview in the manual.
1565 - Added wxLongLong::ToDouble().
1566 - Added wxDateTime::[Make]FromTimezone(), fixed several TZ-related bugs.
1567 - Fixed bug in wxStreamBuffer::Read(wxStreamBuffer *) (Paul Cornett).
1568 - Fixed wxListbook and wxChoicebook internal layout.
1569
1570 All (GUI):
1571
1572 - Added wxStaticText::Wrap()
1573 - wxChoice and wxComboBox::GetSelection() now returns completed selection,
1574   added a new GetCurrentSelection() function having the old behaviour.
1575 - Added wxXmlResource::Unload().
1576 - Possibility of modeless wxWizard dialog (with presentation in sample).
1577 - Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).
1578 - Ctrl+mouse wheel changes zoom factor in print preview (Zbigniew Zagórski).
1579 - Cross-compile now supported for wxGTK, wxX11 and wxMotif.
1580 - Cygwin compilation of wxX11, wxGTK and wxMotif now supported.
1581 - Now reads "help" parameter for all windows (context help text).
1582 - wxWizard adapts to PDA-sized screens.
1583 - Unicode fixes for IPC and a new IPC sample (Jurgen Doornik).
1584
1585 wxMSW:
1586
1587 - wxMSW now builds with (beta of) MSVC 8 (a.k.a. 2005).
1588 - Separators are now correctly shown in the toolbars under Windows XP.
1589 - Fixed multiline tooltips handling.
1590 - Fixed wxSlider::GetSelEnd() (Atilim Cetin).
1591 - Fixed accelerators of menu items added to already attached submenus.
1592 - Position of wxEVT_MOUSEWHEEL events is now in client, not screen, coordinates.
1593 - Handle absence of wxListCtrl column image better (Zbigniew Zagórski).
1594 - Fixed asynchronous playback of large sound files in wxSound.
1595 - Added wxDynamicLibrary::GetSymbolAorW().
1596 - Fixed default size of wxStaticText controls with border being too small.
1597 - Fixed bugs with wxStatusBar positioning (with or withour sizers) (Jamie Gadd).
1598 - Mouse move events are now generated for all static controls (Jamie Gadd).
1599 - Fixed nested static box display and splitter sash on some themes (Jamie Gadd).
1600 - Made wxJoystick::GetProductName() more useful (John Ratliff).
1601 - Native spline drawing implementation (Wlodzimierz ABX Skiba).
1602
1603 wxGTK:
1604
1605 - ShowFullScreen() shows the window if it was still hidden (rpedroso).
1606 - Implemented wxTopLevelWindow::RequestUserAttention() (Mart Raudsepp).
1607 - Base library is now binary compatible when built with wxGTK and wxMotif.
1608 - wxTextCtrl::XYToPosition, PositionToXY and GetLineLength calls are now
1609   instantaneous in case of GTK 2.x multi-line controls (Mart Raudsepp).
1610 - Added support for left, centre and right text alignment attributes under
1611   GTK+2 multi-line text controls (Mart Raudsepp).
1612 - Various wxFont improvements for GTK 2.x builds (Mart Raudsepp).
1613 - Changed order of child deletion in window destructor and
1614   removed focus handlers to avoid spurious events (David Surovell).
1615 - Fixed domain socket handling.
1616
1617 wxMac:
1618
1619 - First implementation of native HIToolbar support.
1620 - Added text control context menu (ported from wxMSW).
1621 - More CoreGraphics implementation improvements.
1622 - Various text control bug fixes.
1623 - Automatic menu management improved.
1624 - Fixed crash when wxRadioButton is deleted from a group of radio buttons,
1625   due to dangling cycle pointers.
1626 - Native spline drawing implementation for CoreGraphics (Robert J. Lang).
1627 - Made wxDialog::IsModal meaning the same as other ports (true only when
1628   showing modally).
1629
1630 wxOS2
1631
1632 - Adjustments for building with Open Watcom C++.
1633
1634 wxUniv:
1635
1636 - Window creation now honours wxVSCROLL.
1637 - Standalone scrollbars generate events of correct type (Jochen Roemmler).
1638
1639 wxMotif:
1640
1641 - Base library is now binary compatible when built with wxGTK and wxMotif.
1642 - wxMotif can now display Japanese text under Japanese locale.
1643 - Fixed button size in common dialogs.
1644 - Made wxFileDialog translatable.
1645 - All top level windows should now have a border unless the wxNO_BORDER
1646   flag has been specified.
1647 - Improved wxNotebook support for sizers. It requires the wxNotebook to
1648   be created with a "sensible" initial width.
1649 - Made wxDialog::IsModal meaning the same as other ports (true only when
1650   showing modally).
1651
1652 wxMGL:
1653
1654 - Fixed crash on exit.
1655 - Fixed drawing problems when windows are resized.
1656
1657 wxX11:
1658
1659 - Various wxFont improvements for unicode builds (Mart Raudsepp).
1660
1661
1662 2.6.1
1663 -----
1664
1665 All:
1666
1667 - Added wxLaunchDefaultBrowser.
1668 - Added wxPLURAL() macro in addition to _() (Jonas Rydberg)
1669
1670 All (GUI):
1671
1672 - Fixed potential infinite loop when adjusting wxScrolledWindow scrollbars.
1673 - Radio in menus do not send menu event for selections of already selected item.
1674 - Fixed wrong positioning of marks and enumerations in lists of wxHTML.
1675 - wxImage::Rotate90 respects alpha channel.
1676 - Added wxEVT_SCROLL_CHANGED as synonym for wxEVT_SCROLL_ENDSCROLL.
1677 - Replaced artwork for some cursors, icons and toolbar buttons.
1678 - Fixed sizing problem in generic wxCalendarCtrl for short day abbreviations.
1679 - Fixed wxWindow::DoGetBestSize to keep original best size.
1680 - PNM now supports ASCII and raw grey formats.
1681 - wxGrid focus and edit key improvements.
1682
1683 wxMSW:
1684
1685 - Fixed erroneous selection of content in wxComboBox when within a wxStaticBox
1686   (checking for selection caused by WM_STYLECHANGED).
1687 - Added deferred positioning to wxRadioBox, wxSlider and wxSpinCtrl and thereby
1688   eliminated some refresh glitches when resizing.
1689 - Eliminated further refresh glitches caused by wxRadioBox (to nearby controls)
1690   by refreshing parent when the radio box moves.
1691 - Added ability set the system option "msw.staticbox.optimized-paint" to 0 to
1692   allow a panel to paint graphics around controls within a static box.
1693 - Refresh exposed areas when resizing, using WM_WINDOWPOSCHANGED.
1694 - Worked around an apparent bug in deferred window positioning (moving a
1695   window from (x, y) to (a, b) and back to (x, y) misses the last step) by
1696   checking window positions against corresponding sizer state, if any.
1697 - A control's text colour now reflects the system colour setting.
1698 - Fixed wxFileName::GetLongPath() to behave correctly during the first call too.
1699 - Fixed alpha blitting to take into account source position.
1700 - Setting foreground colour for wxCheckBox now works when using XP themes too.
1701 - wxStaticBox label can use custom foreground colour.
1702 - Now uses newer font MS Shell Dlg 2 if possible.
1703 - Compiles again with WIN64.
1704 - Winelib compilation now works.
1705 - When converting a wxIcon to a bitmap check if the icon has an alpha
1706   channel and set the bitmap to use it.
1707 - wxSlider now also sends wxEVT_SCROLL_CHANGED when using mouse wheel
1708 - Miscellaneous wxMediaCtrl improvements.
1709 - wxTopLevelWindow::ShowFullScreen logic error fixed.
1710 - Fixed wxScrollBar background colour bug.
1711 - Fixed problems with paper sizes being ignored.
1712 - wxNotebook refresh problem fixed.
1713 - DDE fixed for Unicode.
1714 - Fixed ownerdrawn multiline buttons.
1715 - wxCheckListBox item background fixed.
1716 - Fixed error when trying to read a value from key not accessible for writing.
1717 - Fixed keyboard cue visibility issues under Windows 2000/XP
1718
1719 wxWinCE:
1720
1721 - Fixed wxFileName::CreateTempFileName.
1722
1723 wxGTK:
1724
1725 - Added support for wxSTAY_ON_TOP (GTK 2.4+).
1726 - Fixed wxTextCtrl::SetStyle for overlapping calls.
1727 - Fixed scrollbar border colour.
1728 - Added bitmap support in menus.
1729
1730 wxMac:
1731
1732 - Added support for launching 'APPL' bundles with wxExecute (usually they have a
1733   .app extension and are the ones that reside in the Applications folder).
1734 - Fixed a bug in wxGetKeyState where shift and some other keys were returning an
1735   incorrect state.
1736 - Fixed toolbar colour bug on Tiger.
1737 - Fixed visual problems caused by removal of About menu item.
1738 - Window menu now added automatically.
1739 - Configure fixed for wxBase compilation.
1740 - Modified function key support fixed.
1741 - wxTopLevelWindow::Maximize improvements.
1742
1743 wxX11:
1744
1745 - Menu problems fixed.
1746 - wxScrolledWindow scrolls any child windows.
1747 - Fixed a font memory leak.
1748 - Multiple wxTimers now work correctly.
1749
1750
1751 2.6.0
1752 -----
1753
1754 All:
1755
1756 - wxPathExists deprecated, use wxDirExists instead.
1757 - Configure: --enable-std_iostreams, --enable-std_string are now the default.
1758
1759 All (GUI):
1760
1761 - Fixed ~wxStatusBar and ~wxToolBar which tried to check
1762   non-existent wxFrameBase RTTI, causing a crash if not in a frame.
1763
1764 wxMSW:
1765
1766 - Fixed static box border when the label is empty.
1767 - Fixed SetBackgroundColour() to change only label background, not entire box.
1768 - wxHelpController is now aliased to wxCHMHelpController.
1769
1770 wxWinCE:
1771
1772 - Fixed device origin setting and clipping region setting.
1773
1774 wxGTK:
1775 - New configure syntax for specifying the GTK+ version.
1776     --with-gtk             Use GTK 2.x, no fallback
1777     --with-gtk=1           Use GTK 1.2, no fallback
1778     --with-gtk=2           Use GTK 2.x, no fallback
1779     --with-gtk=any         Use any available GTK
1780 - wxMenuItem::SetText() takes care of hotkeys, too.
1781 - Reworked text wrapping for wxStaticText.
1782
1783 wxMac:
1784 - Implemented most of the wxFileType and wxMimeTypesManager functions
1785
1786 2.5.5
1787 -----
1788
1789 All:
1790
1791 - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get
1792   user and password as in 2.5.4; wxURI::GetPassword() added.
1793 - Added wxDebugReport class.
1794 - Added wxTempFileOutputStream by Stas Sergeev.
1795 - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First).
1796 - Added WXK_SPECIAL keycodes for special hardware buttons.
1797 - Fixed bug with wxFile::Seek(-1, wxFromCurrent).
1798 - Added wxString/C array constructors to wxArrayString.
1799 - Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev)
1800
1801 All (GUI):
1802
1803 - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original
1804   GetBitmap is renamed GetBitmapPtr.
1805 - Added XPM data constructor to wxImage.
1806 - Added style parameter to wxBufferedDC to allow buffering just the client, or
1807   the whole virtual area.
1808 - Restored ability to set a custom splitter sash size with SetSashSize.
1809 - Fixed wxScrolledWindow sizer behaviour so that the virtual size
1810   isn't used to set the window size.
1811 - Added wxTE_BESTWRAP (based on patch by Mart Raudsepp).
1812 - wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of
1813   splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur).
1814 - Added wxImage::IsTransparent().
1815
1816 Unix:
1817
1818 - Fixed build on Linux/AMD64.
1819
1820 wxMSW:
1821
1822 - Added "orient" parameter to wxMDIParentFrame::Tile().
1823 - wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available.
1824 - fix handling Alt-key events in wxComboBox (reported by Joakim Roubert).
1825 - wxWindow::Refresh() refreshes the window children as well.
1826 - Improved static box and radio box refresh and background colour
1827   handling (Jamie Gadd).
1828
1829 wxGTK:
1830
1831 - Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp).
1832 - Corrected wxListBox selection handling.
1833 - Corrected default button size handling for different themes.
1834 - Corrected splitter sash size and look for different themes.
1835 - Fixed keyboard input for dead-keys.
1836 - Added support for more wrapping styles (Mart Raudsepp).
1837 - GTK2.4+ wxFileDialog reimplemented to support non-modal usage better,
1838   and fix all known bugs (Mart Raudsepp).
1839
1840 wxMac:
1841
1842 - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows.
1843
1844 wxPalmOS:
1845
1846 - Native wxRadioBox implementation.
1847
1848 wxWinCE:
1849
1850 - Added wxNB_FLAT for flat-look notebooks on Windows CE.
1851 - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId.
1852   You can also override wxDialog::DoOK if you need more flexibility.
1853 - Dialog size now takes into account SIP or menubar.
1854 - Panels more naturally white on PocketPC.
1855 - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes
1856   with correct titlebar style.
1857 - Frames have Ctrl+Q accelerator set automatically, as per the
1858   PocketPC guidelines
1859 - Documented issues in manual under wxWinCE topic.
1860 - Made (Un)RegisterHotKey WinCE-aware.
1861 - Sends wxEVT_HIBERNATE event.
1862 - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE.
1863 - Added wxTE_CAPITALIZE for CAPEDIT controls.
1864 - wxDialog::GetToolBar can be used if you need to add buttons
1865   to the dialog's toolbar.
1866
1867 2.5.4
1868 -----
1869
1870 All:
1871
1872 - wxEvent and derived classes don't have public members any more, you must
1873   use accessors methods now (Mart Raudsepp)
1874 - new classes for reading and writing ZIP files (M.J.Wetherell)
1875 - large files support for wxFFile (M.J.Wetherell)
1876 - classes in the manual are now cross-referenced (Zbigniew Zagórski)
1877 - Norwegian (BokmÃ¥l) translation added (Hans F. Nordhaug)
1878 - wxDynamicLibrary::HasSymbol() added
1879 - added wxEXEC_NODISABLE flag to be used with wxExecute(wxEXEC_SYNC)
1880 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
1881 - added wxURI, a class for dealing with Uniform Resource Identifiers
1882 - changed wxURL to inherit from wxURI and provide assignment and comparison
1883 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
1884 - added versions of MB2WC and WC2MB for wxMBConv that works for embedded null chars
1885 - Unicode support in wxODBC is now fully implemented
1886 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
1887   SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
1888   behavior between Unicode and non-unicode builds
1889 - BLOB example added to samples/db (thanks to Casey O'Donnell)
1890 - use wxStream::GetLength() instead of deprecated GetSize()
1891 - wxGetOsDescription() is now more precise (Olly Betts)
1892 - XRC supports system fonts and colours (Ray Gilbert)
1893 - Added flags argument to wxKill/wxProcess::Kill to kill child processes.
1894 - Added wxPrintFactory classes so that it is possible to add a new
1895   print system backend at run-time. This was required by the new GNOME
1896   printing stuff in the GTK port.
1897 - Deprecated print setup dialog.
1898 - Added support to the wxODBC classes for Firebird 1.5 database
1899 - The samples/db sample program now includes an optional example of using a BLOB
1900   datatype (if BLOB support is enabled and supported by the database)
1901 - added wxDynamicLibrary::ListLoaded()
1902 - wxGetPowerType() and wxGetBatteryState() addition
1903 - wxSystemSettings::GetSystem*() members deprecated and replaced with
1904   wxSystemSettings::Get*()
1905 - wxWindowBase::DoGetBestSize now includes the difference (if any) between
1906   the client size and total size of the window.  Code that sets the
1907   client size using the best size, or that added extra space to sizers
1908   to compensate for this bug may need to be changed.
1909 - Changed calculation of scrolling area to not clip away some bits
1910   due to a rounding error.
1911 - Changed GetVirtualSize() to return client size by default until
1912   SetVirtualSize() gets called. From then on it will only return that.
1913 - Various changes to how wxListCtrl and wxTreeCtrl react to right
1914   mouse clicks and left mouse click for starting a drag operation.
1915 - "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
1916 - wxFFile::ReadAll() now takes an optional wxMBConv parameter
1917 - wxCommandProcessor::MarkAsSaved() and IsDirty() added (Angela Wrobel)
1918 - added wxStackWalker and related classes (Win32 and some Unix versions only)
1919
1920
1921 All (GUI):
1922
1923 - added wxMediaCtrl
1924 - added wxDatePickerCtrl
1925 - wxHtmlWindow now supports background images given in <body> tag
1926 - wxSplitterWindow now supports gravity parameter (Zbigniew Zagórski)
1927 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
1928 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
1929 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
1930   item remembers its wxRect area (Brian A. Vanderburg II)
1931 - wxBookCtrl renamed to wxBookCtrlBase, wxBookCtrl is reserved for most native
1932   book control (for now wxChoicebook for MSSmartphone, wxNotebook for others).
1933   Necessary event macros, types and styles mapped accordingly.
1934 - new wxBrush::IsHatch() checking for brush type replaces IS_HATCH macro
1935 - wxProgressDialog accepts smooth gauge again (wxPD_SMOOTH style)
1936 - wxProgressDialog new style: wxPD_CAN_SKIP which provides skipping some parts
1937   of the progress (with new "Skip" button in dialog)
1938 - wxGenericListCtrl::SetItemState(-1) now changes the state of all items as
1939   in wxMSW version (Gunnar Roth)
1940 - added wxImage::InitAlpha()
1941
1942 Unix:
1943
1944 - wxPuts() now correctly outputs trailing new line in Unicode build
1945
1946 wxGTK:
1947
1948 - Added printing support by way of using libgnomeprint. The library
1949   now checks at runtime, if the library is installed and will use it
1950   if it is. Otherwise, it will fall back to the old PostScript printing
1951   code, from which the Pango drawing code was removed.
1952 - Implemented/improved wxDC::DrawRotatedText()
1953 - fixed wxFileDialog::SetWildcard()
1954 - native file dialog is now used if available (Zbigniew Zagorski)
1955 - implemented wxTextCtrl::Freeze() and Thaw(). The GtkTextBuffer
1956   is not a valid one during frozen state. Get a pointer to it right
1957   after wxTextCtrl creation if you really need to. (Mart Raudsepp)
1958 - Changed calls to GTK+ 2.4.x functions so that the code checks at
1959   runtime, which library version is installed so that these functions
1960   are only called with GTK+ 2.4.x installed and should yield linker
1961   errors otherwise.
1962 - wxTextCtrl text insertion efficiency fixed. (Mart Raudsepp)
1963 - Added wxRawBitmap support
1964 - Corrected Input method handler code (for Chinese etc.) and its
1965   interaction with wxWidgets' events.
1966 - wxTE_AUTO_URL implemention for wxGTK2 multiline wxTextCtrls (Mart Raudsepp)
1967
1968 wxMac:
1969
1970 - Vertical sliders oriented consistent with MSW/GTK (0 at top) (Kevin Hock)
1971 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
1972 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
1973 - wxJoystick now works on OSX
1974
1975 wxMSW:
1976
1977 - fixed enhanced metafiles loading from files (Andreas Goebel)
1978 - wxRadioButtons no longer have to be consecutive in a group
1979 - fixed spurious selection of combobox text during resize
1980 - pass correct tool id (and not always -1) to EVT_TOOL_RCLICKED() handler
1981 - added wxRegKey::Export(file)
1982
1983 wxWinCE:
1984 - Added support for MS Handheld PC 2000. This was done before 2.5.4,
1985   but not mentioned anywhere.
1986 - Added (preliminary) support for sockets
1987
1988 wxUniv:
1989
1990 - wxBU_... button align flags support
1991 - vertical notebook orientation support
1992 - 3rd state support for checkboxes
1993 - wxLB_SORT and wxCB_SORT now cause case-insensitive sorting
1994
1995 wxPalmOS:
1996
1997 - William Osborne has won and new port was born
1998   (see: "wxPalmOS porting challenge")
1999 - polishing of the port (unnecessary 2.4 API compatibility, removed
2000   all wxMSW specific code which was base for the new port)
2001 - enumeration of available volumes
2002 - native wxPrefConfig around Preferences database
2003 - native wxProgressDialog implementation
2004 - native wxColourDialog implementation
2005 - native wxSystemSettings colours
2006 - native wxButton implementation
2007 - native wxCheckBox implementation
2008 - native wxSlider implementation
2009 - native wxToggleButton implementation
2010 - native wxRadioButton implementation
2011 - native wxStaticText implementation
2012 - native wxDatePickerCtrl implementation
2013
2014
2015 2.5.3
2016 -----
2017
2018 All:
2019
2020 - support for large (>2 Gb) files in wxFile (Tim Kosse)
2021 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
2022 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
2023 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
2024 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
2025 - support msgids in charsets other than C and languages other than English
2026   (based on patch by Stefan Kowski)
2027 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
2028 - basic UDP sockets support (Lenny Maiorani)
2029 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
2030 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
2031 - active mode support in wxFTP (Randall Fox)
2032 - sped up wxHTTP and wxFTP
2033 - added wxStringInput/OutputStreams
2034 - added wxFileConfig::Save(wxOutputStream)
2035 - fixed wxString's behavior with inserted null characters
2036
2037 All (GUI):
2038
2039 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
2040 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
2041   of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
2042   is discouraged
2043 - added ..._CMD_...(id) variants for wxGrid event table entry macros
2044 - added wxWindow::Navigate for programmatic navigation to the next control
2045 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
2046 - added wxKeyEvent::GetUnicodeKey()
2047 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
2048 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
2049 - added status bar fields styles support (Tim Kosse)
2050 - added convenience functions wxSizer::AddSpacer() and
2051   wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
2052 - added samples/splash
2053 - added support for stock buttons
2054 - added wxTopLevelWindow::RequestUserAttention()
2055 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
2056 - recursive wxSizer::Show for subsizer and return value if element was found
2057 - added wxChoicebook control
2058 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
2059 - the XRC contrib library was moved to the core
2060 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
2061 - it is now possible to create a wxFont with given size in pixels (d2walter)
2062 - added wxTopLevelWindow::IsActive()
2063 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
2064   supported, instead of zero.
2065 - IMPLEMENT_DYNAMIC_CLASS2 macro compilation fixed (Serge Bakkal)
2066
2067 Unix:
2068
2069 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
2070 - security fixes to wxSingleInstanceChecker
2071 - wx-config script was modified to allow choosing from multiple installed
2072   builds of wxWidgets and to return flags/libs for selected libraries only
2073 - wx-config has new --version-full option
2074
2075 wxCocoa:
2076
2077 - added Unicode compatibility layer for OSX 10.2
2078 - fixed so that wxCocoa runs in OSX 10.2
2079 - Tooltips now supported
2080 - wxSound now supported
2081 - wxDisplay now supported
2082 - Some stock cursors now supported
2083
2084 wxMac:
2085
2086 - fixed MLTE text control GetLineText and GetLineLength on OSX
2087 - added OSX wxTaskBarIcon implementation for the OSX Dock
2088 - added Unicode compatibility layer for OSX 10.2
2089 - wxGetKeyState now works with nearly all wx key codes
2090
2091 wxGTK:
2092
2093 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
2094   configure if you want to use GTK+ 1.2
2095 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
2096 - implemented wxColourDialog as native dialog
2097 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
2098 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
2099 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
2100 - added support for wxCHK_3STATE style (GTK2 only)
2101 - implemented text underlining under GTK2
2102 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
2103 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
2104   in wxSystemSettings::GetMetric (Mart Raudsepp)
2105 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
2106   freedesktop.org's wm-spec (Mart Raudsepp)
2107 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
2108 - implemented alpha channel support in wxBitmap
2109 - added native GTK+2 wxArtProvider implementation with ability to load
2110   icons from icon theme in addition to recognized stock art
2111 - fixed crash on 64 bit platforms (Paul Cornett)
2112
2113 wxMotif:
2114
2115 - added support for wxCHK_3STATE style (3 state checkbox)
2116
2117 wxMSW:
2118
2119 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
2120 - set wxKeyEvent::m_uniChar in Unicode build
2121 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
2122 - wxFileDialog can now be moved and centered (Randall Fox)
2123 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
2124 - fixed wxTextCtrl::SetMaxLength for rich edit controls
2125 - fixed flat style for toolbars under XP, Windows Classic style
2126 - fixed truncation of transferred data in wxConnection under unicode build
2127 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
2128 - fixed wxMaximizeEvent generation in wxFrame
2129 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
2130 - implemented support for selecting printer bin (Steven Van Ingelgem)
2131 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
2132 - fixed print setup problem (always uses default printer) in Unicode build
2133
2134 wxUniv/X11:
2135
2136 - fixed fatal crash when opening a menu
2137
2138 wxWinCE:
2139
2140 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
2141 - added native WinCE driven smartphone wxChoice implementation using spinners
2142 - added automated but customizable handling of native WinCE driven smartphone menus
2143 - fixed wxRadioBox and wxStaticBox
2144
2145 wxHTML:
2146
2147 - added support for nested index entries and index entries pointing to more
2148   than one page to wxHtmlHelpController
2149
2150
2151 2.5.2
2152 -----
2153
2154 All:
2155
2156 - Hindi translation added (Dhananjaya Sharma)
2157 - Brazilian Portuguese translation added (E. A. Tacao)
2158 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
2159   with anything not deriving from wxObject will fail at compile time (instead
2160   of run-time) now
2161 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
2162   wxHashMap/wxHashSet are just typedefs for them. This makes impossible
2163   to forward declare these classes.
2164
2165 All (GUI):
2166
2167 - wxHtmlWindow now delays image scaling until rendering,
2168   resulting in much better display of scaled images
2169 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
2170 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
2171 - support for KOI8-U encoding added (Yuriy Tkachenko)
2172 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
2173   sizer items that are windows.  This means that GetAdjustedBestSize
2174   will now be called by default to determine the minimum size that a
2175   window in a sizer should have.  If you want to still use the initial
2176   size (and not the BestSize) then use the wxFIXED_MINSIZE flag.  When
2177   windows are added to a sizer their initial size is made the window's
2178   min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
2179   are also forwarded to SetSizeHints for window items.
2180 - added wxRegEx::GetMatchCount()
2181 - it is now possible to display images in wxHtmlListBox
2182
2183 wxMSW:
2184
2185 - wxWindow::Freeze()/Thaw() can now be nested
2186 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
2187   XP theming (some applications look bad without 3D borders)
2188 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
2189 - wxRegConf couldn't read global settings without admin privileges and didn't
2190   even try to do it by default -- now it does
2191 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
2192   won't exit even though there are no top level windows
2193 - wxFileName::GetModificationTime() works with opened files too now
2194 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
2195 - fixed wxFileDataObject in Unicode build (Alex D)
2196 - subindented paragraphs support (Tim Kosse)
2197
2198 wxGTK:
2199
2200 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
2201
2202 wxMotif:
2203
2204 - removed wxMenuItem::DeleteSubMenu()
2205 - wxButtons use Motif default size, which is smaller than it used to be
2206   and closer to wxMSW/wxGTK look. This can be disabled by setting
2207   motif.largebuttons system option to 1 (see wxSystemOptions).
2208
2209 wxUniv/X11:
2210
2211 - implemented DrawRoundedRectangle() (clawghoul)
2212
2213 wxHTML:
2214
2215 - improved tables and lists layout algorithms (Tim Kosse)
2216 - <div> handling fix (Xavier Nodet)
2217
2218 Unix:
2219
2220 - fixed priorities of mailcap entries (David Hart)
2221 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
2222
2223 wxODBC:
2224
2225 - Full Unicode support is now available
2226 - BLOB support is working
2227
2228
2229 2.5.1
2230 -----
2231
2232 All:
2233
2234 - event table macros now do some minimal type safety checks (Michael Sögtrop)
2235 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
2236 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
2237 - wxHTTP::GetResponse() added (David Nock)
2238 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
2239 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
2240 - added translation to Afrikaans (Petri Jooste)
2241 - Spanish translations updated (Javier San Jose)
2242 - added gettext plural forms support to wxLocale (Michael N. Filippov)
2243 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
2244 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
2245 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
2246 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
2247   (as in 2.5.0).
2248 - added some extra convenience functions to wxRect such as
2249   GetBottomRight (Hajo Kirchhoff)
2250 - changed built-in regex library to a Unicode-compatible version based
2251   on TCL sources (Ryan Norton, M. J. Wetherell)
2252 - added extra convenience functions to wxPoint for adding a
2253   wxSize (Wlodzimierz Skiba)
2254 - intermediate wxIPaddress class added to prepare for
2255   wxIPV6address (Ray Gilbert)
2256 - added overloaded constructors and Create() methods taking wxArrayString
2257   for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
2258   wxSingleChoiceDialog, wxMultipleChoiceDialog
2259 - renamed wxWave class to wxSound
2260
2261 All (GUI):
2262
2263 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
2264 - added some support for C++ exceptions in the library (do read the manual!)
2265 - added wxListCtrl::GetViewRect()
2266 - added wxTextCtrl::MarkDirty()
2267 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ã…gren)
2268 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
2269 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
2270 - status text is now restored after wxMenu help is shown in it
2271 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
2272 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
2273 - wxColourDatabase API now uses objects instead of pointers
2274 - added resolution option to JPEG image handler (Jeff Burton)
2275 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
2276 - wxGenericDirCtrl now accepts multiple wildcards
2277 - added focus event forwarding to wxGrid (Peter Laufenberg)
2278 - fixed scrollbar problem in wxGrid (not showing scrollbars
2279   when sizing smaller) (Shane Harper)
2280 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
2281 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
2282 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
2283   added or inserted, or NULL on failure.
2284 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
2285 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
2286 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
2287 - wxBufferedDC now allows to preserve the background and is documented
2288 - added wxDC::GetPartialTextExtents
2289
2290 wxMSW:
2291
2292 - wxWidgets now builds under Win64
2293 - fixed DDE memory leaks
2294 - fixed wxTE_*WRAP styles handling
2295 - wxTextCtrl::GetValue() works with text in non default encoding
2296 - changed wxCrashReport to generate minidumps instead of text files
2297 - wxRadioButtons are now checked when they get focus (standard behaviour)
2298 - several fixes to owner drawn menu items (Christian Sturmlechner)
2299 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
2300 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
2301 - MDI child frames are not always resizeable any more (Andrei Fortuna)
2302 - fixed enumerating of entries/groups under '/' in wxRegConfig
2303 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
2304 - added wxPATH_NORM_SHORTCUT to wxFileName
2305 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
2306   should now pass the correct value even if the handler for
2307   wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
2308 - wxFileDialog now returns correct filter index for multiple-file dialogs
2309 - added wxTextCtrl::HitTest()
2310 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
2311 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
2312 - accelerators are now initially hidden if appropriate (Peter Nielsen)
2313 - background colour of a wxComboBox may now be set
2314 - fixed wxListCtrl::GetItemText/BackgroundColour()
2315 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
2316 - Added msw.remap system option so colourful toolbar buttons
2317   aren't mangled if you set it to 0. The default is 1
2318 - Toolbar buttons are now centred if the bitmap size is smaller
2319   than the specified default size
2320 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
2321
2322 wxGTK:
2323
2324 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
2325 - fix for crash when using user-dashed lines (Chris Borgolte)
2326 - fixed wxChoice::Delete() in presence of client data
2327 - allow calling wxWindow::SetFont if window not yet created
2328 - use same average character width as other ports when calculating dialog units
2329 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
2330 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
2331 - memory leaks fixes in wxFileDialog (John Labenski)
2332 - don't drop click events from triple clicks (Frode Solheim)
2333
2334 wxMac:
2335
2336 - use same average character width as other ports when calculating dialog units
2337 - implemented handling of mouse wheel
2338 - fix for long file names (longer than 32 characters) in file dialogs
2339 - use Unix sockets for Mach-o builds
2340
2341 wxMotif:
2342
2343 - look for Motif 2.1 headers before Motif 1.2 ones in configure
2344
2345 wxHTML:
2346
2347 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
2348   on Unix (Markus Sinner)
2349
2350 Unix:
2351
2352 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
2353 - implemented asynchronous playback in wxSound and added SDL backend in
2354   addition to existing OSS one
2355 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
2356
2357
2358 2.5.0
2359 -----
2360
2361 All:
2362
2363 - It is now possible to build several smaller libraries instead of single
2364   huge wxWidgets library; wxBase is now dependency of GUI ports rather then
2365   separately compiled library
2366 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
2367 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
2368 - use true/false throughout the library instead of TRUE/FALSE
2369 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
2370 - added wxDirTraverser::OnOpenError() to customize the error handling
2371 - added wxArray::SetCount()
2372 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
2373   by default in Unicode mode
2374 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
2375 - added wx/math.h (John Labenski)
2376 - added Catalan translations (Pau Bosch i Crespo)
2377 - added Ukrainian translations (Eugene Manko)
2378 - fixed bug with deleting entries at root level in wxFileConfig
2379 - chkconf.h now includes platform-specific versions (for MSW
2380   and Mac) which contain some tests that were in setup.h
2381 - added event sink argument to wxEvtHandler::Connect()
2382 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
2383 - added wxSocket::IPAddress() (Chris Mellon)
2384 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
2385 - added wxRecursionGuard class
2386 - added wxThreadHelper class (Daniel Howard)
2387 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
2388   When enabled, wxString will derive from std::string, wxArray from,
2389   std::vector, wxList from std::list. In addition wxHashTable will be
2390   implemented in terms of wxHashMap.
2391 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
2392   it can't be delete()d). It permits writing code which will work
2393   both with wxUSE_STL==1 and wxUSE_STL==0.
2394
2395 wxBase:
2396
2397 - added Watcom makefiles
2398 - fixed bug with searching in sorted arrays (Jürgen Palm)
2399
2400 All GUI ports:
2401
2402 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
2403 - added wxListbook control
2404 - added alpha channel support to wxImage
2405 - added wxRenderer class allowing to customize the drawing of generic controls
2406 - added wxCLOSE_BOX style for dialogs and frames
2407 - added wxSplitterWindow and wxWizard handlers to XRC
2408 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
2409 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
2410 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
2411 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
2412 - improved contrib/utils/convertrc parsing (David J. Cooke)
2413 - fixed handling of URLs and filenames in wxFileSystem
2414 - implemented alignment for wxGrid bool editor and renderer
2415 - support wxListCtrl columns alignment for all platforms and not just MSW
2416 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
2417 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
2418 - fixed user dash handling for MSW and GTK (Ken Edwards)
2419 - WXR resources can now be used in Unicode builds
2420 - it is now possible to use several wxFileHistory objects in the same menu
2421   by giving them different base IDs (Dimitri Schoolwerth)
2422 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
2423 - FL: removed const from EnableTool parameters
2424 - FL: signal child window when toolbar is closed
2425 - In various places, changed tests for pathsep on last char of string to call
2426   wxEndsWithPathSeparator(s)
2427 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
2428 - Minor improvements to document/view framework, including
2429   delayed deletion of a document (until after the user has chosen
2430   a new document), and more intelligent addition of filenames to
2431   the file history, including not adding filenames if not using the
2432   default extension for the template
2433 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
2434 - Added BLOB support to wxDB (John Skiff)
2435 - wxWizard now validates when pressing Back or Next
2436 - Implemented wxNotebook::DoGetBestSize so Fit now works
2437 - Added FindItemByPosition to wxMenu
2438 - wxTimer now derives from wxEvtHandler and is its own owner object by default
2439 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
2440   to allow better rich text support.
2441 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
2442 - Added m_ prefix to wxColourData and wxFontData members
2443 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
2444   custom filters as well as HTML viewing.
2445 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
2446 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
2447   user OnIdle events do not interfere with crucial internal processing.
2448 - wxWindow::UpdateWindowUI is now a documented function that
2449   sends wxUpdateUIEvents, and can be overridden. It has a helper function
2450   DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
2451 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
2452   CanUpdate, to assist with optimising update event frequency.
2453 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
2454   determine whether a window should receive idle events.
2455 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
2456   styles for use with conservative idle and update event modes.
2457 - send menu update events only when a menu is about to be used (MSW/GTK)
2458 - improved event processing performance (Hans Van Leemputten)
2459 - added wxMirrorDC class
2460 - printing improvements: GetPageInfo() gets called after the DC has
2461   been set and after OnPreparePrinting() has been called so it can
2462   report the number of pages accurately; doesn't try to set
2463   number of pages in print dialog, in common with other Windows apps;
2464   wxHTML easy printing's preview shows number of pages
2465   correctly; preview scrollbars are set correctly; keyboard navigation
2466   improved
2467
2468 Unix:
2469
2470 - fixed compilation on systems with zlib installed but < 1.1.3 version
2471 - fixed compilation on Solaris 7 with large files support enabled
2472 - added wxTaskBarIcon implementation for X11
2473 - added support for GNU/Hurd in configure
2474 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
2475
2476 Generic controls:
2477
2478 - implemented wxListCtrl::Refresh() (Norbert Berzen)
2479 - support adding/removing columns dynamically (Donald C. Taylor)
2480 - wxToolBarSimple, property list classes, wxTreeLayout moved
2481   to contrib/src/deprecated
2482
2483 wxGTK:
2484
2485 - added support for label mnemonics to GTK+2 build (Michael Moss)
2486 - added native wxMessageDialog implementation for GTK+2 build
2487 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
2488 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
2489 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
2490   window managers that support _NET_WM_STATE_FULLSCREEN
2491 - added wxEVT_MENU_OPEN event generation
2492 - fixed bug in generic file selector causing incomplete file extensions to
2493   be appended to filenames with no extension
2494 - added wxTextCtrl::SetSelection implementation for GTK+ 2
2495 - fixed wxTextCtrl::IsEditable() for GTK+ 2
2496 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
2497 - don't consume 100% CPU when showing a popup menu
2498
2499 wxMac:
2500
2501 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
2502 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
2503
2504 wxMSW:
2505
2506 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
2507 - added wxCrashReport
2508 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
2509 - support for accelerator keys in the owner drawn menus (Derry Bryson)
2510 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
2511 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
2512 - fixed bugs in wxThread::Wait() and IsAlive()
2513 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
2514 - fixes for compilation with OpenWatcom and DigitalMars compilers
2515 - fixed wxStaticText best size calculation (was wrong by '&' width)
2516 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
2517 - added wxNotebook::HitTest() (Otto Wyss)
2518 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
2519 - when using DLL, wxLocalFSHandler was not being exported
2520 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
2521 - Windows XP manifest is now included in wx.rc; it is no longer necessary
2522   to ship .exe.manifest file with applications to support XP themes
2523 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
2524   or if user's default locale is Unicode-only
2525 - improved border handling under Windows XP
2526 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
2527   enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
2528   wxWidgets to use the theme tab colour for control backgrounds.
2529 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
2530 - fixed release mode build with VC 7.x (Martin Ecker)
2531 - added support for wxALWAYS_SHOW_SB style
2532 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
2533
2534 wxMotif:
2535
2536 - made wxFileDialog behaviour with complex wildcards more sensible (it still
2537   does not support all the features other ports do); refer to wxFileDialog
2538   documentation for a detailed explanation
2539 - implemented wxWakeUpIdle
2540 - for Motif 2.0, used the native combobox widget instead of the GPL'd
2541   xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
2542   with Motif 1.x compatibility
2543 - implemented wxToggleButton
2544 - wxRadioBox and wxStaticBox now use the default shadow (border) style
2545   instead of a sunken border
2546 - implemented wxBitmapDataObject
2547 - finished wxClipboard implementation
2548
2549 wxUniv:
2550
2551 - controls in toolbars now supported
2552
2553 wxHTML:
2554
2555 - added text selection to wxHtmlWindow
2556 - added SetFonts to HTML printing classes (Adrian Philip Look)
2557 - it is now possible to force page break when printing by inserting
2558   <div style="page-break-before:always"> into the markup (Greg Chicares)
2559 - wxHtmlWindow now uses double buffering to prevent flicker
2560
2561
2562 OLD CHANGES
2563 ===========
2564
2565 INCOMPATIBLE CHANGES SINCE 2.2.x
2566 ================================
2567
2568     Please take a few minutes to read the following list, especially
2569     paying attention to the most important changes which are marked
2570     with '!' in the first column.
2571
2572     Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
2573     is defined to 1 if you wish to retain maximal compatibility with 2.2
2574     series -- however you are also strongly encouraged to try to compile
2575     your code without this define as it won't be default any longer in
2576     2.6 release.
2577
2578     NB: if you want to build your program with different major versions
2579         of wxWidgets you will probably find the wxCHECK_VERSION() macro
2580         (see the documentation) useful.
2581
2582
2583 wxBase:
2584
2585 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
2586   under 64 bit architectures, please replace it with RemoveAt() in your
2587   code.
2588
2589 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
2590   architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
2591   used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
2592   arrays containing non-pointers.
2593
2594 - wxObject::CopyObject() and Clone() methods were removed because they
2595   simply don't make sense for all objects
2596
2597 - wxEvent now has a pure virtual Clone() method which must be implemented
2598   by all derived classes, if you have user-defined event classes please
2599   add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
2600
2601 - small change to wxStopWatch::Pause() semantics, please see the documentation
2602
2603 - unlikely but possible incompatibility: the definition of TRUE has changed
2604   from "1" to "(bool)1" (and the same thing for FALSE), so the code which
2605   could be erroneously compiled previously such as doing "return FALSE" from
2606   a function returning a pointer would stop compiling now (but this change
2607   is not supposed to have any effects on valid code)
2608
2609 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
2610   must modify YourApp::OnAssert() signature if you were using it to override
2611   the default assert handling.
2612
2613 All (GUI):
2614
2615 ! the event type constants are not constants any more but are dynamically
2616   allocated during run-time which means that they can't be used as case labels
2617   in the switch()es, you must rewrite them to use if()s instead
2618
2619   You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
2620   but this is strongly discouraged, please consider changing your code
2621   instead!
2622
2623 ! wxDialog does not derive from wxPanel any longer - if you were using it in
2624   your code, please update it. The quick fix for the most cases is to replace
2625   the occurrences of wxPanel with wxWindow.
2626
2627 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
2628   generated at all, so you must call event.Skip() in your OnKeyDown() if
2629   you want to get OnChar() as well
2630
2631 - in general, the key events sent for the various non ASCII key combinations
2632   have been changed to make them consistent over all supported platforms,
2633   please see the wxKeyEvent documentation for details
2634
2635 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
2636   have changed (to fix some unfortunate clashes), please check your code to
2637   ensure that no tests for wxYES or wxNO are broken: for example, the following
2638   will *NOT* work any longer:
2639
2640         if ( flags & wxYES_NO )
2641                 ... do something ...
2642         if ( flags & wxYES )
2643                 ... do something else ...
2644
2645 - static wxWizard::Create() doesn't exist any more, the wizards are created
2646   in the same way as all the other wxWindow objects, i.e. by directly using
2647   the ctor
2648
2649 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
2650
2651 - wxGridCellAttrProvider class API changed, you will need to update your code
2652   if you derived any classes from it
2653
2654 - wxImage::ComputeHistogram()'s signature changed to
2655   unsigned long ComputeHistogram(wxImageHistogram&) const
2656
2657 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
2658   now it results in compile-time error instead of run-time crashes
2659
2660 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
2661   they only generate EVT_KEY_DOWN/UP() ones
2662
2663 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
2664   parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
2665   from happening
2666
2667 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
2668   for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
2669   and GetCount() instead of Number() in many classes
2670
2671 - wxCmdLineParser does not use wxLog to output messages anymore.
2672   to obtain the previous behaviour, add
2673   wxMessageOutput::Set(new wxMessageOutputLog); to your program
2674   (you will need to #include <wx/msgout.h>)
2675
2676 wxMSW:
2677
2678 ! build system changed: setup.h is not a static file in include/wx any more
2679   but is created as part of the build process under lib/<toolkit>/wx
2680   where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
2681   the include path in your make/project files appropriately. Furthermore,
2682   xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
2683   class. You'll need to remove all references to xpm.lib from your
2684   make/project files. Finally, the library names have changed as well and now
2685   use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
2686   where 'u' appears for Unicode version, 'd' -- for the debug one and version
2687   is only present for the DLLs builds.
2688
2689 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
2690   style to avoid it
2691
2692 - all overloads of wxDC::SetClippingRegion() combine the given region with the
2693   previously selected one instead of replacing it
2694
2695 - wxGetHomeDir() uses HOME environment variable and if it is set will not
2696   return the programs directory any longer but its value (this function has
2697   never been meant to return the programs directory anyhow)
2698
2699 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
2700   anymore. The file was removed from wxMSW
2701
2702
2703 Unix ports:
2704
2705 ! You should use `wx-config --cxxflags` in your makefiles instead of
2706   `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
2707   and the compiler flags for C++ files only, CFLAGS should still be used
2708   to compile pure C files.
2709
2710
2711 wxThread and related classes:
2712
2713 - The thread-related classes have been heavily changed since 2.2.x versions
2714   as the old code had many serious problems. This could have resulted in
2715   semantical changes other than those mentioned here, please review use of
2716   wxThread, wxMutex and wxCondition classes in your code.
2717
2718 ! wxCondition now *must* be used with a mutex, please read the (updated) class
2719   documentation for details and revise your code accordingly: this change was
2720   unfortunately needed as it was impossible to ensure the correct behaviour
2721   (i.e. absence of race conditions) using the old API.
2722
2723 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
2724   recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
2725   documentation for the discussion of the recursive mutexes.
2726
2727 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
2728   this is was unique example of a thread-unsafe-by-design method.
2729
2730
2731 OTHER CHANGES
2732 =============
2733
2734 2.4.0
2735 -----
2736
2737 wxMSW:
2738
2739 - fixed loss of client data in wxChoice::SetString()
2740
2741 2.3.4
2742 -----
2743
2744 All:
2745
2746 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
2747 - added wxSizer::Show()/Hide() (Carl Godkin)
2748 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
2749
2750 Unix (Base/GUI):
2751
2752 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
2753 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
2754 - shared library symbols are now versioned on platforms that support it (Linux)
2755
2756 wxGTK:
2757 - Further work for GTK 2.0 and Unicode support.
2758 - Addition of native frame site grip.
2759
2760 wxX11:
2761 - Unicode support through Pango library.
2762
2763 wxMSW:
2764
2765 - fixed crashes in wxListCtrl under XP
2766 - added context menu for rich edit wxTextCtrl
2767
2768 wxHTML:
2769
2770 - fixed wxHTML to work in Unicode build
2771
2772 2.3.3
2773 -----
2774
2775 wxBase:
2776
2777 - building wxBase with Borland C++ is now supported (Michael Fieldings)
2778 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
2779 - fixes to the command line parsing error and usage messages
2780 - modified wxFileName::CreateTempFileName() to open the file atomically
2781   (if possible) and, especially, not to leak the file descriptors under Unix
2782 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
2783 - fixes to AM_PATH_WXCONFIG autoconf macro
2784 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
2785   after (non standard) STL hash_map
2786 - wxLocale now works in Unicode mode
2787 - wxLocale can now load message catalogs in arbitrary encoding
2788 - added wxShutdown() function (Marco Cavallini)
2789 - added wxEXPLICIT macro
2790 - IPC classes improved and memory leaks fixed (Michael Fielding).
2791   Global buffer removed, duplication in docs removed
2792 - debug new/free implementations made thread-safe
2793
2794 Unix (Base/GUI):
2795
2796 - wxWidgets may be built using BSD and Solaris (and possibly other) make
2797   programs and not only GNU make
2798 - wxTCP-based IPC classes now support communicating over Unix domain sockets
2799 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
2800   lazy linking issues have been solved by linking a single module (.o) into
2801   the shared library (two step link using distrib/mac/shared-ld-sh)
2802 - fixed thread priority setting under Linux
2803
2804 All (GUI):
2805
2806 - it is now possible to set the icons of different sizes for frames (e.g. a
2807   small and big ones) using the new wxIconBundle class
2808 - implemented radio menu items and radio toolbar buttons
2809 - added possibility to show text in the toolbar buttons
2810 - added wxArtProvider class that can be used to customize the look of standard
2811   wxWidgets dialogs
2812 - significantly improved native font support
2813 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
2814   wxHashTable
2815 - added IFF image handler
2816 - fixed using custom renderers in wxGrid which was broken in 2.3.2
2817 - support for multiple images in one file added to wxImage
2818   (TIFF, GIF and ICO formats)
2819 - support for CUR and ANI files in wxImage added (Chris Elliott)
2820 - wxTextCtrl::GetRange() added
2821 - added wxGetFontFromUser() convenience function
2822 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
2823 - added Hungarian translations (Janos Vegh)
2824 - added wxImage::SaveFile(filename) method (Chris Elliott)
2825 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
2826   for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
2827 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
2828 - added wxTextCtrl::EmulateKeyPress()
2829 - Added wxMouseCaptureChangedEvent
2830 - Added custom character filtering to wxTextValidator
2831 - wxTreeCtrl now supports incremental keyboard search
2832 - wxMessageOutput class added
2833 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
2834   so that erroneous help strings are no longer found as the hash
2835   table fills up
2836 - updated libpng from 1.0.3 to 1.2.4
2837 - Added wxView::OnClosingDocument so the application can do cleanup.
2838 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
2839   renamed to wxGenericImageList, so they can be used on wxMSW
2840   (Rene Rivera).
2841 - Added wxTreeEvent::IsEditCancelled so the application can tell
2842   whether a label edit was cancelled.
2843 - added static wxFontMapper::Get() accessor
2844
2845 wxMSW:
2846
2847 - small appearance fixes for native look under Windows XP
2848 - fixed the bug related to the redrawing on resize introduced in 2.3.2
2849 - fixed multiple bugs in wxExecute() with IO redirection
2850 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
2851 - huge (40*) speed up in wxMask::Create()
2852 - changing wxWidgets styles also changes the underlying Windows window style
2853 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
2854 - fixed flicker in wxTreeCtrl::SetItemXXX()
2855 - fixed redraw problems in dynamically resized wxStaticText
2856 - improvements to wxWidgets applications behaviour when the system colours
2857   are changed
2858 - choose implicit parent for the dialog boxes better
2859 - fixed wxProgressDialog for ranges > 65535
2860 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
2861   of comctl32.dll installed on the system supports it)
2862 - wxFontEnumerator now returns all fonts, not only TrueType ones
2863 - bugs in handling wxFrame styles (border/caption related) fixed
2864 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
2865   recursion any more
2866 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
2867 - the separators are not seen behind the controls added to the toolbar any more
2868 - wxLB_SORT style can be used with wxCheckListBox
2869 - wxWindowDC and wxClientDC::GetSize() works correctly now
2870 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
2871 - Multiline labels in buttons are now supported (simply use "\n" in the label)
2872 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
2873   has the capture before release it.
2874 - fixed bugs in multiple selection wxCheckListBox
2875 - default button handling is now closer to expected
2876 - setting tooltips for wxSlider now works
2877 - disabling a parent window also disables all of its children (as in wxGTK)
2878 - multiple events avoided in wxComboBox
2879 - tooltip asserts avoided for read-only wxComboBox
2880 - fixed a race condition during a thread exit and a join
2881 - fixed a condition where a thread can hang during message/event processing
2882 - increased space between wxRadioBox label and first radio button
2883 - don't fail to register remaining window classes if one fails to register
2884 - wxFontDialog effects only turned on if a valid colour was
2885   provided in wxFontData
2886 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
2887 - Bitmap printing uses 24 bits now, not 8.
2888
2889 wxGTK:
2890
2891 - wxDirDialog now presents the file system in standard Unix way
2892 - wxButton now honours wxBU_EXACTFIT
2893 - wxStaticBox now honours wxALIGN_XXX styles
2894 - added support for non alphanumeric simple character accelerators ('-', '=')
2895 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
2896   Call the new wxWindow::Update() to force an immediate update
2897 - support for more SGI hardware (12-bit mode among others)
2898 - fixed wxDC::Blit() to honour source DC's logical coordinates
2899 - implemented wxIdleEvent::RequestMore() for simple background tasks
2900 - implemented wxChoice::Delete()
2901 - fixed bad memory leak in wxFileDialog (Chris Elliott)
2902 - made internal GC pool dynamically growable
2903 - added GTK+ 2 and Unicode support
2904
2905 wxMotif:
2906
2907 - improved colour settings return values (Ian Brown)
2908 - improved border style handling for wxStaticText (Ian Brown)
2909 - improved toolbar control alignment
2910 - implemented wxSpinButton
2911 - implemented wxCheckListBox
2912 - fixed wxSpinCtrl and wxStaticLine when used with sizers
2913 - wxStaticBitmap now shows transparent icons correctly
2914
2915 wxX11:
2916
2917 - added generic MDI implementation (Hans Van Leemputten)
2918 - first cut at wxSocket support (not yet working)
2919
2920 wxMac:
2921
2922 - Many improvements
2923
2924 wxOS2:
2925
2926 - First alpha-quality release
2927
2928 wxHTML:
2929
2930 - fixed wxHtmlHelpController's cache files handling on big endian machines
2931 - added blocking and redirecting capabilities to wxHtmlWindow via
2932   wxHtmlWindow::OnOpeningURL()
2933 - fixed alignment handling in tables
2934 - fixed <font face="..."> handling to be case insensitive
2935
2936 2.3.2
2937 -----
2938
2939 New port: wxUniv for Win32/GTK+ is now included in the distribution.
2940
2941 wxBase:
2942
2943 - wxRegEx class added
2944 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
2945 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
2946 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
2947   glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
2948   capabilities at runtime instead of in the configure script.
2949
2950 All (GUI):
2951
2952 - support for virtual list control added
2953 - column images in report mode of the list control
2954 - wxFindReplaceDialog added (based on work of Markus Greither)
2955 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
2956 - polygon support in wxRegion (Klaas Holwerda)
2957 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
2958 - fixed bug with using wxExecute() to capture huge amounts of output
2959 - new wxCalendarCtrl styles added (Søren Erland Vestø)
2960 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
2961 - wxDirSelector() added (Paul A. Thiessen)
2962 - wxGrid cell editing veto support (Roger Gammans)
2963 - wxListCtrl ITEM_FOCUSED event added
2964 - support for ICO files in wxImage added (Chris Elliott)
2965 - improvements to wxDragImage (Chuck Messenger)
2966
2967 wxMSW:
2968
2969 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
2970 - new library naming convention under VC++ -- please change your application
2971   project files
2972
2973 wxGTK:
2974
2975 - fixed popup menu positioning bug
2976 - fixed the edit function for wxListCtrl (Chuck Messenger)
2977 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
2978   correctly return the key which was pressed (Chuck Messenger)
2979
2980 wxMac:
2981
2982 - support for configuration and build under Mac OS X using the Apple Developer
2983   Tools
2984
2985 wxHTML:
2986
2987 - new HTML parser with correct parsing of character entities and fixes
2988   to tags parsing
2989 - added support for animated GIFs
2990
2991 2.3.1
2992 -----
2993
2994 wxBase:
2995
2996 - Fixes for gcc 3.0
2997 - Fixed new charset detection code
2998 - ODBC Informix fixes (submitted by Roger Gammans)
2999 - Added ODBC date support to wxVariant
3000 - Added wxDir::Traverse
3001 - Added wxSingleInstanceChecker class
3002 - Removed redundant wxDebugContext functions using C++ streams,
3003   so now standard stream usage should be unnecessary
3004
3005 All (GUI):
3006
3007 - Added wxDbGrid class for displaying ODBC tables
3008 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
3009   user code can get access to the edit control when it is created, (to
3010   push on a custom event handler for example)
3011 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
3012   GetDefaultStyle methods to wxTextCtrl
3013 - Added wxSingleInstanceChecker
3014 - Improvements to Tex2RTF
3015 - Added Paul and Roger Gammans' grid controls
3016 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
3017   first-time saved
3018 - Fixed memory leak in textcmn.cpp
3019 - Various wxXML enhancements
3020 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
3021 - Fixed memory leak in DoPrint, htmprint.cpp
3022 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
3023   instead of GetId()
3024 - Added wxDbGrid combining wxODBC classes with wxGrid
3025 - Added more makefiles and project files for contrib hierarchy
3026
3027 wxMSW:
3028
3029 - Fixed wxApp::ProcessMessage so controls don't lose their
3030   accelerators when the accelerators are redefined elsewhere
3031 - Accelerators consisting of simple keystrokes (without control,
3032   alt or shift) now work
3033 - Compile fixes for Watcom C++ added
3034 - Compile fixes for Cygwin 1.0 added
3035 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
3036 - Replaced wxYield() call in PopupMenu() by a much safer
3037   wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
3038 - Enter processing in wxSpinCtrl fixed
3039 - Fixed bug in determining the best listbox size
3040 - Fix for wxFrame's last focus bug
3041 - We now send iconize events
3042 - Fixed wxFrame::SetClientSize() with toolbar bug
3043 - Added mousewheel processing
3044 - Added wxSystemSettings::Get/SetOption so we can configure
3045   wxWidgets at run time; used this to implement no-maskblt option
3046   in wxDC
3047 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
3048   child frame styles are honoured
3049
3050 wxGTK:
3051
3052 - Fixed slider rounding bug
3053 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
3054 - We now send iconize events
3055 - Fix for discrepancies between wxNotebookEvent and wxNotebook
3056   GetSelection() results
3057
3058 2.3.0
3059 -----
3060
3061 wxBase:
3062
3063 - fixed problem with wxURL when using static version of the library
3064 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
3065 - wxMimeTypesManager now can create file associations too (Chris Elliott)
3066 - wxCopyFile() respects the file permissions (Roland Scholz)
3067 - wxFTP::GetFileSize() added (Søren Erland Vestø)
3068 - wxDateTime::IsSameDate() bug fixed
3069 - wxTimeSpan::Format() now behaves more as expected, see docs
3070 - wxLocale now provides much more convenient API for setting language and
3071   detecting current system language. New API is more abstracted and truly
3072   cross-platform, independent of underlying C runtime library.
3073
3074 All (GUI):
3075
3076 - new wxToggleButton class (John Norris, Axel Schlueter)
3077 - wxCalendarCtrl not highlighting the date with time part bug fixed
3078 - wxADJUST_MINSIZE sizer flag added
3079 - FindOrCreateBrush/Pen() bug fix for invalid colour values
3080 - new wxXPMHandler for reading and writing XPM images
3081 - added new (now recommended) API for conversion between wxImage and wxBitmap
3082   (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
3083   wxImage methods and ctor)
3084 - ODBC classes now support DB2, Interbase, and Pervasive SQL
3085 - ODBC documentation complete!!
3086 - ODBC classes have much Unicode support added, but not complete
3087 - ODBC experimental BLOB support added, but not completely tested
3088 - ODBC NULL column support completed (Roger/Paul Gammans)
3089 - ODBC All "char *" and char arrays removed and replaced with wxString use
3090
3091 wxMSW:
3092
3093 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
3094 - fixed bug in MDI children flags (mis)handling
3095 - it is possible to compile wxCHMHelpController with compilers
3096   other than Visual C++ now and hhctrl.ocx is loaded at runtime
3097
3098 wxGTK:
3099
3100 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
3101
3102 wxHTML:
3103
3104 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
3105 - visual enhancements to contents panel of wxHtmlHelpController
3106
3107 2.2.0
3108 -----
3109
3110 wxBase:
3111
3112 - Fixed bug with directories with trailing (back)slashes in wxPathExists
3113 - wxString: added wxArrayString::operator==() and !=()
3114 - Fixes for wxCmdLineParser
3115 - Added wxGetLocalTimeMillis
3116 - Completed Czech translations
3117 - Some stream corrections
3118 - added missing consts to wxPoint operators
3119 - wxDateTime ParseFormat fixes
3120 - wxFile::Open(write_append) will create file if it doesn't exist
3121 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
3122
3123 All (GUI):
3124
3125 - wxGenericDragImage now allows virtual image drawing, and
3126   flicker-free dragging is now possible
3127 - Added wxPrinter::GetLastError
3128 - Fixed wxLogGui reentrancy problem
3129 - Paper names now translated
3130 - wxGrid fixes
3131 - Generic validator now caters for more cases (integers in
3132   wxTextCtrl, strings in wxChoice, wxComboBox)
3133 - Fixed crash when docview On... functions return FALSE. Show
3134   error message when an non-existent filename is typed into the Open
3135   File dialog.
3136 - Corrected Baltic font encoding handling
3137 - wxImage: enhanced TIFF code, added new platform-independent BMP
3138   writing code
3139 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
3140 - Fixed wxPropertyForm crashes in sample
3141 - wxWizard now calls TransferDataFromWindow() before calling
3142   wxWizardPage::GetNext() fixing an obvious bug
3143
3144 wxMSW:
3145
3146 - wxWindow::GetCharWidth/Height now calculated accurately.
3147   This will affect all .wxr dialog resources, so for
3148   backward compatibility, please set
3149   wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
3150 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
3151 - wxTextCtrl: implemented setting colours for rich edit controls
3152 - wxColour now accepts both grey and gray
3153 - BC++ DLL compilation fixed
3154 - Watcom C++ makefiles improved for JPEG and TIFF compilation
3155 - Fixed submenu accelerator bug
3156 - Fixed dialog focus bug (crash if the previous window to have
3157   the focus was destroyed before the dialog closed)
3158 - Too-small default wxTextCtrl height fixed
3159 - fixed "missing" initial resize of wxMDIChildFrame
3160 - wxFrame restores focus better
3161 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
3162   frames and dialogs, interferes with other window styles otherwise
3163   (sometimes you'd get a thick frame in a subwindow)
3164 - wxTextCtrl insertion point set to the beginning of the control by SetValue
3165 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
3166 - wxFileDialog: adjusts struct size if there's an error (struct
3167   sizes can be different on different versions of Windows)
3168 - wxImageList::GetSize() documented and added to wxMSW
3169 - fixed default dialog style to make them non resizeable again
3170 - fixed wxFrame::IsShown() which always returned TRUE before
3171
3172 wxGTK:
3173
3174 - Please see docs/gtk/changes.txt.
3175
3176 wxMotif:
3177
3178 - Small compilation fixes
3179
3180 Documentation:
3181
3182 - wxCaret documented
3183
3184 2.1.16
3185 ------
3186
3187 wxBase:
3188
3189 All (GUI):
3190
3191 wxMSW:
3192
3193 - Various bug fixes
3194 - Added wxCHMHelpController, for invoking MS HTML Help
3195   files. This works under VC++ only
3196 - Modal dialog handling improved
3197 - Printer dialog now modal
3198
3199 wxGTK:
3200
3201 - Various bug fixes
3202
3203 wxMotif:
3204
3205 - Various bug fixes
3206
3207 2.1.15
3208 ------
3209
3210 Documentation:
3211
3212 - Added docs/tech for technical notes
3213
3214 File hierarchy:
3215
3216 - Started new contrib hierarchy that mirrors
3217   the main lib structure; moved OGL and MMedia into it
3218
3219 wxBase:
3220
3221 - wxSocket support
3222 - wxDateTime replaces and extends old wxDate and wxTime classes (still
3223   available but strongly deprecated) with many new features
3224 - wxLongLong class provides support for (signed) 64 bit integers
3225 - wxCmdLineParser class for parsing the command line (supporting short and
3226   long options, switches and parameters of different types)
3227 - it is now possible to build wxBase under Win32 (using VC++ only so far)
3228   and BeOS (without thread support yet)
3229 - wxThread class modified to support both detached and joinable threads, also
3230   added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
3231   only so far)
3232 - wxDir class for enumerating files in a directory
3233 - wxLog functions are now (more) MT-safe
3234 - wxStopWatch class, timer functions have more chances to return correct
3235   results for your platform (use ANSI functions where available)
3236 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
3237 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
3238   is available)
3239 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
3240
3241 all (GUI):
3242
3243 - Added wxImage::Rotate.
3244 - new wxCalendarCtrl class for picking a date interactively
3245 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
3246 - wxToolBar supports arbitrary controls (not only buttons) and can be
3247   dynamically changed (Delete/Insert functions)
3248 - vertical toolbars supported by MSW and GTK native wxToolBar classes
3249 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
3250 - "file open" dialog allows selecting multiple files at once (contributed by
3251   John Norris)
3252 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
3253   MIME types if available (Unix only)
3254 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
3255 - TIFF support added (libtiff required and included in the distribution)
3256 - PCX files can now be written (256 and 24 bits)
3257 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
3258 - wxScrolledWindow now has keyboard interface
3259 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
3260 - added wxEncodingConverter and improved wxFontMapper
3261   for dealing with conversions between different encodings,
3262   charsets support in wxLocale and wxHTML
3263 - wxDragImage class added
3264 - samples/help improved to show standard and advanced HTML help
3265   controllers, as well as native help
3266 - moved wxTreeLayout class to main lib
3267
3268 wxMSW:
3269
3270 - wxFrame::MakeFullScreen added.
3271 - support for enhanced metafiles added, support for copying/pasting metafiles
3272   (WMF and enhanced ones) fixed/added.
3273 - implemented setting colours for push buttons
3274 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
3275    positioned along the top of the screen and not only at the bottom
3276 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
3277 - loading/saving big (> 32K) files in wxTextCtrl works
3278 - tooltips work with wxRadioBox
3279 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
3280   Unix ports
3281 - returning FALSE from OnPrintPage() aborts printing
3282 - VC++ makefiles and project files made (mostly) consistent
3283 - wxSetCursorEvent added
3284
3285 wxGTK:
3286
3287 - wxFontMapper endless recursion bug (on some systems) fixed
3288 - wxGTK synthesizes wxActivateEvents
3289 - UpdateUI handlers may be used with wxTextCtrl
3290
3291 wxMotif:
3292
3293 - wxMenu::Enable works
3294 - wxToolBar bugs fixed
3295 - OGL samples made to work again
3296
3297 wxHTML:
3298
3299 - almost complete rewrite of wxHtmlHelpController,
3300   including faster search, bookmarks, printing, setup dialog
3301   and cross-platform binary compatible .cached files for faster
3302   loading of large helpbooks, case insensitive search
3303   split into 3 parts: wxHtmlHelpData, Frame and Controller
3304 - added support for charsets and <meta> tag
3305 - added support for font faces and justified paragraphs,
3306   taken some steps to prepare wxHTML for frames
3307 - added dynamic pushing/popping of wxHtmlParser tag handlers
3308 - improved HTML printing
3309 - added extensive table of HTML characters substitutions (&nbsp; etc.)
3310 - fixed wxHtmlWindow flickering, several minor bugfixes
3311 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
3312   fixed handling of relative and absolute font sizes in <font size>
3313
3314
3315 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
3316 change log.
3317
3318 2.1.0, b4, May 9th 1999
3319 -----------------------
3320
3321 wxGTK:
3322
3323 - JPEG support added.
3324 - Many fixes and changes not thought worth mentioning in this file :-)
3325
3326 wxMSW:
3327
3328 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
3329   SetTabSize added.
3330 - JPEG support added.
3331 - Fixes for Cygwin compilation.
3332 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
3333 - Many fixes people didn't tell this file about.
3334
3335 wxMotif:
3336
3337
3338 General:
3339
3340 - Some changes for Unicode support, including wxchar.h/cpp.
3341
3342
3343 2.0.1 (release), March 1st 1999
3344 -------------------------------
3345
3346 wxGTK:
3347
3348 - wxGLCanvas fixes.
3349 - Slider/spinbutton fixes.
3350
3351 wxMSW:
3352
3353 - Fixed problems with <return> in dialogs/panels.
3354 - Fixed window cursor setting.
3355 - Fixed toolbar sizing and edge-clipping problems.
3356 - Some makefile fixes.
3357
3358 wxMotif:
3359
3360 - None.
3361
3362 General:
3363
3364 - Added wxUSE_SOCKETS.
3365 - More topic overviews.
3366 - Put wxPrintPaperType, wxPrintPaperDatabase into
3367   prntbase.h/cpp for use in non-PostScript situations
3368   (e.g. Win16 wxPageSetupDialog).
3369
3370
3371 Beta 5, February 18th 1999
3372 --------------------------
3373
3374 wxGTK:
3375
3376 - wxExecute improved.
3377
3378 wxMSW:
3379
3380 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
3381   expected).
3382 - Changed VC++ makefiles (.vc) so that it's possible to have
3383   debug/release/DLL versions of the library available simultaneously,
3384   with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
3385 - Added BC++ 5 IDE files and instructions.
3386 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
3387 - Fixed focus-related crash.
3388
3389 wxMotif:
3390
3391 - Cured asynchronous wxExecute crash.
3392 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
3393
3394 General:
3395
3396 - wxLocale documented.
3397 - Added include filenames to class reference.
3398 - wxHelpController API changed: SetBrowser becomes SetViewer,
3399   DisplaySection works for WinHelp, help sample compiles under Windows
3400   (though doesn't display help yet).
3401
3402 Beta 4, February 12th 1999
3403 --------------------------
3404
3405 wxGTK:
3406
3407 - Miscellaneous fixes.
3408
3409 wxMSW:
3410
3411 - Makefiles for more compilers and samples; Cygwin makefiles
3412   rationalised.
3413 - Added VC++ project file for compiling wxWidgets as DLL.
3414
3415 wxMotif:
3416
3417 - Added OnEraseBackground invocation.
3418 - Added wxRETAINED implementation for wxScrolledWindow.
3419 - Cured scrolling display problem by adding XmUpdateDisplay.
3420 - Tried to make lex-ing in the makefile more generic (command line
3421   syntax should apply to both lex and flex).
3422 - Changed file selector colours for consistency (except for buttons:
3423   crashes for some reason).
3424 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
3425   of malloc, which causes memory problems).
3426
3427 General:
3428
3429 - Further doc improvements.
3430 - wxGenericValidator added.
3431 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
3432   automatically.
3433
3434 Beta 3, January 31st 1999
3435 -------------------------
3436
3437 wxGTK:
3438
3439 - wxClipboard/DnD API changes (still in progress).
3440 - wxToolTip class added.
3441 - Miscellaneous fixes.
3442
3443 wxMSW:
3444
3445 - wxRegConfig DeleteAll bug fixed.
3446 - Makefiles for more compilers.
3447 - TWIN32 support added.
3448 - Renamed VC++ makefiles from .nt to .vc, and
3449   factored out program/library settings.
3450 - Fixed wxIniConfig bug.
3451
3452 wxMotif:
3453
3454 - A few more colour fixes.
3455 - wxGLCanvas and OpenGL samples working.
3456 - Some compiler warnings fixed.
3457 - wxChoice crash fix.
3458 - Dialog Editor starting to work on Motif.
3459
3460 General:
3461
3462 - wxBusyCursor class added.
3463 - Added samples/dde.
3464 - More doc improvements, incl. expanding docs/html/index.htm.
3465
3466 Beta 2, January 1999
3467 --------------------
3468
3469 wxGTK:
3470
3471 wxMSW:
3472
3473 - 16-bit BC++ compilation/linking works albeit without the resource system.
3474
3475 wxMotif:
3476
3477 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
3478   the right place.
3479 - Cured some widget table clashes.
3480 - Added thread support (Robert).
3481 - wxPoem sample now works.
3482
3483 General:
3484
3485 - Rearranged documentation a bit.
3486 - Sash window uses area of first frame/dialog to paint over when drawing
3487   the dragged sash, not just the sash window itself (it clipped to the right
3488   or below).
3489 - Made resource sample use the correct Cancel button id.
3490 - Moved wxProp to main library (generic directory), created proplist
3491   sample.
3492 - Added bombs and fractal samples.
3493
3494 Beta 1, December 24th 1998
3495 --------------------------
3496
3497 wxGTK:
3498
3499 - Various
3500
3501 wxMSW, wxMotif: not in sync with this release.
3502
3503
3504 Alpha 18, December 29th 1998
3505 ----------------------------
3506
3507 wxMSW:
3508
3509 - Win16 support working again (VC++ 1.5)
3510 - Win16 now uses generic wxNotebook, wxListCtrl,
3511   wxTreeCtrl -- more or less working now, although
3512   a little work on wxNotebook is still needed.
3513   Under 16-bit Windows, get assertion when you click
3514   on a tab.
3515 - Wrote 16-bit BC++ makefiles: samples don't yet link.
3516 - Added CodeWarrior support to distribution courtesy
3517   of Stefan Csomor.
3518
3519 wxMotif:
3520
3521 - Cured scrolling problem: scrollbars now show/hide themselves
3522   without (permanently) resizing the window.
3523 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
3524   that disabled scrollbar paging.
3525 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
3526   colours correctly.
3527 - Removed major bug whereby dialogs were unmanaged automatically
3528   when any button was pressed.
3529 - Fixed colours of wxWindow scrollbars, made list and text controls
3530   have a white background.
3531 - Fixed dialog colour setting.
3532 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
3533   they have sensible colours by default.
3534 - Fixed a bug in wxStaticBox.
3535 - Cured wxTreeCtrl bug: now works pretty well!
3536 - Debugged DrawEllipticArc (a ! in the wrong place).
3537 - Added SetClippingRegion( const wxRegion& region ).
3538 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
3539
3540 Alpha 17, November 22nd 1998
3541 ----------------------------
3542
3543 wxMSW:
3544
3545 - More documentation updates, especially for
3546   wxLayoutWindow classes and debugging facilities.
3547 - Changed wxDebugContext to use wxDebugLog instead
3548   of wxTrace.
3549 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
3550   However, DLL support may be broken for BC++ since
3551   VC++ 6 required changing of WXDLLEXPORT keyword
3552   position.
3553 - Numerous miscellaneous changes.
3554
3555 wxMotif:
3556
3557 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
3558   were too buggy (probably not design for dynamic addition/removal of
3559   child frames).
3560 - Some improvements to the wxNotebook implementation.
3561 - wxToolBar now uses a bulletin board instead of a form, in an attempt
3562   to make it possible to add ordinary wxControls to a toolbar.
3563 - Cured problem with not being able to use global memory operators,
3564   by defining two more global operators, so that the delete will match
3565   the debugging implementation.
3566 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
3567   global memory operators (usually OK) and #defining new to be
3568   WXDEBUG_NEW (sometimes it might not be OK).
3569 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
3570 - Added a parent-existence check to popup menu code to make it not crash.
3571 - Added some optimization in wxWindow::SetSize to produce less flicker.
3572   It remains to be seen whether this produces any resize bugs.
3573
3574 It's a long time since I updated this file. Previously done:
3575
3576 - wxFrame, wxDialog done.
3577 - wxScrolledWindow done (but backing pixmap not used at present).
3578 - wxBitmap done though could be tidied it up at some point.
3579 - Most basic controls are there, if not rigorously tested.
3580 - Some MDI support (menus appear on child frames at present).
3581 - wxNotebook almost done.
3582 - wxToolBar done (horizontal only, which would be easy to extend
3583   to vertical toolbars).
3584
3585 More recently:
3586
3587 - Colour and font changing done (question mark over what happens
3588   to scrollbars).
3589 - Accelerators done (for menu items and buttons). Also event loop
3590   tidied up in wxApp so that events are filtered through ProcessXEvent.
3591 - wxWindow::GetUpdateRegion should now work.
3592
3593 Alpha 16, September 8th 1998
3594 ----------------------------
3595
3596 wxMSW:
3597
3598 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
3599   sample.
3600 - Guilhem's socket classes added, plus wxsocket sample.
3601 - A few more makefiles added.
3602 - GnuWin32/BC++ compatibility mods.
3603 - Further doc updates.
3604 - wxProp updates for correct working with wxGTK.
3605
3606 wxMotif:
3607
3608 - First start at Motif port.
3609 - Made makefiles for wxMotif source directory and minimal sample.
3610 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
3611   wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
3612   wxMenu, wxMenuItem, wxMenuBar
3613
3614 Alpha 15, August 31st 1998
3615 --------------------------
3616
3617 wxMSW:
3618
3619 - wxBitmap debugged.
3620 - wxDC::GetDepth added.
3621 - Contribution added whereby wxBitmap will be
3622   converted to DC depth if they don't match.
3623 - wxConfig API improved, documentation updated.
3624 - Printing classes name conventions cleaned up.
3625 - wxUpdateUIEvent now derives from wxCommandEvent
3626   so event can travel up the window hierarchy.
3627
3628 Alpha 14, July 31st 1998
3629 ------------------------
3630
3631 wxMSW:
3632
3633 - Toolbar API has been simplified, and now
3634   wxFrame::GetClientArea returns the available client
3635   area when toolbar, status bar etc. have been accounted for.
3636   wxFrame::CreateToolBar added in line with CreateStatusBar.
3637 - Documentation updates, incl. for wxToolBar.
3638 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
3639 - Various additions from other folk, e.g. streams, wxConfig
3640   changes, wxNotebook.
3641 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
3642
3643 Alpha 13, July 8th 1998
3644 -----------------------
3645
3646 wxMSW:
3647
3648 - Implemented wxPoint as identical to POINT on Windows, and
3649   altered wxDC wxPoint functions to use wxPoint directly in
3650   Windows functions, for efficiency.
3651 - Cured wxASSERT bug in wxStatusBar95.
3652 - #ifdefed out some bits in oleutils.cpp for compilers that
3653   don't support it.
3654 - Added some operators to wxPoint, wxSize.
3655 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
3656
3657 Alpha 12, July 7th 1998
3658 -----------------------
3659
3660 wxMSW:
3661
3662 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
3663   have flat toolbars on Win98 or Win95 with IE >= 3 installed.
3664
3665 Alpha 11, July 3rd 1998
3666 -----------------------
3667
3668 wxMSW:
3669
3670 - Added thread.h, thread.cpp.
3671 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
3672   wxMenuBar.
3673 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
3674   SetTextColor to SetTextColour, and added or made public several
3675   wxMenuItem accessors.
3676 - Added two overloads to wxRegion::Contains. Added
3677   wxRegion::IsEmpty for a more consistent naming convention.
3678 - Added Vadim's wxDataObject and wxDropSource.
3679 - ENTER/LEAVE events now work.
3680 - Cured wxMemoryDC bug where the DC wasn't being deleted.
3681 - Cured wxGauge SetSize major bugginess.
3682 - Cured problem where if a GDI object was created on the stack,
3683   then went out of scope, then another object was selected into
3684   the DC, GDI objects would leak. This is because the assignment
3685   to e.g. wxDC::m_pen would delete the GDI object without it first
3686   being selected out of the DC. Cured by selecting the old DC object
3687   first, then doing the assignment.
3688 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
3689 - Various other bug fixes and additions.
3690
3691 Generic:
3692
3693 - Major work on Dialog Editor (still plenty to go).
3694 - Expanded documentation a bit more.
3695
3696 Alpha 10, May 7th 1998
3697 ----------------------
3698
3699 wxMSW:
3700
3701 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
3702   and wxIcon functions so that you can specify what size of
3703   icon should be loaded. Probably will remain a Windows-specific thing.
3704 - wxStatusBar95 now works for MDI frames.
3705 - Toolbars in MDI frames now behave normally. They still
3706   require application-supplied positioning code though.
3707 - Changed installation instructions, makefiles and batch files
3708   for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
3709   change to support Mingw32/EGCS. Bison now used by default.
3710
3711 Alpha 9, April 27th 1998
3712 ------------------------
3713
3714 wxMSW:
3715
3716 - Cured bug in wxStatusBar95 that caused a crash if multiple
3717   fields were used.
3718 - Added Gnu-Win32 b19/Mingw32 support by changing resource
3719   compilation and pragmas.
3720 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
3721   commands because VZ changed the id setting in wxMenu::MSWCommand.
3722
3723 Generic:
3724
3725 - Corrected some bugs, such as the wxModule compilation problem.
3726 - Added Gnu-Win32 b19/Mingw32 support by changing resource
3727   compilation and pragmas.
3728 - Changed SIZEOF to WXSIZEOF.
3729
3730 Alpha 8, April 17th 1998
3731 ------------------------
3732
3733 wxMSW:
3734
3735 - Added IsNull to wxGDIObject to check if the ref data is present or not.
3736 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
3737   some reason :-(
3738 - Added wxJoystick class and event handling, and simple demo.
3739 - Added simple wxWave class. Needs Stop() function.
3740 - Added wxModule (module.h/module.cpp) to allow definition
3741   of modules to be initialized and cleaned up on wxWidgets
3742   startup/exit.
3743 - Start of Mingw32 compatibility (see minimal and dialogs samples
3744   makefile.m95 files, and install.txt).
3745 - Note: Windows printing has stopped working... will investigate.
3746 VADIM'S CHANGES:
3747 - Updated wxString: bug fixes, added wxArrayString, some
3748   compatibility functions.
3749 - Updated log.h/cpp, added wxApp::CreateLogTarget.
3750 - file.h: new wxTempFile class.
3751 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
3752 - statbr95: wxStatusBar95 control.
3753 - registry.h/cpp: wxRegKey class for Win95 registry.
3754 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
3755 - wxConfig and wxFileConfig classes.
3756
3757 Generic:
3758
3759 - Added src/other/png, src/other/zlib directories.
3760 - Added samples/png.
3761 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
3762   Porters, please check particularly your wxTreeCtrl and wxListCtrl
3763   header files.
3764 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
3765
3766 Alpha 7, March 30th 1998
3767 ------------------------
3768
3769 wxMSW:
3770
3771 - Added tab classes, tab sample.
3772 - Now can return FALSE from OnInit and windows will be
3773   cleaned up properly before exit.
3774 - Improved border handling so panels don't get borders
3775   automatically.
3776 - Debugged MDI activation from Window menu.
3777 - Changes to memory debug handling, including checking for
3778   memory leaks on application exit - but see issues.txt for
3779   unresolved issues.
3780 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
3781   to allow maintenance of an icon in the Windows 95 taskbar
3782   tray area.
3783 - Got MFC sample working (MFC and wxWidgets in the same
3784   application), partly by tweaking ntwxwin.mak settings.
3785 - Got DLL compilation working again (VC++).
3786 - Changed wxProp/Dialog Editor filenames.
3787
3788 Generic:
3789
3790 - Added tab classes, tab sample.
3791 - Revised memory.cpp, memory.h slightly; memory.h now #defines
3792   new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
3793   now checks for leaks on exit. Added memcheck sample.
3794   See src/msw/issues.txt for more details.
3795 - resource.h, resource.cpp changed to make wxDefaultResourceTable
3796   a pointer. Now initialize resource system with
3797   wxInitializeResourceSystem and wxCleanUpResourceSystem, to
3798   allow better control of memory.
3799 - wxString now derives from wxObject, to enable memory leak
3800   checking.
3801 - Added some #include fixes in various files, plus changed
3802   float to long in wxToolBar files.
3803
3804 Alpha 6, March 10th 1998
3805 ------------------------
3806
3807 wxMSW:
3808
3809 - Found stack error bug - stopped unwanted OnIdle recursion.
3810 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
3811 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
3812   check if the number of top-level windows is zero before
3813   exiting. Also, wxApp::GetTopWindow will return either
3814   m_topWindow or the first member of wxTopLevelWindows, so you
3815   don't have to call wxApp::SetTopWindow.
3816 - Added dynarray.h/dynarray.cpp (from Vadim).
3817 - Added first cut at OLE drag and drop (from Vadim). dnd sample
3818   added. Drop target only at this stage. See src/msw/ole/*.cpp,
3819   wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
3820   Doesn't work with GnuWin32 - no appropriate headers e.g. for
3821   IUnknown.
3822   Doesn't work with BC++ either - crashes on program startup.
3823 - Added Vadim's owner-draw modifications - will probably remain
3824   Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
3825 - Added wxLB_OWNERDRAW for owner-draw listboxes.
3826 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
3827   Doesn't entirely work for WIN16.
3828 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
3829   can also be used as an argument to wxMenu::Append, not just for
3830   internal implementation.
3831 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
3832   in makeg95.env, together with mingw32.bat). However, resource
3833   binding is not working yet so most apps with dialogs crash.
3834
3835 Generic:
3836
3837 - Added Vadim's dynarray.h, dynarray.cpp.
3838 - Added Vadim's menuitem.cpp.
3839 - Added Windows-specific wxCheckListBox,
3840   owner-draw wxListBox, and drag-and-drop
3841   (see docs/msw/changes.txt).
3842
3843 Alpha 5, 14th February 1998
3844 --------------------------
3845
3846 wxMSW:
3847
3848 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
3849   DISTRIBUTIONS. This change log will therefore now refer to
3850   the Windows-specific code only. See docs/changes.txt for generic
3851   changes.
3852 - Removed Windows-specific reference counting system (GDI
3853   resources were cleaned up in idle time) - minimal
3854   advantages now we have a wxWin reference counting system.
3855 - Added missing WXDLLEXPORT keywords so DLL compilation works
3856   again.
3857 - Removed most warnings for GnuWin32 compilation.
3858 - Added wxRegion/wxRegionIterator, but haven't yet used it in
3859   e.g. wxDC.
3860
3861 Generic:
3862
3863 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
3864   DISTRIBUTIONS. This change log will therefore now refer to
3865   the generic code only. See docs/msw/changes.txt for Windows-specific
3866   changes.
3867 - Readmes, change logs and installation files now go in
3868   platform-specific directories under docs, e.g. docs/msw,
3869   docs/gtk.
3870 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
3871   created dynamically, not as a global object.
3872 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
3873 - Changed names of some include/wx/generic headers to be
3874   consistent and to conform to gcc pragma conventions. Also
3875   changed choicesg.cpp to choicdgg.cpp.
3876 - Added gcc pragmas.
3877 - Added gtk inclusion in include/wx headers.
3878 - Added consistent file headings to source and headers.
3879 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
3880   added a few references to wxTransString.
3881 - Added operator to wxTransString that converts automatically
3882   to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
3883 - samples/internat now works (minimally).
3884 - Added wxMouseEvent::GetPosition and
3885   wxMouseEvent::GetLogicalPosition, both returning wxPoints.
3886 - Made wxSize and wxRect contain longs not ints.
3887 - Cured some memory leaks (thanks Vadim).
3888 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
3889   will only keep processing OnIdle if it returns TRUE from
3890   MoreRequested.
3891
3892 Alpha 4, 31st January 1998
3893 --------------------------
3894
3895 All:
3896
3897 - Changed wxDC functions to take longs instead of floats. GetSize now takes
3898   integer pointers, plus a version that returns a wxSize.
3899 - const keyword added to various wxDC functions.
3900 - Under Windows, wxDC no longer has any knowledge of whether
3901   an associated window is scrolled or not. Instead, the device
3902   origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
3903 - wxScrolledWindow applications can optionally override the virtual OnDraw
3904   function instead of using the OnPaint event handler. The wxDC passed to
3905   OnDraw will be translated by PrepareDC to reflect scrolling.
3906   When drawing outside of OnDraw, must call PrepareDC explicitly.
3907 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
3908   scrolling toolbars.
3909 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
3910   to help printing with multiple pages.
3911 - IPC classes given base classes (wxConnectionBase etc.) which
3912   define the API used by different implementations. DDE
3913   implementation updated to use these base classes.
3914 - wxHelpInstance now separated into wxHelpControllerBase (base
3915   for all implementations), wxWinHelpController (uses standard
3916   WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
3917   TCP/IP). There will be others eventually, such as
3918   wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
3919 - Added Vadim Zeitlin's wxString class plus
3920   internationalization code (gettext simulation, wxLocale, etc.).
3921   New files from Vadim:
3922   include\wx\string.h
3923   include\wx\debug.h
3924   include\wx\file.h
3925   include\wx\log.h
3926   include\wx\intl.h
3927   src\common\string.cpp
3928   src\common\log.cpp
3929   src\common\intl.cpp
3930   src\common\file.cpp
3931   No longer use GNU wxString files.
3932 - Split off file-related functions into include\wx\filefn.h and
3933   src\common\filefn.cpp.
3934 - Borland C++ support (WIN32) for main library and
3935   samples, using makefile.b32 files.
3936 - Preparation done for allowing BC++ to compile wxWin as a DLL,
3937   including changes to defs.h.
3938 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
3939   introduced.
3940 - Added wxShowEvent (generated when window is being shown or
3941   hidden).
3942 - Got minimal, docview, mdi samples working for 16-bit VC++ and
3943   cured 16-bit problem with wxTextCtrl (removed global memory
3944   trick).
3945 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
3946
3947 Alpha 3, September 1997
3948 -----------------------
3949
3950 All:
3951
3952 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
3953 - Instigated new file hierarchy, split files and classes up more logically.
3954 - PrologIO and some other utils now put into core library.
3955 - Revamped print/preview classes, added wxPageSetupDialog.
3956 - Started documentation.
3957
3958 Alpha 2, 30th April 1997
3959 ------------------------
3960
3961 All:
3962
3963 - EVT_... macros now have at least one argument, for conformance
3964   with MetroWerks compiler.
3965 - Added ids to .wxr file format.
3966 - Got Dialog Editor compiled and running again but need
3967   to extend functionality to be in line with new controls.
3968   Added dialoged\test app to allow dynamic loading of .wxr files
3969   for testing purposes.
3970 - Rewrote wxBitmap to allow installable file type
3971   handlers.
3972 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
3973 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
3974   fully).
3975 - Added back wxRadioBox.
3976 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
3977   a separate file.
3978
3979 Alpha 1, 5th April 1997
3980 -----------------------
3981
3982 Generic:
3983
3984 At this point, the following has been achieved:
3985
3986 - A lot, but not all, of the code has been revamped for better
3987   naming conventions, protection of data members, and use of
3988   wxString instead of char *.
3989 - Obsolete functionality deleted (e.g. default wxPanel layout,
3990   old system event system) and code size reduced.
3991 - Class hierarchy changed (see design doc) - base classes such
3992   as wxbWindow now removed.
3993 - No longer includes windows.h in wxWin headers, by using stand-in
3994   Windows types where needed e.g. WXHWND.
3995 - PrologIO revised.
3996 - wxScrolledWindow, wxStatusBar and new MDI classes added.
3997   MDI is now achieved using separate classes, not window styles.
3998 - wxSystemSettings added, and made use of to reflect standard
3999   Windows settings.
4000 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
4001   settings mucho rationalised.
4002 - All windows are now subclassed with the same window proc to make
4003   event handling far more consistent. Old internal wxWnd and derived
4004   classes removed.
4005 - API for controls revised, in particular addition of
4006   wxValidator parameters and removal of labels for some controls.
4007 - 1 validator written: see examples/validate.
4008 - Event table system introduced (see most samples and
4009   wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
4010   made more flexible, with Push/PopEventHandler allowing a chain
4011   of event handlers.
4012 - wxRadioBox removed - will be added back soon.
4013 - Toolbar class hierarchy revised:
4014   wxToolBarBase
4015   wxToolBarSimple (= old wxToolBar)
4016   wxToolBar95 (= old wxButtonBar under Win95)
4017   wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
4018 - Constraint system debugged somewhat (sizers now work properly).
4019 - wxFileDialog, wxDirDialog added; other common dialogs now
4020   have class equivalents. Generic colour and font dialogs
4021   rewritten to not need obsolete panel layout.
4022 - .wxr resource system partially reinstated, though needs
4023   an integer ID for controls. Hopefully the resource system
4024   will be replaced by something better and more efficient
4025   in the future.
4026 - Device contexts no longer stored with window and accessed
4027   with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
4028   variables instead.
4029 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
4030   determines whether labels are shown. Other Win95-specific flags
4031   introduced, e.g. for showing ticks.
4032 - Styles introduced for dealing with 3D effects per window, for
4033   any window: all Win95 3D effects supported, plus transparent windows.
4034 - Major change to allow 3D effect support without CTL3D, under
4035   Win95.
4036 - Bitmap versions of button and checkbox separated out into new
4037   classes, but unimplemented as yet because I intend to remove
4038   the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
4039 - utils/wxprop classes working (except maybe wxPropertyFormView)
4040   in preparation for use in Dialog Editor.
4041 - GNU-WIN32 compilation verified (a month or so ago).