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