Patch #2091 2007-07-09 20:42
stahta01
Documention only fix on file propgrid/CHANGES-propgrid.txt- Download
- 2091-Documention_on.patch (33.1 KB)
Index: src/sdk/propgrid/CHANGES-propgrid.txt
===================================================================
--- src/sdk/propgrid/CHANGES-propgrid.txt (revision 4243)
+++ src/sdk/propgrid/CHANGES-propgrid.txt (working copy)
@@ -1,5 +1,905 @@
+Version 1.2.6 ( Jan-21-2007 )
+ New:
+
+ - SpinCtrl editor re-implemented using wxTextCtrl in combination with
+ wxSpinButton. This should resolve vast majority of SpinCtrl issues.
+ As a bonus, SpinCtrl now also works with wxFloatProperty (or any
+ property which value as string is a number).
+
+ - Added extra style wxPG_EX_AUTO_UNSPECIFIED_VALUES. When specified,
+ it is possible to set some properties to unspecified values by editing
+ them. Currently, following properties support this:
+ * wxIntProperty, wxUIntProperty, and wxFloatProperty: Clear the
+ text field.
+
+ - Added extra style wxPG_EX_PROCESS_EVENTS_IMMEDIATELY. When specified,
+ ProcessEvent is used to dispatch wxPropertyGridEvents instead of
+ AddPendingEvent.
+
+
+ Bugs Fixed:
+
+ - Crash when deleting a property with modified, uncommitted value.
+
+ - Compilation problems with wxWidgets 2.8.0.
+
+ - Compilation problem with MingW (bug #1619351).
+
+ - Compilation problem under Mac OS X (bug #1619350).
+
+ - Compilation failed if wxBitmapComboBox was also used (bug #1622884).
+
+ - Compilation problem when not using precompiled headers.
+
+ - Regression where point size and underlined attribute of wxFontProperty
+ were not interpreted correctly.
+
+ - Various problems if first page of wxPropertyGridManager was removed
+ and re-created (patch #1626581 by rjmyst3).
+
+ - Properties using ComboBox editor and custom painting displayed their
+ value string even if it was unspecified.
+
+ - Posix install script had comptibility issues with some non-bash
+ compliant shells (bug #1620783).
+
+ - Unable to edit unspecified text properties with clipper window
+ (bug #1635432).
+
+ - SetPropertyValue, when called on a child property, did not visibly
+ refresh the parent.
+
+ - In rare circumstances, it was possible to "select" last selected
+ property of another page by double-clicking.
+
+
+
+Version 1.2.5 ( Dec-11-2006 )
+
+ New/Changed:
+
+ - wxPython Bindings: Experimental support for creating custom properties
+ and editors. See README-propgrid-wxPython.txt and test_propgrid.py
+ for more information (carefully, since there are caveats).
+
+ - Added wxPropertyGridManager::GetDescBoxHeight().
+
+ - Makefiles for wxWidgets 2.8.0.
+
+ - Added support for preprocessor define wxPG_USE_WXMODULE. Default is 1,
+ but can be set to 0 inorder not to use wxModule to manage global variables.
+ This may be needed in cases where wxPropertyGrid is linked in a plugin
+ DLL. (patch #1609769 by Tim Stahlhut)
+
+ - wxPython related source files are now in a separate archive.
+
+
+ Bugs Fixed:
+
+ - wxGTK, wxMAC: Fixed regression where the control was blank unless extra
+ style wxPG_EX_NATIVE_DOUBLE_BUFFERING was defined.
+
+ - wxMSW: Indentation in wxTextCtrl editors was not correct in all
+ combinations of font and Windows OS version.
+
+ - Setting value of a wxSystemColourProperty sometimes partially corrupted
+ the value (specifically, wxColourPropertyValue::m_type). This was a
+ regression caused by a buggy bug fix in 1.2.4.
+
+ - Property's custom text colour was not always applied correctly on the
+ value column.
+
+ - "make install" didn't work. Note that the current fix is only a workaround
+ (bug #1604887).
+
+ - Compile errors with GCC 4.1 and newer.
+
+ - wxImageFilePropertyClass, wxCursorPropertyClass and
+ wxMultiChoicePropertyClass were missing export declaration.
+
+
+
+Version 1.2.4 ( Nov-12-2006 )
+
+ New:
+
+ - Added SetPropertyTextColour. It sets text colour of properties and
+ their children. Similar to SetPropertyBackgroundColour, it doesn't
+ affect the caption colours.
+
+ - Added SetPropertyBackgroundColour as an alias for SetPropertyColour.
+
+ - Added SetCaptionTextColour. It specifically sets (caption) text
+ colour of a category property.
+
+ - Headers now identify WXMAKINGLIB_PROPGRID, which must be defined if
+ wxPropertyGrid is to be linked statically while wxWidgets itself is
+ linked dynamically (ie. WXUSINGDLL is defined)
+ (patch #1593682 by Tim Stahlhut).
+
+ - Improved combobox LnF under Windows Vista.
+
+ - wxPython build scripts and readme updated to work with the 2.7 branch.
+
+
+ Bugs Fixed:
+
+ - Child properties in deep hierarchy were not properly repainted when value of
+ one of their parents was updated (bug #1578255).
+
+ - Unspecified value did not work well with SpinCtrl editor.
+
+ - DeletePropertyChoice and InsertPropertyChoice did not adjust the selection
+ appropriately. Now, if current selection is deleted, then value is set to
+ unspecified.
+
+ - wxPython bindings: Setting string array and int array
download for full patch...
History
stahta01 2007-07-09 20:42
When propgrid was upgraded to version 1.2.6 this file was missed.
Tim S