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