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