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