]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
always use wxBU_NOTEXT and wxBU_EXACTFIT for wxBitmapButton under all platforms ...
[wxWidgets.git] / docs / changes.txt
index 389a43410e6ff7dc00cd385c2d8c58a5d7f24f5c..be69b64869e8e5ceccfdbee811e5e5452090c93c 100644 (file)
@@ -124,6 +124,14 @@ Changes in behaviour not resulting in compilation errors, please read this!
 
 - wxLoadFileSelector() now allows the user to select existing files only.
 
+- Erase background events are now not generated at all when background style is
+  changed. See the updated wxWindow::SetBackgroundStyle() description in the
+  manual for more details.
+
+- wxTreeCtrl::GetSelection now asserts if the tree has the wxTR_MULTIPLE style.
+  Instead use GetSelections() for multiple items; or if you want only the 
+  single item last touched, the new wxTreeCtrl::GetFocusedItem.
+
 
 Changes in behaviour which may result in compilation errors
 -----------------------------------------------------------
@@ -337,9 +345,11 @@ All:
 - Added wxStd{Input,Output}Stream classes (Jonathan Liu).
 - Include port number in host header in wxHTTP (Marcin 'Malcom' Malich).
 - Added wxTempFile::Flush().
+- Added support for wxLongLong and wxULongLong in wxVariant.
 
 All (GUI):
 
+- Added support for showing bitmaps in wxButton.
 - wxWindow::SetAutoLayout() now works for all windows, not just panels.
 - Support wxListCtrl columns, items and image lists in XRC (Kinaou HervĂ©).
 - Added support for wxFileCtrl to XRC (Kinaou HervĂ©).
@@ -351,7 +361,7 @@ All (GUI):
 - Added wxMouseEventsManager.
 - Building OpenGL library is now enabled by default.
 - Improve wxTreeCtrl::ScrollTo() in generic version (Raanan Barzel).
-- Added wxFont::Make{Bold,Italic,Smaller,Larger} and Scale() methods.
+- Added wxFont::[Make]{Bold,Italic,Smaller,Larger} and Scale[d]() methods.
 - Added wxDC::CopyAttributes() and use it in wxBufferedDC.
 - Added wxTextWrapper helper class useful for wrapping lines of text.