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