]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
Implemented GetTextExtent() for GTK 2.0.
[wxWidgets.git] / docs / changes.txt
index 0fb7f4a0bb5a3b3b95728fb363c6dda8ff0d26c3..bd59434497102daf6d920b4d23c980db3b18c745 100644 (file)
@@ -96,6 +96,10 @@ All (GUI):
   for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
   and GetCount() instead of Number() in many classes
 
+- wxCmdLineParser does not use wxLog to output messages anymore.
+  to obtain the previous behaviour, add
+  wxMessageOutput::Set(new wxMessageOutputLog); to your program
+  (you will need to #include <wx/msgout.h>)
 
 wxMSW:
 
@@ -216,6 +220,9 @@ All (GUI):
 - updated libpng from 1.0.3 to 1.2.4
 - Added wxView::OnClosingDocument so the application can do
   cleanup.
+- generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
+  renamed to wxGenericImageList, so they can be used on wxMSW
+  (Rene Rivera).
 
 wxMSW:
 
@@ -252,6 +259,9 @@ wxMSW:
 - fixed a condition where a thread can hang during
   message/event processing
 - increased space between wxRadioBox label and first radio button
+- don't fail to register remaining window classes if one fails to register
+- set window proc for non-control windows to avoid problems
+  with multiple wxWindows apps running simultaneously
 
 wxGTK:
 
@@ -268,6 +278,16 @@ wxGTK:
 - fixed bad memory leak in wxFileDialog (Chris Elliott)
 - made internal GC pool dynamically growable
 
+wxMotif:
+
+- improved colour settings return values (Ian Brown)
+- improved border style handling for wxStaticText (Ian Brown)
+- improved toolbar control alignment
+- implemented wxSpinButton
+- implemented wxCheckListBox
+- fixed wxSpinCtrl and wxStaticLine when used with sizers
+- wxStaticBitmap now shows transparent icons correctly
+
 wxHTML:
 
 - fixed wxHtmlHelpController's cache files handling on big endian machines