| | 29 | + Began work getting grid cell properties set up. IOW, being able to set the |
|---|
| | 30 | ForeColor of a specific row in a column (a single cell), including |
|---|
| | 31 | dynamic cell properties. Currently, it works, but the only property |
|---|
| | 32 | I've added yet is CellForeColor and DynamicCellForeColor. |
|---|
| | 33 | |
|---|
| | 34 | + Removed the requirement that objects used as DataSources have to inherit |
|---|
| | 35 | from dObject. Thanks Carl for pointing out the limitation. |
|---|
| | 36 | |
|---|
| | 37 | + Added dDockForm to the main trunk, which is Dabo's wrapper for wxAUI. |
|---|
| | 38 | |
|---|
| | 39 | + Added the option of passing complex filter expressions to setAll(). This |
|---|
| | 40 | function now accepts a tuple of filter expressions of the format |
|---|
| | 41 | 'att comp val', which will be eval'd with the child objects inn order to |
|---|
| | 42 | determine if the filter applies. Each expression in the tuple is ANDed |
|---|
| | 43 | with the others; all the tuple elements must evaluate to True for the |
|---|
| | 44 | value to be set. |
|---|
| | 45 | |
|---|
| | 46 | + Added the dHtmlBox.HtmlLinkClicked event. |
|---|
| | 47 | |
|---|
| | 48 | + Added the HatchStyle property to draw objects. This gives you the option |
|---|
| | 49 | of specifying that the fill for drawn objects can be one of the following |
|---|
| | 50 | hatch patterns: |
|---|
| | 51 | |
|---|
| | 52 | Solid (default) |
|---|
| | 53 | Transparent |
|---|
| | 54 | Cross |
|---|
| | 55 | Horizontal |
|---|
| | 56 | Vertical |
|---|
| | 57 | Diagonal |
|---|
| | 58 | ReverseDiagonal |
|---|
| | 59 | CrossDiagonal |
|---|
| | 60 | |
|---|
| | 214 | |
|---|
| | 215 | + Fixed the geometry persistence to only restore the size of the form from |
|---|
| | 216 | user settings if BorderResizable is set to True. |
|---|
| | 217 | |
|---|
| | 218 | + Fixed dGrid's AlternateRowColoring to be settable from the constructor |
|---|
| | 219 | or initProperties (previously, it was only settable in afterInit() or |
|---|
| | 220 | later). |
|---|
| | 221 | |
|---|
| | 222 | + Dynamic props on dColumn were not working: fixed. |
|---|
| | 223 | |
|---|
| | 224 | + Fixed a bug that confused the string 'None' with the null value None when |
|---|
| | 225 | setting BorderStyle from a cdxml. Thanks to Miguel for catching this one. |
|---|
| | 226 | |
|---|
| | 227 | + Fixed a couple of bugs related to the dSizer.BorderSides property. |
|---|
| | 228 | Previously it was not retrieving that property correctly from the internal |
|---|
| | 229 | wx flag. |
|---|