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