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