]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
Changes to be backported.
[wxWidgets.git] / docs / changes.txt
index 27cd1f28647391b5aa380eccafae2613adaf7eb1..d258b295b5b60f0c6aa5f648aa247e8303866811 100644 (file)
@@ -13,17 +13,57 @@ OTHER CHANGES
 
 All:
 
+- added wxDateSpan::operator==() and !=() (Lukasz Michalski)
+- use true/false throughout the library instead of TRUE/FALSE
+- wxStopWatch::Start() resumes the stop watch if paused, as per the docs
+- added wxDirTraverser::OnOpenError() to customize the error handling
+- added wxArray::SetCount()
+
+wxBase:
+
+- added Watcom makefiles
+
+All GUI ports:
+
+- added wxSplitterWindow handler to XRC
+- added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
 - improved contrib/utils/convertrc parsing (David J. Cooke)
 - fixed handling of URLs and filenames in wxFileSystem
 - implemented alignment for wxGrid bool editor and renderer
 - support wxListCtrl columns alignment for all platforms and not just MSW
-- added wxDateSpan::operator==() and !=() (Lukasz Michalski)
-- use true/false throughout the library instead of TRUE/FALSE
+- added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
+- WXR resources can now be used in Unicode builds
+
+- Changed to type-safe wxSizerItemList for wxSizer child items.
+
+    Deprecated:
+
+        wxSizer::Remove( wxWindow* )
+            - it does not function as Remove would usually be expected to
+              and destroy the window, use Detach instead.
+
+        wxSizer::GetOption(),
+        wxSizer::SetOption()
+            - wxSizer 'option' parameter was renamed 'proportion' to better
+              reflect its action, use Get/SetProportion instead.
+
+        wxKeyEvent::KeyCode()
+            - use GetKeyCode instead.
+
+        wxList:: Number, First, Last, Nth
+            - use typesafe GetCount, GetFirst, GetLast, Item instead.
+
+        wxNode:: Next, Previous, Data
+            - use typesafe Get* instead.
+
+        wxListBase::operator wxList&()
+            - use typesafe lists instead.
 
 Unix:
 
 - fixed compilation on systems with zlib installed but < 1.1.3 version
+- fixed compilation on Solaris 7 with large files support enabled
 
 wxGTK:
 
@@ -41,6 +81,15 @@ wxMSW:
 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
 - fixed bug with wxTR_EDIT_LABELS not workign with wxTR_MULTIPLE
 - fixes for compilation with OpenWatcom compiler
+- fixed wxStaticText best size calculation (was wrong by '&' width)
+- fixed calling wxFrame::Maximize(FALSE) before the window is shown
+
+wxMotif
+
+- made wxFileDialog behaviour with complex wildcards more sensible (it still
+  does not support all the features other ports do); refer to wxFileDialog
+  documentation for a detailed explanation
+- implemented wxWakeUpIdle
 
 OLD CHANGES
 ===========