X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f363e05c6d7d29ac152c86b526e25b983d05eea5..1dde66dda68a3d712d2f4de0388c4bb3a3375b36:/docs/changes.txt diff --git a/docs/changes.txt b/docs/changes.txt index 00e3ff2a44..33bcd14090 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -9,9 +9,7 @@ INCOMPATIBLE CHANGES SINCE 2.4.x now called much earlier/later than before; please move any exiting code from there to wxApp::OnInit()/OnExit() - wxFileType::GetIcon() returns wxIconLocation, not wxIcon -- the values of many colours have been updated to match their official - definitions which unfortunately means that "orange" colour in wxWindows - 2.5 is not the same colour as in 2.4 series. + DEPRECATED METHODS SINCE 2.4.x ============================== @@ -31,6 +29,7 @@ versions, please update your code to not use them. - wxHashTableLong: use wxHashMap instead - wxArrayString::GetStringArray: no replacement - wxArrayString::Remove(index, count): use RemoveAt instead +- wxTreeItemId conversion to long is deprecated and shouldn't be used - [MSW only] wxWindow::GetUseCtl3D(), GetTransparentBackground() and SetTransparent() as well as wxNO_3D and wxUSER_COLOURS styles @@ -75,6 +74,7 @@ All GUI ports: - added alpha channel support to wxImage - added wxCLOSE_BOX style for dialogs and frames - added wxSplitterWindow and wxWizard handlers to XRC +- wxWizard is now sizer-friendly and may b resizeable (Robert Vazan) - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski) - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski) - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber) @@ -123,9 +123,9 @@ All GUI ports: determine whether a window should receive idle events. - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window styles for use with conservative idle and update event modes. -- wxMSW and wxGTK now send menu update events only when a menu is - about to be used. +- send menu update events only when a menu is about to be used (MSW/GTK) - improved event processing performance (Hans Van Leemputten) +- added wxMirrorDC class Unix: