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