X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/58b33f504d24ed91e1503ea1f2b2f497e0344a8b..9c16962b62401cd3cc98818e9f8d6be929ff725c:/docs/changes.txt diff --git a/docs/changes.txt b/docs/changes.txt index 46fd7d6272..32a2ce0bfc 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -129,6 +129,11 @@ Changes in behaviour which may result in compilation errors derives from wxObject; instead of using wxDynamicCast with wxVariantData you can use the macro wxDynamicCastVariantData with the same arguments. +- wxWindow::Next/PrevControlId() don't exist any more as they can't be + implemented correctly any longer because automatically generated ids are not + necessarily allocated consecutively any more. Use GetChildren() to find the + next/previous control sibling instead. + Deprecated methods and their replacements ----------------------------------------- @@ -155,6 +160,7 @@ Major new features in this release All: +- Added (experimental) IPv6 support to wxSocket (Arcen) - Allow loading message catalogs from wxFileSystem (Axel Gembe) - Added wxMessageQueue class for inter-thread communications - Use UTF-8 for Unicode data in wxIPC classes (Anders Larsen) @@ -187,6 +193,8 @@ All (GUI): - Added {wxTextCtrl,wxComboBox}::AutoComplete() and AutoCompleteFileNames() - Added wxH[V]ScrolledWindow (Brad Anderson, Bryan Petty). +- Added wxNotificationMessage class for non-intrusive notifications +- Added wxWindow::Show/HideWithEffect() - Added wxDC::StretchBlit() for wxMac and wxMSW (Vince Harron). - Added support for drop down toolbar buttons (Tim Kosse). - Added support for labels for toolbar controls (Vince Harron). @@ -266,6 +274,14 @@ wxX11: - Make Enter key activate the default button (David Hart). +2.8.8 +----- + +All (GUI): + +- Added wxWindow::GetNextSibling() and GetPrevSibling() + + 2.8.7 -----