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