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