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