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