From a3a848f6038c02e266e9033a194a6e02dd099cd1 Mon Sep 17 00:00:00 2001 From: treectrl Date: Sun, 24 Sep 2006 22:50:48 +0000 Subject: Updates for 2.2. --- doc/What's New in TkTreeCtrl.html | 900 +++++++++++++++++++++++++++++++++++++- 1 file changed, 899 insertions(+), 1 deletion(-) diff --git a/doc/What's New in TkTreeCtrl.html b/doc/What's New in TkTreeCtrl.html index 3ed77dc..0716cd0 100644 --- a/doc/What's New in TkTreeCtrl.html +++ b/doc/What's New in TkTreeCtrl.html @@ -1,13 +1,15 @@ - + + + @@ -21,6 +23,9 @@ + + + @@ -39,6 +44,262 @@ +

What's New in TkTreeCtrl 2.2

+

Item Command

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Arguments/Result +ChangedWhat changed
item countNew option -visible added to return the number of items that are displayed (i.e., those whose ancestors are all expanded etc).
item createNew option -tags specifies an initial list of tags for created items.
item idReturns a list of item ids if the item description matches multiple items.
NewComment
item descendantsReturns the ids of the children, grandchildren, etc of an item.
item enabledGets and sets the enabled +state for items. All items are enabled when first created. Disabled +items cannot be selected, and are ignored by the default key-navigation +bindings.
+

Tag Command

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NewComment
tag addAdd tags to items. For example:
+
.t tag add all {a b c}
+will add tags "a", "b" and "c" to every item.
+
tag exprEvaluate a tag expression against items. For example:
+
.t tag expr $item a
+returns 1 if an item has tag "a". Also:
+
.t tag expr $item a||b
+returns 1 if  an item has tag "a" or "b".
tag namesReturn a list of tag names assigned to items. For example:
+
.t tag names $item
+returns the tag list for an item, and:
+
.t tag names all
+returns every tag assigned to any item.
tag removeRemove tags from items. For example:
+
.t tag remove all {b c}
+will remove tags "b" and "c" from any items that have them.
+
+

Item Tags

+Tags are textual labels applied to items to group them together. Tags +do not affect the appearance or behaviour of items. Tags can be used in +item descriptions to operate on multiple items. More information can be +found in the man page.
+

Item Descriptions

+New keywords were added to allow multiple items to be specified by an item description:
+ +New modifiers were added to match multiple items: + +New qualifiers were added to refine which items are matched:
+ +Also, the keyword all may now be followed by a list of qualifiers: For example:
+
.t item id "all !visible state myState" ; # find every item that is not displayed with user-defined state "myState"
+The following commands can now operate on multiple items in a single call:
+ +

Demo Changes

+ +

Bug Fixes

+ +
@@ -47,6 +308,7 @@

What's New in TkTreeCtrl 2.1.1

+

Column Command

@@ -59,6 +321,7 @@ + @@ -67,6 +330,7 @@ + @@ -74,6 +338,7 @@ + @@ -86,6 +351,7 @@ + @@ -94,6 +360,7 @@ Changed + @@ -101,6 +368,7 @@ Changed + @@ -108,6 +376,7 @@ Changed + @@ -115,6 +384,7 @@ Changed + @@ -129,48 +400,66 @@ Changed + + + +
Arguments/Result ChangedWhat changed
column delete
@@ -122,6 +392,7 @@ Changed +
Added an optional second argument allowing a range of columns to be deleted.
+

Bug Fixes

+ +

Other Changes

+ +

Demo Changes

@@ -178,16 +467,22 @@ the next display update. + +

What's New in TkTreeCtrl 2.1

@@ -195,12 +490,14 @@ the next display update. + This version should be backwards compatible with 2.0, except for a few obscure changes.
+

TreeCtrl Configuration Options

@@ -209,6 +506,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -217,12 +515,14 @@ This version should be backwards compatible with 2.0, except for a few obscure c + + @@ -230,6 +530,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -237,6 +538,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -244,6 +546,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -251,6 +554,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -258,6 +562,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -265,72 +570,85 @@ This version should be backwards compatible with 2.0, except for a few obscure c + + + + + + + + + + + + @@ -343,6 +661,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c +

Column Configuration Options

@@ -351,6 +670,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -360,18 +680,21 @@ This version should be backwards compatible with 2.0, except for a few obscure c + + + @@ -379,6 +702,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c + @@ -386,60 +710,71 @@ instead + + + + + + + + + + + @@ -452,6 +787,7 @@ instead +

