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