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