Element Command

@@ -460,6 +796,7 @@ instead + @@ -475,14 +812,17 @@ instead + + + @@ -490,30 +830,38 @@ instead + + + + + + + + @@ -522,6 +870,7 @@ instead +

Item Configuration Options

@@ -530,6 +879,7 @@ instead + @@ -541,17 +891,20 @@ instead + + + @@ -559,40 +912,48 @@ instead + + + + + + + + @@ -603,6 +964,7 @@ instead +

Item Command

@@ -611,6 +973,7 @@ instead +
NewComment
-itemwidth
+
-itemwidthequalDeprecates the column -widthhack option.
-itemwidthmultipleDeprecates the column -stepwidth option.
DeprecatedWhat to use instead
-stepwidthtreectrl's -itemwidthmultiple option
-widthhacktreectrl's -itemwidthequal option
NewComment
element perstateLike [item element perstate].
NewComment
-heightOverrides the treectrl's -itemheight option
@@ -619,6 +982,7 @@ instead + @@ -626,6 +990,7 @@ instead + @@ -633,12 +998,14 @@ instead + + @@ -646,144 +1013,168 @@ instead + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -817,30 +1212,35 @@ Changed + + + + + @@ -849,24 +1249,28 @@ call using the -count option. + + + + @@ -875,24 +1279,28 @@ columns. See the docs. + + + + + + + + + + @@ -945,6 +1360,7 @@ column(s).
+ @@ -952,6 +1368,7 @@ column(s).
+ @@ -959,6 +1376,7 @@ column(s).
+ @@ -966,42 +1384,49 @@ column(s).
+ + + + + + + + + @@ -1073,6 +1510,7 @@ The following options no longer return a default value if the per-state option i + @@ -1080,24 +1518,29 @@ The following options no longer return a default value if the per-state option i + + + + @@ -1110,6 +1553,7 @@ The following options no longer return a default value if the per-state option i +

Notify Command

