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