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