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