X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/207e624382313a5081d4af16dc76778d6cbb03a4..f2aa588ba5c2e316d87105da86e0ebe8bbeac5df:/docs/changes.txt diff --git a/docs/changes.txt b/docs/changes.txt index 39f16eca39..5739b63611 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -91,6 +91,11 @@ OTHER CHANGES All: +- Hindi translations added (Dhananjaya Sharma) +- wxDynamicCast() now uses static_cast internally and so using it + with anything not deriving from wxObject will fail at compile time (instead + of run-time) now + All (GUI): - wxHtmlWindow now delays image scaling until rendering, @@ -98,6 +103,14 @@ All (GUI): - Added UpdateSize to wxSplitterWindow to allow layout while hidden - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock) - support for KOI8-U encoding added (Yuriy Tkachenko) +- The old wxADJUST_MINSIZE behaviouris now the default behaviour for + sizer items that are windows. This means that GetAdjustedBestSize + will now be called by default to determine the minimum size that a + window in a sizer should have. If you want to still use the initial + size (and not the BestSize) then use the wxFIXED_MINSIZE flag. When + windows are added to a sizer their initial size is made the window's + min size using SetSizeHints, and calls to wxSizer::SetItemMinSize + are also forwarded to SetSizeHints for window items. wxMSW: @@ -114,11 +127,18 @@ wxMotif: - removed wxMenuItem::DeleteSubMenu() +wxUniv/X11: + +- implemented DrawRoundedRectangle() (clawghoul) + wxHTML: - improved tables and lists layout algorithms (Tim Kosse) -
handling fix (Xavier Nodet) +Unix: +- fixed priorities of mailcap entries (David Hart) + 2.5.1 -----