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