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