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