@@ -1118,6 +1562,7 @@ The following options no longer return a default value if the per-state option i +
DeprecatedWhat to use instead
item element actualitem element perstate
item complexitem element configure
Behaviour ChangedWhat changed
item bboxNo longer returns an error if no style had been assigned to the column.
item state forcolumnNo longer returns an error if no style had been assigned to the column.
item style setDoes nothing when replacing a style with the same style. Previously the old style was freed before assigning the new style, losing the element config info if the old and new styles were the same.
@@ -792,24 +1183,28 @@ losing the element config info if the old and new styles were the same.
+ Potential incompatibility
Arguments/Result ChangedWhat changed
item createAdded options: -count -height, -nextsibling, -open, -parent, -prevsibling, and -returnid. Multiple items may be created with one call using the -count option.
item element configureMultiple elements in multiple columns may be configured with a single call. Use '+' to separate elements, and ',' to separate columns. See the docs.
item style setWhen no column is specified, returns a list of one style name per column. Previously, the list would have less values than the number of columns if no styles had ever been assigned to the rightmost @@ -902,42 +1310,49 @@ column(s).
+ Potential incompatibility
item textWhen no column is specified, returns a list of one string per column.
NewComment
item imagePartner to the [item text] command.
item element perstateNot really new, just renamed from [item element actual] to better describe what it does. Accepts a new optional argument which specifies the state to use when determining the value of the per-state @@ -1010,16 +1435,20 @@ option.
+
+ The following options no longer return a default value if the per-state option itself does not have a value specified:
+ + @@ -1029,21 +1458,26 @@ The following options no longer return a default value if the per-state option i +
  • bitmap -foreground, -background
  • +
  • border -relief
  • +
  • text -fill, -font
  • + + @@ -1054,18 +1488,21 @@ The following options no longer return a default value if the per-state option i + Potential incompatibility
    item spanA style may now be displayed over multiple adjacent columns.
    +
    @@ -1126,12 +1571,14 @@ The following options no longer return a default value if the per-state option i + + @@ -1139,6 +1586,7 @@ The following options no longer return a default value if the per-state option i + @@ -1146,6 +1594,7 @@ The following options no longer return a default value if the per-state option i + @@ -1153,6 +1602,7 @@ The following options no longer return a default value if the per-state option i + @@ -1160,6 +1610,7 @@ The following options no longer return a default value if the per-state option i + @@ -1167,6 +1618,7 @@ The following options no longer return a default value if the per-state option i + @@ -1181,18 +1634,22 @@ The following options no longer return a default value if the per-state option i + + + + @@ -1205,54 +1662,63 @@ The following options no longer return a default value if the per-state option i +

    Style Layout Changes

    + +
      +
    1. If a -detach element had a fixed width larger than the other elements.
    2. +
    3. If an element had -iexpand x specified as well as -maxwidth, leaving some space available.
    4. +
    +

    Element Changes

    @@ -1260,33 +1726,39 @@ The following options no longer return a default value if the per-state option i + +

    Event Changes

    @@ -1294,12 +1766,14 @@ The following options no longer return a default value if the per-state option i + +

    Other Changes

    @@ -1323,12 +1799,14 @@ file, and the new demo "Big List". + +

    Demo Changes

    @@ -1349,24 +1829,28 @@ is true. + +

    What's New in TkTreeCtrl 2.0

    @@ -1390,6 +1876,7 @@ versions of Windows but it hasn't been tested. +

    TreeCtrl Configuration Options

    @@ -1397,6 +1884,7 @@ versions of Windows but it hasn't been tested. +
    NewComment
    notify unbind
    @@ -1174,6 +1626,7 @@ The following options no longer return a default value if the per-state option i +
    Let's you unbind all scripts from an object with one call.
    @@ -1404,6 +1892,7 @@ versions of Windows but it hasn't been tested. + @@ -1411,6 +1900,7 @@ versions of Windows but it hasn't been tested. + @@ -1418,6 +1908,7 @@ versions of Windows but it hasn't been tested. + @@ -1425,6 +1916,7 @@ versions of Windows but it hasn't been tested. + @@ -1433,6 +1925,7 @@ instead + @@ -1440,6 +1933,7 @@ instead + @@ -1447,6 +1941,7 @@ instead + @@ -1454,6 +1949,7 @@ instead + @@ -1461,6 +1957,7 @@ instead + @@ -1468,6 +1965,7 @@ instead + @@ -1475,6 +1973,7 @@ instead + @@ -1482,6 +1981,7 @@ instead + @@ -1489,6 +1989,7 @@ instead + @@ -1496,6 +1997,7 @@ instead + @@ -1503,6 +2005,7 @@ instead + @@ -1510,6 +2013,7 @@ instead + @@ -1517,6 +2021,7 @@ instead + @@ -1524,6 +2029,7 @@ instead + @@ -1531,6 +2037,7 @@ instead + @@ -1538,6 +2045,7 @@ instead + @@ -1545,6 +2053,7 @@ instead + @@ -1552,6 +2061,7 @@ instead + @@ -1559,6 +2069,7 @@ instead + @@ -1567,6 +2078,7 @@ Changed + @@ -1574,6 +2086,7 @@ Changed + @@ -1581,6 +2094,7 @@ Changed + @@ -1588,6 +2102,7 @@ Changed + @@ -1595,6 +2110,7 @@ Changed + + @@ -1613,6 +2130,7 @@ index" command. + @@ -1620,6 +2138,7 @@ index" command. + @@ -1627,6 +2146,7 @@ index" command. + + @@ -1644,6 +2165,7 @@ buttons/lines. + @@ -1651,6 +2173,7 @@ buttons/lines. + @@ -1658,6 +2181,7 @@ buttons/lines. + @@ -1665,6 +2189,7 @@ buttons/lines. + @@ -1672,6 +2197,7 @@ buttons/lines. + @@ -1679,6 +2205,7 @@ buttons/lines. + @@ -1686,6 +2213,7 @@ buttons/lines. + @@ -1693,6 +2221,7 @@ buttons/lines. + @@ -1700,6 +2229,7 @@ buttons/lines. + @@ -1707,6 +2237,7 @@ buttons/lines. + @@ -1714,6 +2245,7 @@ buttons/lines. + @@ -1721,6 +2253,7 @@ buttons/lines. + @@ -1728,6 +2261,7 @@ buttons/lines. + @@ -1735,6 +2269,7 @@ buttons/lines. + @@ -1742,6 +2277,7 @@ buttons/lines. + @@ -1749,6 +2285,7 @@ buttons/lines. + @@ -1756,6 +2293,7 @@ buttons/lines. + @@ -1763,6 +2301,7 @@ buttons/lines. + @@ -1770,6 +2309,7 @@ buttons/lines. + @@ -1777,6 +2317,7 @@ buttons/lines. + @@ -1784,6 +2325,7 @@ buttons/lines. + @@ -1791,6 +2333,7 @@ buttons/lines. + @@ -1798,6 +2341,7 @@ buttons/lines. + @@ -1805,6 +2349,7 @@ buttons/lines. + @@ -1812,6 +2357,7 @@ buttons/lines. + @@ -1819,6 +2365,7 @@ buttons/lines. + @@ -1826,6 +2373,7 @@ buttons/lines. + @@ -1833,6 +2381,7 @@ buttons/lines. + @@ -1840,6 +2389,8 @@ buttons/lines. + + @@ -1854,6 +2405,7 @@ buttons/lines. +

    TreeCtrl Commands

    @@ -1861,6 +2413,7 @@ buttons/lines. +
    ReplacedWhat to use instead
    -openbuttonimage-buttonimage
    -closedbuttonimage-buttonimage
    -openbuttonbitmap-buttonbitmap
    -closedbuttonbitmap-buttonbitmap
    Usage ChangedHow it changed
    -backgroundmodeThe values "index" and "visindex" are deprecated. The value "order" should be used instead of "index", and "ordervisible" should be used instead of "visindex". This brings @@ -1606,6 +2122,7 @@ index" command.
    -treecolumnThis used to be any integer value which may or may not have corresponded to an actual column. Now the value must be a valid column description, or an empty string to indicate no column should display @@ -1637,6 +2157,7 @@ buttons/lines.
    New
    -backgroundimage
    -columnprefix
    -columnresizemode
    -itemprefix
    -minitemheight
    -usetheme
    @@ -1868,6 +2421,7 @@ buttons/lines. + @@ -1875,6 +2429,7 @@ buttons/lines. + @@ -1882,6 +2437,7 @@ buttons/lines. + @@ -1889,6 +2445,7 @@ buttons/lines. + @@ -1897,6 +2454,7 @@ instead + @@ -1904,6 +2462,7 @@ instead + @@ -1911,6 +2470,7 @@ instead + @@ -1918,6 +2478,7 @@ instead + @@ -1925,6 +2486,7 @@ instead + @@ -1932,6 +2494,7 @@ instead + @@ -1939,6 +2502,7 @@ instead + @@ -1946,6 +2510,7 @@ instead + @@ -1953,6 +2518,7 @@ instead + @@ -1960,6 +2526,7 @@ instead + @@ -1967,6 +2534,7 @@ instead + @@ -1974,6 +2542,7 @@ instead + @@ -1981,6 +2550,7 @@ instead + @@ -1988,6 +2558,7 @@ instead + @@ -1995,6 +2566,7 @@ instead + @@ -2002,6 +2574,7 @@ instead + @@ -2009,6 +2582,7 @@ instead + @@ -2016,6 +2590,7 @@ instead + @@ -2023,6 +2598,7 @@ instead + @@ -2030,6 +2606,7 @@ instead + @@ -2037,6 +2614,7 @@ instead + @@ -2044,6 +2622,8 @@ instead + + @@ -2058,6 +2638,7 @@ instead +

    Column Configuration Options

    @@ -2065,6 +2646,7 @@ instead +
    DeprecatedWhat to use instead
    compareitem compare
    indexitem id
    numcolumnscolumn count
    numitemsitem count
    rangeitem range
    @@ -2072,6 +2654,7 @@ instead + @@ -2079,6 +2662,7 @@ instead + @@ -2086,6 +2670,7 @@ instead + @@ -2093,6 +2678,7 @@ instead + @@ -2101,6 +2687,7 @@ instead + @@ -2108,6 +2695,7 @@ instead + @@ -2115,6 +2703,7 @@ instead + @@ -2129,6 +2719,7 @@ instead + @@ -2136,6 +2727,7 @@ instead + @@ -2143,6 +2735,7 @@ instead + @@ -2150,6 +2743,7 @@ instead + @@ -2157,6 +2751,7 @@ instead + @@ -2164,6 +2759,7 @@ instead + @@ -2171,6 +2767,7 @@ instead + @@ -2178,6 +2775,7 @@ instead + + @@ -2192,6 +2791,7 @@ instead + @@ -2199,6 +2799,7 @@ instead + @@ -2206,6 +2807,7 @@ instead + @@ -2213,6 +2815,7 @@ instead + @@ -2220,6 +2823,7 @@ instead + @@ -2227,6 +2831,7 @@ instead + @@ -2234,6 +2839,7 @@ instead + @@ -2241,6 +2847,7 @@ instead + @@ -2248,6 +2855,7 @@ instead + @@ -2255,6 +2863,7 @@ instead + @@ -2262,6 +2871,7 @@ instead + @@ -2269,6 +2879,7 @@ instead + @@ -2276,6 +2887,7 @@ instead + @@ -2284,6 +2896,7 @@ for valid state names. + @@ -2291,6 +2904,7 @@ for valid state names. + @@ -2298,6 +2912,7 @@ for valid state names. + @@ -2312,6 +2928,7 @@ for valid state names. + @@ -2319,6 +2936,7 @@ for valid state names. + @@ -2326,6 +2944,7 @@ for valid state names. + @@ -2333,6 +2952,7 @@ for valid state names. + + @@ -2347,6 +2968,7 @@ for valid state names. + @@ -2354,6 +2976,7 @@ for valid state names. + @@ -2361,6 +2984,7 @@ for valid state names. + @@ -2368,6 +2992,7 @@ for valid state names. + @@ -2375,6 +3000,7 @@ for valid state names. + @@ -2382,6 +3008,7 @@ for valid state names. + @@ -2389,6 +3016,7 @@ for valid state names. + @@ -2396,6 +3024,7 @@ for valid state names. + @@ -2403,6 +3032,7 @@ for valid state names. + @@ -2410,6 +3040,7 @@ for valid state names. + @@ -2417,6 +3048,7 @@ for valid state names. + @@ -2424,6 +3056,7 @@ for valid state names. + @@ -2431,6 +3064,7 @@ for valid state names. + @@ -2438,6 +3072,7 @@ for valid state names. + @@ -2445,6 +3080,7 @@ for valid state names. + @@ -2452,6 +3088,7 @@ for valid state names. + @@ -2459,6 +3096,7 @@ for valid state names. + @@ -2466,6 +3104,7 @@ for valid state names. + @@ -2473,6 +3112,7 @@ for valid state names. + @@ -2480,6 +3120,7 @@ for valid state names. + @@ -2487,6 +3128,7 @@ for valid state names. + @@ -2494,6 +3136,7 @@ for valid state names. + @@ -2501,6 +3144,7 @@ for valid state names. + @@ -2508,6 +3152,7 @@ for valid state names. + @@ -2515,6 +3160,7 @@ for valid state names. + @@ -2522,6 +3168,7 @@ for valid state names. + @@ -2529,6 +3176,8 @@ for valid state names. + + @@ -2543,6 +3192,7 @@ for valid state names. +

    Column Command

    @@ -2550,6 +3200,7 @@ for valid state names. +
    RemovedWhat to use instead
    -relief
    @@ -2122,6 +2711,7 @@ instead +
    -state
    -sunken-state
    Renamed
    @@ -2185,6 +2783,7 @@ instead
    New name
    -arrowpad-arrowpadx
    Usage ChangedHow it changed
    -backgroundThis is now a per-state option. See COLUMNS in the help file for valid state names.
    New
    @@ -2305,6 +2920,7 @@ for valid state names. +
    -arrowbitmap
    @@ -2340,6 +2960,7 @@ for valid state names.
    -arrowimage
    -arrowpady
    -maxwidth
    -resize
    -state
    -textlines
    @@ -2557,6 +3208,7 @@ for valid state names. + @@ -2564,6 +3216,7 @@ for valid state names. + @@ -2571,6 +3224,7 @@ for valid state names. + @@ -2578,6 +3232,7 @@ for valid state names. + @@ -2586,6 +3241,7 @@ instead + @@ -2593,6 +3249,7 @@ instead + @@ -2600,6 +3257,7 @@ instead + @@ -2607,6 +3265,7 @@ instead + @@ -2614,6 +3273,7 @@ instead + @@ -2621,6 +3281,7 @@ instead + @@ -2628,6 +3289,7 @@ instead + @@ -2636,6 +3298,7 @@ Changed + @@ -2643,6 +3306,7 @@ Changed + @@ -2650,6 +3314,7 @@ Changed + @@ -2657,6 +3322,7 @@ Changed + @@ -2671,6 +3338,7 @@ Changed + @@ -2686,6 +3355,7 @@ option-value pair is given.
    + @@ -2693,6 +3363,7 @@ option-value pair is given.
    + @@ -2700,6 +3371,7 @@ option-value pair is given.
    + @@ -2707,6 +3379,7 @@ option-value pair is given.
    + @@ -2716,6 +3389,7 @@ index in the list of columns. + @@ -2723,6 +3397,7 @@ index in the list of columns. + @@ -2730,6 +3405,7 @@ index in the list of columns. + @@ -2737,6 +3413,7 @@ index in the list of columns. + @@ -2744,6 +3421,7 @@ index in the list of columns. + @@ -2751,6 +3429,7 @@ index in the list of columns. + @@ -2758,6 +3437,7 @@ index in the list of columns. + @@ -2765,6 +3445,7 @@ index in the list of columns. + @@ -2772,6 +3453,7 @@ index in the list of columns. + @@ -2779,6 +3461,7 @@ index in the list of columns. + @@ -2786,6 +3469,7 @@ index in the list of columns. + @@ -2793,6 +3477,7 @@ index in the list of columns. + @@ -2800,6 +3485,7 @@ index in the list of columns. + @@ -2807,6 +3493,7 @@ index in the list of columns. + @@ -2814,6 +3501,7 @@ index in the list of columns. + @@ -2821,6 +3509,7 @@ index in the list of columns. + @@ -2828,6 +3517,7 @@ index in the list of columns. + @@ -2835,6 +3525,7 @@ index in the list of columns. + @@ -2842,6 +3533,7 @@ index in the list of columns. + @@ -2849,6 +3541,7 @@ index in the list of columns. + @@ -2856,6 +3549,7 @@ index in the list of columns. + @@ -2863,6 +3557,7 @@ index in the list of columns. + @@ -2870,6 +3565,7 @@ index in the list of columns. + @@ -2877,6 +3573,7 @@ index in the list of columns. + @@ -2884,6 +3581,7 @@ index in the list of columns. + @@ -2891,6 +3589,7 @@ index in the list of columns. + @@ -2898,6 +3597,7 @@ index in the list of columns. + @@ -2905,6 +3605,7 @@ index in the list of columns. + @@ -2912,6 +3613,7 @@ index in the list of columns. + @@ -2919,6 +3621,7 @@ index in the list of columns. + @@ -2926,6 +3629,7 @@ index in the list of columns. + @@ -2933,6 +3637,7 @@ index in the list of columns. + @@ -2940,6 +3645,7 @@ index in the list of columns. + @@ -2947,6 +3653,7 @@ index in the list of columns. + @@ -2954,6 +3661,7 @@ index in the list of columns. + @@ -2961,6 +3669,7 @@ index in the list of columns. + @@ -2968,6 +3677,7 @@ index in the list of columns. + @@ -2975,6 +3685,8 @@ index in the list of columns. + + @@ -2989,6 +3701,7 @@ index in the list of columns. +

    Item Command

    @@ -2996,6 +3709,7 @@ index in the list of columns. +
    DeprecatedWhat to use instead
    column indexcolumn id
    Arguments/Result ChangedWhat changed
    column configure
    @@ -2664,6 +3330,7 @@ Changed +
    A column description of "all" is allowed if at least one option-value pair is given.
    @@ -2679,6 +3347,7 @@ option-value pair is given.
    +
    column createThe result is a unique identifier. Previously the result was an index in the list of columns.
    column deleteA column description of "all" is allowed.
    NewComment
    column compare
    column countreplaces "numcolumns"
    column dragconfigure
    column dragcget
    column idreplaces "column index"
    column list
    column order
    @@ -3003,6 +3717,7 @@ index in the list of columns. + @@ -3010,6 +3725,7 @@ index in the list of columns. + @@ -3017,6 +3733,7 @@ index in the list of columns. + @@ -3024,6 +3741,7 @@ index in the list of columns. + @@ -3032,6 +3750,7 @@ instead + @@ -3039,6 +3758,7 @@ instead + @@ -3046,6 +3766,7 @@ instead + @@ -3053,6 +3774,7 @@ instead + @@ -3060,6 +3782,7 @@ instead + @@ -3067,6 +3790,7 @@ instead + @@ -3074,6 +3798,7 @@ instead + @@ -3081,6 +3806,7 @@ instead + @@ -3088,6 +3814,7 @@ instead + @@ -3095,6 +3822,7 @@ instead + @@ -3102,6 +3830,7 @@ instead + @@ -3109,6 +3838,7 @@ instead + @@ -3116,6 +3846,7 @@ instead + @@ -3123,6 +3854,7 @@ instead + @@ -3130,6 +3862,7 @@ instead + @@ -3137,6 +3870,7 @@ instead + @@ -3144,6 +3878,7 @@ instead + @@ -3151,6 +3886,7 @@ instead + @@ -3158,6 +3894,7 @@ instead + @@ -3165,6 +3902,7 @@ instead + @@ -3172,6 +3910,7 @@ instead + @@ -3179,6 +3918,7 @@ instead + @@ -3186,6 +3926,7 @@ instead + @@ -3193,6 +3934,7 @@ instead + @@ -3200,6 +3942,7 @@ instead + @@ -3207,6 +3950,7 @@ instead + @@ -3214,6 +3958,7 @@ instead + @@ -3221,6 +3966,7 @@ instead + @@ -3228,6 +3974,7 @@ instead + @@ -3235,6 +3982,8 @@ instead + + @@ -3249,6 +3998,7 @@ instead +

    Notify Command

    @@ -3256,6 +4006,7 @@ instead +
    RemovedWhat to use instead
    item indexitem order
    NewComment
    item comparereplaces "compare"
    item countreplaces "numitems"
    item idreplaces "index"
    item orderreplaces "item index"
    item rangereplaces "range"
    @@ -3263,6 +4014,7 @@ instead + @@ -3270,6 +4022,7 @@ instead + @@ -3277,6 +4030,7 @@ instead + @@ -3285,6 +4039,7 @@ Changed + @@ -3292,6 +4047,7 @@ Changed + @@ -3299,6 +4055,7 @@ Changed + @@ -3306,6 +4063,7 @@ Changed + @@ -3320,6 +4079,7 @@ Changed + @@ -3328,6 +4088,7 @@ argument + @@ -3335,6 +4096,7 @@ argument + @@ -3342,6 +4104,7 @@ argument + @@ -3349,6 +4112,7 @@ argument + + + @@ -3369,6 +4135,8 @@ argument + + @@ -3382,6 +4150,7 @@ argument + New syntax:
    @@ -3389,6 +4158,8 @@ New syntax:
    + + @@ -3402,6 +4173,8 @@ New syntax:
    + + @@ -3415,6 +4188,7 @@ New syntax:
    + @@ -3422,6 +4196,7 @@ New syntax:
    + @@ -3429,6 +4204,7 @@ New syntax:
    + @@ -3436,6 +4212,7 @@ New syntax:
    + @@ -3443,6 +4220,7 @@ New syntax:
    + @@ -3544,6 +4336,7 @@ New syntax:
    + @@ -3551,6 +4344,7 @@ New syntax:
    + @@ -3558,6 +4352,7 @@ New syntax:
    + @@ -3565,6 +4360,7 @@ New syntax:
    + @@ -3573,6 +4369,7 @@ above + @@ -3580,6 +4377,8 @@ above + + @@ -3594,6 +4393,7 @@ above +

    Style Layout Options

    @@ -3601,6 +4401,7 @@ above +
    Arguments/Result ChangedWhat changed
    notify generate
    @@ -3313,6 +4071,7 @@ Changed +
    Added optional percentsCommand argument
    notify installOld syntax (supported but deprecated):
    @@ -3356,6 +4120,8 @@ argument
    notify linkageOld syntax (supported but deprecated):
    @@ -3450,6 +4228,8 @@ New syntax:
    + + @@ -3463,6 +4243,7 @@ New syntax:
    +
    notify linkage eventName
    @@ -3470,6 +4251,8 @@ New syntax:
    + + @@ -3483,6 +4266,7 @@ New syntax:
    + @@ -3490,6 +4274,7 @@ New syntax:
    + New syntax:
    @@ -3497,6 +4282,8 @@ New syntax:
    + + @@ -3510,6 +4297,7 @@ New syntax:
    +
    notify linkage <eventName>
    @@ -3517,6 +4305,8 @@ New syntax:
    + + @@ -3530,6 +4320,7 @@ New syntax:
    + @@ -3537,6 +4328,7 @@ New syntax:
    +
    notify uninstallsee notify install above
    @@ -3608,6 +4409,7 @@ above + @@ -3615,6 +4417,7 @@ above + @@ -3622,6 +4425,7 @@ above + @@ -3629,6 +4433,7 @@ above + @@ -3636,6 +4441,7 @@ above + @@ -3643,6 +4449,7 @@ above + @@ -3650,6 +4457,7 @@ above + @@ -3657,6 +4465,7 @@ above + @@ -3737,6 +4556,7 @@ surrounds. + @@ -3744,6 +4564,7 @@ surrounds. + @@ -3751,6 +4572,7 @@ surrounds. + @@ -3765,6 +4588,7 @@ surrounds. + @@ -3772,6 +4596,7 @@ surrounds. + @@ -3779,6 +4604,7 @@ surrounds. + @@ -3786,6 +4612,7 @@ surrounds. + @@ -3793,6 +4620,7 @@ surrounds. + @@ -3800,6 +4628,7 @@ surrounds. + @@ -3807,6 +4636,7 @@ surrounds. + @@ -3814,6 +4644,7 @@ surrounds. + @@ -3821,6 +4652,7 @@ surrounds. + @@ -3828,6 +4660,7 @@ surrounds. + @@ -3835,6 +4668,7 @@ surrounds. + @@ -3842,6 +4676,7 @@ surrounds. + @@ -3849,6 +4684,7 @@ surrounds. + @@ -3856,6 +4692,7 @@ surrounds. + @@ -3863,6 +4700,7 @@ surrounds. + @@ -3870,6 +4708,7 @@ surrounds. + @@ -3877,6 +4716,7 @@ surrounds. + @@ -3884,6 +4724,7 @@ surrounds. + @@ -3891,6 +4732,7 @@ surrounds. + @@ -3898,6 +4740,7 @@ surrounds. + @@ -3905,6 +4748,7 @@ surrounds. + @@ -3912,6 +4756,7 @@ surrounds. + @@ -3919,6 +4764,7 @@ surrounds. + @@ -3926,6 +4772,7 @@ surrounds. + @@ -3933,6 +4780,7 @@ surrounds. + @@ -3940,6 +4788,7 @@ surrounds. + @@ -3947,6 +4796,7 @@ surrounds. + @@ -3954,6 +4804,7 @@ surrounds. + @@ -3961,6 +4812,7 @@ surrounds. + @@ -3968,6 +4820,7 @@ surrounds. + @@ -3975,6 +4828,8 @@ surrounds. + + @@ -3989,6 +4844,7 @@ surrounds. +

    Element Changes

    @@ -3996,6 +4852,7 @@ surrounds. + @@ -4038,6 +4899,7 @@ See the new demo +

    Event Changes

    @@ -4045,6 +4907,7 @@ See the new demo + @@ -4078,6 +4944,7 @@ SUBSTITUTIONS section in the help file. +

    Library Script Changes

    @@ -4085,6 +4952,7 @@ SUBSTITUTIONS section in the help file. +

    filelist-bindings.tcl:

    @@ -4092,6 +4960,7 @@ SUBSTITUTIONS section in the help file. + @@ -4133,6 +5006,7 @@ generated when editing a file name. +

    treectrl.tcl:

    @@ -4140,6 +5014,7 @@ generated when editing a file name. + @@ -4163,6 +5040,7 @@ by Apple's user-interface guidelines. +

    Other Changes

    @@ -4170,6 +5048,7 @@ by Apple's user-interface guidelines. + @@ -4263,6 +5152,7 @@ scripts are found. +

    Demo Changes

    @@ -4270,6 +5160,7 @@ scripts are found. + @@ -4322,5 +5219,6 @@ the file name. + -- cgit v0.12
    Usage ChangedHow it changed
    -iexpandTwo new flags "x' and "y" are allowed. Previously, only the -ipadx and -ipady padding could be expanded by this option. The new xy flags expand the display area of the element, not the padding. To @@ -3667,6 +4476,8 @@ update your code, you will probably want to change this:
    + + @@ -3680,6 +4491,7 @@ update your code, you will probably want to change this:
    +
    $T style layout $S $E -iexpand we
    @@ -3687,6 +4499,7 @@ update your code, you will probably want to change this:
    + @@ -3694,6 +4507,7 @@ update your code, you will probably want to change this:
    + to this:
    @@ -3701,6 +4515,8 @@ to this:
    + + @@ -3714,6 +4530,7 @@ to this:
    +
    $T style layout $S $E -iexpand x
    @@ -3721,6 +4538,7 @@ to this:
    + @@ -3728,6 +4546,7 @@ to this:
    + Keep in mind that -union elements are not affected by -iexpand xy, since the size of a -union element is determined by the elements it surrounds.
    New
    @@ -3758,6 +4580,7 @@ surrounds. +
    -height
    -maxheight
    -maxwidth
    -minheight
    -minwidth
    -sticky
    -width