X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8cc00d5fcafccb2fc2c3fa2eda78651a5634aab2..baf277a24da8e4667efd24c80aa6888dbc27bb5d:/docs/changes.txt diff --git a/docs/changes.txt b/docs/changes.txt index 1f6c6e447b..291f8a1ea0 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -59,6 +59,9 @@ INCOMPATIBLE CHANGES SINCE 2.4.x - Identical functionality of wxFileDialog::ParseWildcard, wxGenericDirCtrl::ParseFilter, Motif and MSW parsing native dialogs is now accessible in ::wxParseCommonDialogsFilter +- wxNotebookSizer and wxBookCtrlSizer are now deprecated -- the are no longer + needed, you can treat wxNotebook as any other control and put it directly + into the sizer that was wxNotebookSizer's parent sizer in old code. @@ -109,20 +112,18 @@ All: - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten) - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem) - fixed bug in wxDateTime::Set(jdn) when DST was in effect -- it's now possible to use msgids in other languages than English with - wxLocale (based on patch by Stefan Kowski) +- support msgids in charsets other than C and languages other than English + (based on patch by Stefan Kowski) All (GUI): - added wxTaskBarIcon::CreatePopupMenu which is now recommended way of showing popup menu; calling wxTaskBarIcon::PopupMenu directly is discouraged -- Added ..._CMD_... variants for wxGrid event table entry macros - taking window identifiers -- Added wxWindowBase::Navigate for programmatic navigation to the next - control. -- On most platforms, wxTextCtrl::OnChar now inserts a tab character if - wxTE_PROCESS_TAB is set, or navigates to the next control if not. +- Added ..._CMD_...(id) variants for wxGrid event table entry macros +- Added wxWindow::Navigate for programmatic navigation to the next control. +- wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set +- added wxKeyEvent::GetUnicodeKey() Unix: @@ -134,15 +135,28 @@ wxGTK: - fixed many rendering artifacts and wrong colours with lots of GTK+ themes - implemented wxColourDialog as native dialog - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW) +- added support for wxCHK_3STATE style (GTK2 only) +- implemented text underlining under GTK2 +- implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2) wxMotif: -- added 3 state checkbox +- added support for wxCHK_3STATE style (3 state checkbox) + +wxMSW: + +- fixed UNC paths handling in wxFileSystem (Daniel Nash) +- set wxKeyEvent::m_uniChar in Unicode build wxWinCE: - added automatized but customizable handling of native SmartPhone menus +wxHTML: + +- added support for nested index entries and index entries pointing to more + than one page to wxHtmlHelpController + 2.5.2 -----