summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authortreectrl <treectrl>2006-09-24 22:50:48 (GMT)
committertreectrl <treectrl>2006-09-24 22:50:48 (GMT)
commita3a848f6038c02e266e9033a194a6e02dd099cd1 (patch)
treee53c4838a76b3cda2fc2f0c7a90d4ad556202b4e /doc
parent6db043273b8eb732f18d0749ab0e68cf8d41fb82 (diff)
downloadtktreectrl-a3a848f6038c02e266e9033a194a6e02dd099cd1.zip
tktreectrl-a3a848f6038c02e266e9033a194a6e02dd099cd1.tar.gz
tktreectrl-a3a848f6038c02e266e9033a194a6e02dd099cd1.tar.bz2
Updates for 2.2.
Diffstat (limited to 'doc')
-rw-r--r--doc/What's New in TkTreeCtrl.html900
1 files changed, 899 insertions, 1 deletions
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 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
-<!-- $Id: What's\040New\040in\040TkTreeCtrl.html,v 1.12 2006/09/05 21:55:04 treectrl Exp $ -->
+<!-- $Id: What's\040New\040in\040TkTreeCtrl.html,v 1.13 2006/09/24 22:50:48 treectrl Exp $ -->
+
+
@@ -21,6 +23,9 @@
+
+
+
@@ -39,6 +44,262 @@
<body>
+<h1>What's New in TkTreeCtrl 2.2</h1>
+<h2>Item Command</h2>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
+ <tbody>
+ <tr>
+ <th style="background-color: rgb(255, 255, 204); width: 50%;">Arguments/Result
+Changed</th>
+ <th style="background-color: rgb(204, 255, 255);">What changed</th>
+ </tr>
+ <tr>
+ <td>item count</td>
+ <td>New option <span style="font-weight: bold;">-visible</span> added to return the number of items that are displayed (i.e., those whose ancestors are all expanded etc).</td>
+ </tr>
+ <tr>
+ <td>item create</td>
+ <td>New option <span style="font-weight: bold;">-tags</span> specifies an initial list of tags for created items.</td>
+ </tr>
+ <tr>
+ <td>item id</td>
+ <td>Returns a list of item ids if the item description matches multiple items.</td>
+ </tr>
+ <tr>
+
+
+
+
+ <th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
+
+
+
+
+
+
+
+ <th style="background-color: rgb(204, 255, 255);">Comment</th>
+
+
+
+
+ </tr>
+
+
+
+
+ <tr>
+
+
+
+
+ <td>item descendants</td>
+
+
+
+
+ <td>Returns the ids of the children, grandchildren, etc of an item.</td>
+ </tr>
+ <tr>
+ <td>item enabled</td>
+ <td>Gets and sets the <span style="font-weight: bold;">enabled</span>
+state for items. All items are enabled when first created. Disabled
+items cannot be selected, and are ignored by the default key-navigation
+bindings.</td>
+ </tr>
+ </tbody>
+</table>
+<h2>Tag Command</h2>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
+ <tbody>
+ <tr>
+
+
+
+
+ <th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
+
+
+
+
+
+
+
+ <th style="background-color: rgb(204, 255, 255);">Comment</th>
+
+
+
+
+ </tr>
+
+
+
+
+ <tr>
+
+
+
+
+ <td>tag add</td>
+
+
+
+
+ <td>Add tags to items. For example:<br>
+ <pre>.t tag add all {a b c}</pre>
+will add tags "a", "b" and "c" to every item.<br>
+ </td>
+ </tr>
+ <tr>
+ <td>tag expr</td>
+ <td>Evaluate a tag expression against items. For example:<br>
+ <pre>.t tag expr $item a</pre>
+returns 1 if&nbsp;an item has tag "a". Also:<br>
+ <pre>.t tag expr $item a||b</pre>
+returns 1 if &nbsp;an item has tag "a" or "b".</td>
+ </tr>
+ <tr>
+ <td>tag names</td>
+ <td>Return a list of tag names assigned to items. For example:<br>
+ <pre>.t tag names $item</pre>
+returns the tag list for an item, and:<br>
+ <pre>.t tag names all</pre>
+returns every tag assigned to any item.</td>
+ </tr>
+ <tr>
+ <td>tag remove</td>
+ <td>Remove tags from items. For example:<br>
+ <pre>.t tag remove all {b c}</pre>
+will remove tags "b" and "c" from any items that have them.</td>
+ </tr>
+ </tbody>
+</table>
+<br>
+<h2>Item Tags</h2>
+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 <a href="treectrl.html#item_tags">man page</a>.<br>
+<h2>Item Descriptions</h2>
+New keywords were added to allow multiple items to be specified by an <a href="treectrl.html#item_description">item description</a>:<br>
+<ul>
+ <li>The keyword <span style="font-weight: bold;">list</span> specifies a list of other item descriptions:
+ <pre>.t item id "list [list $a $b $c]}"</pre>
+ </li>
+ <li>The keyword <span style="font-weight: bold;">range</span> operates like the <span style="font-weight: bold;">item range</span> command:
+ <pre>.t item id "range $first $last"</pre>
+ </li>
+ <li>The keyword <span style="font-weight: bold;">tag</span> matches any items that meet a tag expression:
+ <pre>.t item id "tag $tagExpr"</pre>
+ </li>
+</ul>
+New modifiers were added to match multiple items:
+<ul>
+ <li>The modifier <span style="font-weight: bold;">ancestors</span> operates like the <span style="font-weight: bold;">item ancestors</span> command:
+ <pre>.t item id "$item ancestors"</pre>
+ </li>
+ <li>The modifier <span style="font-weight: bold;">children</span> operates like the <span style="font-weight: bold;">item children</span> command:
+ <pre>.t item id "$item children"</pre>
+ </li>
+ <li>The modifier <span style="font-weight: bold;">descendants</span> operates like the <span style="font-weight: bold;">item descendants</span> command:
+ <pre>.t item id "$item descendants"</pre>
+ </li>
+</ul>
+New qualifiers were added to refine which items are matched:<br>
+<ul>
+ <li>The qualifier <span style="font-weight: bold;">!visible</span> matches items that are not displayed:
+ <pre>.t item id "first !visible" ; # find the first item that is not displayed</pre>
+ </li>
+ <li>The qualifier <span style="font-weight: bold;">state</span> matches items that have certain states set (or not set if '!' is used):
+ <pre>.t item id "first state&nbsp;{selected !open}" ; # find the first item that is selected and collapsed</pre>
+ </li>
+ <li>The qualifier <span style="font-weight: bold;">tag</span> matches items that meet a tag expression:
+ <pre>.t item id "$item children tag $tagExpr" ; # find children of $item that have certain tags</pre>
+ </li>
+</ul>
+Also, the keyword <span style="font-weight: bold;">all</span> may now be followed by a list of qualifiers: For example:<br>
+<pre style="margin-left: 40px;">.t item id "all !visible state myState" ; # find every item that is not displayed with user-defined state "myState"</pre>
+The following commands can now operate on multiple items in a single call:<br>
+<ul>
+ <li>item configure</li>
+ <li> item element configure</li>
+ <li>item id</li>
+ <li> item image</li>
+ <li> item style map</li>
+ <li> item style set</li>
+ <li> item state forcolumn</li>
+ <li> item state set</li>
+ <li> item remove</li>
+ <li> item span</li>
+ <li> item text</li>
+</ul>
+<h2>Demo Changes</h2>
+<ul>
+ <li>New demo "My Computer". Demonstrates disabled items used as headers.</li>
+</ul>
+<h2>Bug Fixes</h2>
+<ul>
+ <li><span style="font-weight: bold;">item create</span>: Fixed bug where <span style="font-weight: bold;">-nextsibling</span> and <span style="font-weight: bold;">-prevsibling</span> options could specify an orphan item.</li>
+ <li><span style="font-weight: bold;">item delete</span>: Stopped items possibly being double-deleted by nested calls through <span style="font-weight: bold;">&lt;Selection&gt;</span> and <span style="font-weight: bold;">&lt;ItemDelete&gt;</span> binding scripts.</li>
+ <li><span style="font-weight: bold;">item expand</span>,&nbsp;<span style="font-weight: bold;">item collapse</span>,&nbsp;<span style="font-weight: bold;">item toggle</span>: Only operate on items which exist when the command is called, not any that might get created by <span style="font-weight: bold;">&lt;Expand&gt;</span> or <span style="font-weight: bold;">&lt;Collapse&gt;</span> binding scripts.</li>
+</ul>
+<hr style="width: 100%; height: 2px;">
@@ -47,6 +308,7 @@
<h1>What's New in TkTreeCtrl 2.1.1</h1>
+
<h2>Column Command</h2>
@@ -59,6 +321,7 @@
+
@@ -67,6 +330,7 @@
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
+
<tbody>
@@ -74,6 +338,7 @@
+
@@ -86,6 +351,7 @@
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Arguments/Result
Changed</th>
@@ -94,6 +360,7 @@ Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">What changed</th>
@@ -101,6 +368,7 @@ Changed</th>
+
</tr>
@@ -108,6 +376,7 @@ Changed</th>
+
<tr>
@@ -115,6 +384,7 @@ Changed</th>
+
<td>column delete<br>
@@ -122,6 +392,7 @@ Changed</th>
+
</td>
@@ -129,48 +400,66 @@ Changed</th>
+
<td>Added an optional second argument allowing a range of columns to be deleted.</td>
+
</tr>
+
+
</tbody>
</table>
+
<h2>Bug Fixes</h2>
+
<ul>
+
<li>The <span style="font-weight: bold;">item sort</span> command
will be much faster in many cases. There was a silly error in the
pivot-finding code of quicksort which resulted in the slow-down.</li>
+
<li>A&nbsp;column header will be redisplayed if an image in the header is altered.</li>
+
<li>Fixed bus errors on some Unix systems due to alignment problems.</li>
+
</ul>
+
<h2>Other Changes</h2>
+
<ul>
+
<li>The Tk caret is now positioned over the active item when it
changes. The Tk caret is used for the Magnifier accessibility
application and IME on Windows, as well as XIM under Unix.</li>
+
<li>Improved the appearance of the column headers under OSX.</li>
+
<li>Added &lt;MouseWheel&gt; support to OSX.</li>
+
<li>Changing the -visible option of an item could be slow if any
items were selected. That is because non-visible items may not be part
of the selection. A change was made so that changes to the selection
caused by modifying the -visible option of an item do not occur until
the next display update.</li>
+
</ul>
+
<h2>Demo Changes</h2>
@@ -178,16 +467,22 @@ the next display update.</li>
+
<ul>
+
<li>New demo "Column Spanning". Demonstrates a 100-column list where styles span from 1 to 20 columns each.</li>
+
<li>The&nbsp;<span style="font-weight: bold;">loupe</span> command (which performs screen capture to an image) is now implemented on Windows and OSX thanks to Jeff Hobbs.</li>
+
<li>The screen-magnifier image now resizes with the "loupe" window.</li>
+
</ul>
+
<hr style="width: 100%; height: 2px;">
<h1>What's New in TkTreeCtrl 2.1</h1>
@@ -195,12 +490,14 @@ the next display update.</li>
+
This version should be backwards compatible with 2.0, except for a few obscure changes.<br>
+
<h2>TreeCtrl Configuration Options</h2>
@@ -209,6 +506,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -217,12 +515,14 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<tbody>
+
<tr>
@@ -230,6 +530,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -237,6 +538,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
@@ -244,6 +546,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
</tr>
@@ -251,6 +554,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<tr>
@@ -258,6 +562,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<td>-itemwidth</td>
@@ -265,72 +570,85 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<td><br>
+
</td>
+
</tr>
+
<tr>
+
<td>-itemwidthequal</td>
+
<td>Deprecates the column -widthhack option.</td>
+
</tr>
+
<tr>
+
<td>-itemwidthmultiple</td>
+
<td>Deprecates the column -stepwidth option.</td>
+
</tr>
+
+
@@ -343,6 +661,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<h2>Column Configuration Options</h2>
@@ -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
+
<tbody>
+
<tr>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Deprecated</th>
@@ -379,6 +702,7 @@ This version should be backwards compatible with 2.0, except for a few obscure c
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -386,60 +710,71 @@ instead</th>
+
</tr>
+
<tr>
+
<td>-stepwidth</td>
+
<td>treectrl's -itemwidthmultiple option</td>
+
</tr>
+
<tr>
+
<td>-widthhack</td>
+
<td>treectrl's -itemwidthequal option</td>
+
</tr>
+
+
@@ -452,6 +787,7 @@ instead</th>
+
<h2>Element Command</h2>
@@ -460,6 +796,7 @@ instead</th>
+
@@ -475,14 +812,17 @@ instead</th>
+
<tbody>
+
<tr>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -490,30 +830,38 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
+
</tr>
+
<tr>
+
<td>element perstate</td>
+
<td>Like [item element perstate].</td>
+
</tr>
+
+
@@ -522,6 +870,7 @@ instead</th>
+
<h2>Item Configuration Options</h2>
@@ -530,6 +879,7 @@ instead</th>
+
@@ -541,17 +891,20 @@ instead</th>
+
<tbody>
+
<tr>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -559,40 +912,48 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
+
</tr>
+
<tr>
+
<td>-height</td>
+
<td>Overrides the treectrl's -itemheight option</td>
+
</tr>
+
+
@@ -603,6 +964,7 @@ instead</th>
+
<h2>Item Command</h2>
@@ -611,6 +973,7 @@ instead</th>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -619,6 +982,7 @@ instead</th>
+
<tbody>
@@ -626,6 +990,7 @@ instead</th>
+
<tr>
@@ -633,12 +998,14 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204);">Deprecated</th>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -646,144 +1013,168 @@ instead</th>
+
</tr>
+
<tr>
+
<td>item element actual</td>
+
<td>item element perstate</td>
+
</tr>
+
<tr>
+
<td>item complex</td>
+
<td>item element configure</td>
+
</tr>
+
<tr>
+
<th style="background-color: rgb(255, 255, 204);">Behaviour Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">What changed</th>
+
</tr>
+
<tr>
+
<td>item bbox</td>
+
<td>No longer returns an error if no style had been assigned to the column.</td>
+
</tr>
+
<tr>
+
<td>item state forcolumn</td>
+
<td>No longer returns an error if no style had been assigned to the column.</td>
+
</tr>
+
<tr>
+
<td>item style set</td>
+
<td>Does 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.<br>
@@ -792,24 +1183,28 @@ losing the element config info if the old and new styles were the same.<br>
+
<span style="color: rgb(255, 0, 0);">Potential incompatibility</span></td>
+
</tr>
+
<tr>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Arguments/Result
Changed</th>
@@ -817,30 +1212,35 @@ Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">What changed</th>
+
</tr>
+
<tr>
+
<td>item create</td>
+
<td>Added options: -count -height, -nextsibling, -open, -parent,
-prevsibling, and -returnid. Multiple items may be created with one
call using the -count option.</td>
@@ -849,24 +1249,28 @@ call using the -count option.</td>
+
</tr>
+
<tr>
+
<td>item element configure</td>
+
<td>Multiple elements in multiple columns may be configured with
a single call. Use '+' to separate elements, and ',' to separate
columns. See the docs.</td>
@@ -875,24 +1279,28 @@ columns. See the docs.</td>
+
</tr>
+
<tr>
+
<td>item style set</td>
+
<td>When 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).<br>
+
<span style="color: rgb(255, 0, 0);">Potential incompatibility</span></td>
+
</tr>
+
<tr>
+
<td>item text</td>
+
<td>When no column is specified, returns a list of one string per column.</td>
+
</tr>
+
<tr>
@@ -945,6 +1360,7 @@ column(s).<br>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -952,6 +1368,7 @@ column(s).<br>
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
@@ -959,6 +1376,7 @@ column(s).<br>
+
</tr>
@@ -966,42 +1384,49 @@ column(s).<br>
+
<tr>
+
<td>item image</td>
+
<td>Partner to the [item text] command.</td>
+
</tr>
+
<tr>
+
<td>item element perstate</td>
+
<td>Not 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.<br>
+
<br>
+
The following options no longer return a default value if the per-state option itself does not have a value specified:<br>
+
+
@@ -1029,21 +1458,26 @@ The following options no longer return a default value if the per-state option i
+
<li>bitmap -foreground, -background</li>
+
<li>border -relief</li>
+
<li>text -fill, -font</li>
+
+
@@ -1054,18 +1488,21 @@ The following options no longer return a default value if the per-state option i
+
<span style="color: rgb(255, 0, 0);">Potential incompatibility</span></td>
+
</tr>
+
<tr>
@@ -1073,6 +1510,7 @@ The following options no longer return a default value if the per-state option i
+
<td>item span</td>
@@ -1080,24 +1518,29 @@ The following options no longer return a default value if the per-state option i
+
<td>A style may now be displayed over multiple adjacent columns.<br>
+
</td>
+
</tr>
+
+
@@ -1110,6 +1553,7 @@ The following options no longer return a default value if the per-state option i
+
<h2><span style="font-weight: bold;"></span>Notify Command</h2>
@@ -1118,6 +1562,7 @@ The following options no longer return a default value if the per-state option i
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -1126,12 +1571,14 @@ The following options no longer return a default value if the per-state option i
+
<tbody>
+
<tr>
@@ -1139,6 +1586,7 @@ The following options no longer return a default value if the per-state option i
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -1146,6 +1594,7 @@ The following options no longer return a default value if the per-state option i
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
@@ -1153,6 +1602,7 @@ The following options no longer return a default value if the per-state option i
+
</tr>
@@ -1160,6 +1610,7 @@ The following options no longer return a default value if the per-state option i
+
<tr>
@@ -1167,6 +1618,7 @@ The following options no longer return a default value if the per-state option i
+
<td>notify unbind<br>
@@ -1174,6 +1626,7 @@ The following options no longer return a default value if the per-state option i
+
</td>
@@ -1181,18 +1634,22 @@ The following options no longer return a default value if the per-state option i
+
<td>Let's you unbind all scripts from an object with one call.</td>
+
</tr>
+
+
@@ -1205,54 +1662,63 @@ The following options no longer return a default value if the per-state option i
+
<h2>Style Layout Changes</h2>
+
<ul>
+
<li>Column justification will now affect the position of elements in 2 situations which previously had no effect (<span style="color: rgb(255, 0, 0);">Potential incompatibility</span>):</li>
+
</ul>
+
<ol style="margin-left: 40px;">
+
<li>If a -detach element had a fixed width larger than the other elements.</li>
+
<li>If an element had -iexpand x specified as well as -maxwidth, leaving some space available.</li>
+
</ol>
+
<h2>Element Changes</h2>
@@ -1260,33 +1726,39 @@ The following options no longer return a default value if the per-state option i
+
<ul>
+
<li>Bitmap, image and text elements are drawn clipped if given less space than they need.</li>
+
<li>Fixed line wrapping of text elements. It did not work for single lines of text at all (<span style="color: rgb(255, 0, 0);">Potential incompatibility</span>).</li>
+
<li>The text -wrap option can now be <span style="font-weight: bold;">none</span> to disable line wrapping.</li>
+
</ul>
+
<h2>Event Changes</h2>
@@ -1294,12 +1766,14 @@ The following options no longer return a default value if the per-state option i
+
<ul>
+
<li>The new static event <span style="font-weight: bold;">&lt;ItemVisibility&gt;</span> is generated when items become visible on screen and when items are no longer visible on screen.
This event allows you to create really big lists by only assigning
styles when items are about to be displayed. See the EVENTS AND SCRIPT
@@ -1310,12 +1784,14 @@ file, and the new demo "Big List".</li>
+
</ul>
+
<h2>Other Changes</h2>
@@ -1323,12 +1799,14 @@ file, and the new demo "Big List".</li>
+
<ul>
+
<li>On WinXP, the column header sort arrow is drawn like Explorer draws it if <span style="font-weight: bold;">-usetheme</span>
is true.</li>
@@ -1336,12 +1814,14 @@ is true.</li>
+
</ul>
+
<h2>Demo Changes</h2>
@@ -1349,24 +1829,28 @@ is true.</li>
+
<ul>
+
<li>New demo "Big List". Demonstrates the new <span style="font-weight: bold;">&lt;ItemVisibility&gt;</span> event, using &lt;Expand-before&gt; to add items on demand, and column spanning.</li>
+
<li>The context menu has a <span style="font-weight: bold;">Span</span> submenu that lets you manipulate column spanning in items. See the&nbsp;<span style="font-weight: bold;">item span</span> command in the help file.</li>
+
<li>Under WinXP, the "Explorer" demos will use the new <span style="font-weight: bold;">shellicon</span>
extension if available. This extension allows a treectrl to display
file/folder icons using the Win32 Shell API. It may work on other
@@ -1376,12 +1860,14 @@ versions of Windows but it hasn't been tested.</li>
+
</ul>
+
<hr style="width: 100%; height: 2px;">
<h1>What's New in TkTreeCtrl 2.0</h1>
@@ -1390,6 +1876,7 @@ versions of Windows but it hasn't been tested.</li>
+
<h2>TreeCtrl Configuration Options</h2>
@@ -1397,6 +1884,7 @@ versions of Windows but it hasn't been tested.</li>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -1404,6 +1892,7 @@ versions of Windows but it hasn't been tested.</li>
+
<tbody>
@@ -1411,6 +1900,7 @@ versions of Windows but it hasn't been tested.</li>
+
<tr>
@@ -1418,6 +1908,7 @@ versions of Windows but it hasn't been tested.</li>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Replaced</th>
@@ -1425,6 +1916,7 @@ versions of Windows but it hasn't been tested.</li>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -1433,6 +1925,7 @@ instead</th>
+
</tr>
@@ -1440,6 +1933,7 @@ instead</th>
+
<tr>
@@ -1447,6 +1941,7 @@ instead</th>
+
<td>-openbuttonimage</td>
@@ -1454,6 +1949,7 @@ instead</th>
+
<td>-buttonimage</td>
@@ -1461,6 +1957,7 @@ instead</th>
+
</tr>
@@ -1468,6 +1965,7 @@ instead</th>
+
<tr>
@@ -1475,6 +1973,7 @@ instead</th>
+
<td>-closedbuttonimage</td>
@@ -1482,6 +1981,7 @@ instead</th>
+
<td>-buttonimage</td>
@@ -1489,6 +1989,7 @@ instead</th>
+
</tr>
@@ -1496,6 +1997,7 @@ instead</th>
+
<tr>
@@ -1503,6 +2005,7 @@ instead</th>
+
<td>-openbuttonbitmap</td>
@@ -1510,6 +2013,7 @@ instead</th>
+
<td>-buttonbitmap</td>
@@ -1517,6 +2021,7 @@ instead</th>
+
</tr>
@@ -1524,6 +2029,7 @@ instead</th>
+
<tr>
@@ -1531,6 +2037,7 @@ instead</th>
+
<td>-closedbuttonbitmap</td>
@@ -1538,6 +2045,7 @@ instead</th>
+
<td>-buttonbitmap</td>
@@ -1545,6 +2053,7 @@ instead</th>
+
</tr>
@@ -1552,6 +2061,7 @@ instead</th>
+
<tr>
@@ -1559,6 +2069,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Usage
Changed</th>
@@ -1567,6 +2078,7 @@ Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">How it changed</th>
@@ -1574,6 +2086,7 @@ Changed</th>
+
</tr>
@@ -1581,6 +2094,7 @@ Changed</th>
+
<tr>
@@ -1588,6 +2102,7 @@ Changed</th>
+
<td>-backgroundmode</td>
@@ -1595,6 +2110,7 @@ Changed</th>
+
<td>The 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.</td>
+
</tr>
@@ -1613,6 +2130,7 @@ index" command.</td>
+
<tr>
@@ -1620,6 +2138,7 @@ index" command.</td>
+
<td>-treecolumn</td>
@@ -1627,6 +2146,7 @@ index" command.</td>
+
<td>This 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.</td>
+
</tr>
@@ -1644,6 +2165,7 @@ buttons/lines.</td>
+
<tr>
@@ -1651,6 +2173,7 @@ buttons/lines.</td>
+
<th style="background-color: rgb(255, 255, 204);">New</th>
@@ -1658,6 +2181,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1665,6 +2189,7 @@ buttons/lines.</td>
+
</tr>
@@ -1672,6 +2197,7 @@ buttons/lines.</td>
+
<tr>
@@ -1679,6 +2205,7 @@ buttons/lines.</td>
+
<td>-backgroundimage</td>
@@ -1686,6 +2213,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1693,6 +2221,7 @@ buttons/lines.</td>
+
</tr>
@@ -1700,6 +2229,7 @@ buttons/lines.</td>
+
<tr>
@@ -1707,6 +2237,7 @@ buttons/lines.</td>
+
<td>-columnprefix</td>
@@ -1714,6 +2245,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1721,6 +2253,7 @@ buttons/lines.</td>
+
</tr>
@@ -1728,6 +2261,7 @@ buttons/lines.</td>
+
<tr>
@@ -1735,6 +2269,7 @@ buttons/lines.</td>
+
<td>-columnresizemode</td>
@@ -1742,6 +2277,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1749,6 +2285,7 @@ buttons/lines.</td>
+
</tr>
@@ -1756,6 +2293,7 @@ buttons/lines.</td>
+
<tr>
@@ -1763,6 +2301,7 @@ buttons/lines.</td>
+
<td>-itemprefix</td>
@@ -1770,6 +2309,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1777,6 +2317,7 @@ buttons/lines.</td>
+
</tr>
@@ -1784,6 +2325,7 @@ buttons/lines.</td>
+
<tr>
@@ -1791,6 +2333,7 @@ buttons/lines.</td>
+
<td>-minitemheight</td>
@@ -1798,6 +2341,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1805,6 +2349,7 @@ buttons/lines.</td>
+
</tr>
@@ -1812,6 +2357,7 @@ buttons/lines.</td>
+
<tr>
@@ -1819,6 +2365,7 @@ buttons/lines.</td>
+
<td>-usetheme</td>
@@ -1826,6 +2373,7 @@ buttons/lines.</td>
+
<td></td>
@@ -1833,6 +2381,7 @@ buttons/lines.</td>
+
</tr>
@@ -1840,6 +2389,8 @@ buttons/lines.</td>
+
+
@@ -1854,6 +2405,7 @@ buttons/lines.</td>
+
<h2>TreeCtrl Commands</h2>
@@ -1861,6 +2413,7 @@ buttons/lines.</td>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -1868,6 +2421,7 @@ buttons/lines.</td>
+
<tbody>
@@ -1875,6 +2429,7 @@ buttons/lines.</td>
+
<tr>
@@ -1882,6 +2437,7 @@ buttons/lines.</td>
+
<th style="width: 50%; background-color: rgb(255, 255, 204);">Deprecated</th>
@@ -1889,6 +2445,7 @@ buttons/lines.</td>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -1897,6 +2454,7 @@ instead</th>
+
</tr>
@@ -1904,6 +2462,7 @@ instead</th>
+
<tr>
@@ -1911,6 +2470,7 @@ instead</th>
+
<td>compare</td>
@@ -1918,6 +2478,7 @@ instead</th>
+
<td>item compare</td>
@@ -1925,6 +2486,7 @@ instead</th>
+
</tr>
@@ -1932,6 +2494,7 @@ instead</th>
+
<tr>
@@ -1939,6 +2502,7 @@ instead</th>
+
<td>index</td>
@@ -1946,6 +2510,7 @@ instead</th>
+
<td>item id</td>
@@ -1953,6 +2518,7 @@ instead</th>
+
</tr>
@@ -1960,6 +2526,7 @@ instead</th>
+
<tr>
@@ -1967,6 +2534,7 @@ instead</th>
+
<td>numcolumns</td>
@@ -1974,6 +2542,7 @@ instead</th>
+
<td>column count</td>
@@ -1981,6 +2550,7 @@ instead</th>
+
</tr>
@@ -1988,6 +2558,7 @@ instead</th>
+
<tr>
@@ -1995,6 +2566,7 @@ instead</th>
+
<td>numitems</td>
@@ -2002,6 +2574,7 @@ instead</th>
+
<td>item count</td>
@@ -2009,6 +2582,7 @@ instead</th>
+
</tr>
@@ -2016,6 +2590,7 @@ instead</th>
+
<tr>
@@ -2023,6 +2598,7 @@ instead</th>
+
<td>range</td>
@@ -2030,6 +2606,7 @@ instead</th>
+
<td>item range</td>
@@ -2037,6 +2614,7 @@ instead</th>
+
</tr>
@@ -2044,6 +2622,8 @@ instead</th>
+
+
@@ -2058,6 +2638,7 @@ instead</th>
+
<h2>Column Configuration Options</h2>
@@ -2065,6 +2646,7 @@ instead</th>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -2072,6 +2654,7 @@ instead</th>
+
<tbody>
@@ -2079,6 +2662,7 @@ instead</th>
+
<tr>
@@ -2086,6 +2670,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Removed</th>
@@ -2093,6 +2678,7 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -2101,6 +2687,7 @@ instead</th>
+
</tr>
@@ -2108,6 +2695,7 @@ instead</th>
+
<tr>
@@ -2115,6 +2703,7 @@ instead</th>
+
<td>-relief<br>
@@ -2122,6 +2711,7 @@ instead</th>
+
</td>
@@ -2129,6 +2719,7 @@ instead</th>
+
<td>-state</td>
@@ -2136,6 +2727,7 @@ instead</th>
+
</tr>
@@ -2143,6 +2735,7 @@ instead</th>
+
<tr>
@@ -2150,6 +2743,7 @@ instead</th>
+
<td>-sunken</td>
@@ -2157,6 +2751,7 @@ instead</th>
+
<td>-state</td>
@@ -2164,6 +2759,7 @@ instead</th>
+
</tr>
@@ -2171,6 +2767,7 @@ instead</th>
+
<tr>
@@ -2178,6 +2775,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204);">Renamed<br>
@@ -2185,6 +2783,7 @@ instead</th>
+
</th>
@@ -2192,6 +2791,7 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">New name</th>
@@ -2199,6 +2799,7 @@ instead</th>
+
</tr>
@@ -2206,6 +2807,7 @@ instead</th>
+
<tr>
@@ -2213,6 +2815,7 @@ instead</th>
+
<td>-arrowpad</td>
@@ -2220,6 +2823,7 @@ instead</th>
+
<td>-arrowpadx</td>
@@ -2227,6 +2831,7 @@ instead</th>
+
</tr>
@@ -2234,6 +2839,7 @@ instead</th>
+
<tr>
@@ -2241,6 +2847,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204);">Usage Changed</th>
@@ -2248,6 +2855,7 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">How it changed</th>
@@ -2255,6 +2863,7 @@ instead</th>
+
</tr>
@@ -2262,6 +2871,7 @@ instead</th>
+
<tr>
@@ -2269,6 +2879,7 @@ instead</th>
+
<td>-background</td>
@@ -2276,6 +2887,7 @@ instead</th>
+
<td>This is now a per-state option. See COLUMNS in the help file
for valid state names.</td>
@@ -2284,6 +2896,7 @@ for valid state names.</td>
+
</tr>
@@ -2291,6 +2904,7 @@ for valid state names.</td>
+
<tr>
@@ -2298,6 +2912,7 @@ for valid state names.</td>
+
<th style="background-color: rgb(255, 255, 204);">New<br>
@@ -2305,6 +2920,7 @@ for valid state names.</td>
+
</th>
@@ -2312,6 +2928,7 @@ for valid state names.</td>
+
<td></td>
@@ -2319,6 +2936,7 @@ for valid state names.</td>
+
</tr>
@@ -2326,6 +2944,7 @@ for valid state names.</td>
+
<tr>
@@ -2333,6 +2952,7 @@ for valid state names.</td>
+
<td>-arrowbitmap<br>
@@ -2340,6 +2960,7 @@ for valid state names.</td>
+
</td>
@@ -2347,6 +2968,7 @@ for valid state names.</td>
+
<td></td>
@@ -2354,6 +2976,7 @@ for valid state names.</td>
+
</tr>
@@ -2361,6 +2984,7 @@ for valid state names.</td>
+
<tr>
@@ -2368,6 +2992,7 @@ for valid state names.</td>
+
<td>-arrowimage</td>
@@ -2375,6 +3000,7 @@ for valid state names.</td>
+
<td></td>
@@ -2382,6 +3008,7 @@ for valid state names.</td>
+
</tr>
@@ -2389,6 +3016,7 @@ for valid state names.</td>
+
<tr>
@@ -2396,6 +3024,7 @@ for valid state names.</td>
+
<td>-arrowpady</td>
@@ -2403,6 +3032,7 @@ for valid state names.</td>
+
<td></td>
@@ -2410,6 +3040,7 @@ for valid state names.</td>
+
</tr>
@@ -2417,6 +3048,7 @@ for valid state names.</td>
+
<tr>
@@ -2424,6 +3056,7 @@ for valid state names.</td>
+
<td>-maxwidth</td>
@@ -2431,6 +3064,7 @@ for valid state names.</td>
+
<td></td>
@@ -2438,6 +3072,7 @@ for valid state names.</td>
+
</tr>
@@ -2445,6 +3080,7 @@ for valid state names.</td>
+
<tr>
@@ -2452,6 +3088,7 @@ for valid state names.</td>
+
<td>-resize</td>
@@ -2459,6 +3096,7 @@ for valid state names.</td>
+
<td></td>
@@ -2466,6 +3104,7 @@ for valid state names.</td>
+
</tr>
@@ -2473,6 +3112,7 @@ for valid state names.</td>
+
<tr>
@@ -2480,6 +3120,7 @@ for valid state names.</td>
+
<td>-state</td>
@@ -2487,6 +3128,7 @@ for valid state names.</td>
+
<td></td>
@@ -2494,6 +3136,7 @@ for valid state names.</td>
+
</tr>
@@ -2501,6 +3144,7 @@ for valid state names.</td>
+
<tr>
@@ -2508,6 +3152,7 @@ for valid state names.</td>
+
<td>-textlines</td>
@@ -2515,6 +3160,7 @@ for valid state names.</td>
+
<td></td>
@@ -2522,6 +3168,7 @@ for valid state names.</td>
+
</tr>
@@ -2529,6 +3176,8 @@ for valid state names.</td>
+
+
@@ -2543,6 +3192,7 @@ for valid state names.</td>
+
<h2>Column Command</h2>
@@ -2550,6 +3200,7 @@ for valid state names.</td>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -2557,6 +3208,7 @@ for valid state names.</td>
+
<tbody>
@@ -2564,6 +3216,7 @@ for valid state names.</td>
+
<tr>
@@ -2571,6 +3224,7 @@ for valid state names.</td>
+
<th style="background-color: rgb(255, 255, 204);">Deprecated</th>
@@ -2578,6 +3232,7 @@ for valid state names.</td>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -2586,6 +3241,7 @@ instead</th>
+
</tr>
@@ -2593,6 +3249,7 @@ instead</th>
+
<tr>
@@ -2600,6 +3257,7 @@ instead</th>
+
<td>column index</td>
@@ -2607,6 +3265,7 @@ instead</th>
+
<td>column id</td>
@@ -2614,6 +3273,7 @@ instead</th>
+
</tr>
@@ -2621,6 +3281,7 @@ instead</th>
+
<tr>
@@ -2628,6 +3289,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Arguments/Result
Changed</th>
@@ -2636,6 +3298,7 @@ Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">What changed</th>
@@ -2643,6 +3306,7 @@ Changed</th>
+
</tr>
@@ -2650,6 +3314,7 @@ Changed</th>
+
<tr>
@@ -2657,6 +3322,7 @@ Changed</th>
+
<td>column configure<br>
@@ -2664,6 +3330,7 @@ Changed</th>
+
</td>
@@ -2671,6 +3338,7 @@ Changed</th>
+
<td>A column description of "all" is allowed if at least one
option-value pair is given.<br>
@@ -2679,6 +3347,7 @@ option-value pair is given.<br>
+
</td>
@@ -2686,6 +3355,7 @@ option-value pair is given.<br>
+
</tr>
@@ -2693,6 +3363,7 @@ option-value pair is given.<br>
+
<tr>
@@ -2700,6 +3371,7 @@ option-value pair is given.<br>
+
<td>column create</td>
@@ -2707,6 +3379,7 @@ option-value pair is given.<br>
+
<td>The result is a unique identifier. Previously the result was
an
index in the list of columns.</td>
@@ -2716,6 +3389,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2723,6 +3397,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2730,6 +3405,7 @@ index in the list of columns.</td>
+
<td>column delete</td>
@@ -2737,6 +3413,7 @@ index in the list of columns.</td>
+
<td>A column description of "all" is allowed.</td>
@@ -2744,6 +3421,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2751,6 +3429,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2758,6 +3437,7 @@ index in the list of columns.</td>
+
<th style="background-color: rgb(255, 255, 204);">New</th>
@@ -2765,6 +3445,7 @@ index in the list of columns.</td>
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
@@ -2772,6 +3453,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2779,6 +3461,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2786,6 +3469,7 @@ index in the list of columns.</td>
+
<td>column compare</td>
@@ -2793,6 +3477,7 @@ index in the list of columns.</td>
+
<td></td>
@@ -2800,6 +3485,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2807,6 +3493,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2814,6 +3501,7 @@ index in the list of columns.</td>
+
<td>column count</td>
@@ -2821,6 +3509,7 @@ index in the list of columns.</td>
+
<td>replaces "numcolumns"</td>
@@ -2828,6 +3517,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2835,6 +3525,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2842,6 +3533,7 @@ index in the list of columns.</td>
+
<td>column dragconfigure</td>
@@ -2849,6 +3541,7 @@ index in the list of columns.</td>
+
<td></td>
@@ -2856,6 +3549,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2863,6 +3557,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2870,6 +3565,7 @@ index in the list of columns.</td>
+
<td>column dragcget</td>
@@ -2877,6 +3573,7 @@ index in the list of columns.</td>
+
<td></td>
@@ -2884,6 +3581,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2891,6 +3589,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2898,6 +3597,7 @@ index in the list of columns.</td>
+
<td>column id</td>
@@ -2905,6 +3605,7 @@ index in the list of columns.</td>
+
<td>replaces "column index"</td>
@@ -2912,6 +3613,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2919,6 +3621,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2926,6 +3629,7 @@ index in the list of columns.</td>
+
<td>column list</td>
@@ -2933,6 +3637,7 @@ index in the list of columns.</td>
+
<td></td>
@@ -2940,6 +3645,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2947,6 +3653,7 @@ index in the list of columns.</td>
+
<tr>
@@ -2954,6 +3661,7 @@ index in the list of columns.</td>
+
<td>column order</td>
@@ -2961,6 +3669,7 @@ index in the list of columns.</td>
+
<td></td>
@@ -2968,6 +3677,7 @@ index in the list of columns.</td>
+
</tr>
@@ -2975,6 +3685,8 @@ index in the list of columns.</td>
+
+
@@ -2989,6 +3701,7 @@ index in the list of columns.</td>
+
<h2>Item Command</h2>
@@ -2996,6 +3709,7 @@ index in the list of columns.</td>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -3003,6 +3717,7 @@ index in the list of columns.</td>
+
<tbody>
@@ -3010,6 +3725,7 @@ index in the list of columns.</td>
+
<tr>
@@ -3017,6 +3733,7 @@ index in the list of columns.</td>
+
<th style="background-color: rgb(255, 255, 204);">Removed</th>
@@ -3024,6 +3741,7 @@ index in the list of columns.</td>
+
<th style="background-color: rgb(204, 255, 255);">What to use
instead</th>
@@ -3032,6 +3750,7 @@ instead</th>
+
</tr>
@@ -3039,6 +3758,7 @@ instead</th>
+
<tr>
@@ -3046,6 +3766,7 @@ instead</th>
+
<td>item index</td>
@@ -3053,6 +3774,7 @@ instead</th>
+
<td>item order</td>
@@ -3060,6 +3782,7 @@ instead</th>
+
</tr>
@@ -3067,6 +3790,7 @@ instead</th>
+
<tr>
@@ -3074,6 +3798,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">New</th>
@@ -3081,6 +3806,7 @@ instead</th>
+
<th style="background-color: rgb(204, 255, 255);">Comment</th>
@@ -3088,6 +3814,7 @@ instead</th>
+
</tr>
@@ -3095,6 +3822,7 @@ instead</th>
+
<tr>
@@ -3102,6 +3830,7 @@ instead</th>
+
<td>item compare</td>
@@ -3109,6 +3838,7 @@ instead</th>
+
<td>replaces "compare"</td>
@@ -3116,6 +3846,7 @@ instead</th>
+
</tr>
@@ -3123,6 +3854,7 @@ instead</th>
+
<tr>
@@ -3130,6 +3862,7 @@ instead</th>
+
<td>item count</td>
@@ -3137,6 +3870,7 @@ instead</th>
+
<td>replaces "numitems"</td>
@@ -3144,6 +3878,7 @@ instead</th>
+
</tr>
@@ -3151,6 +3886,7 @@ instead</th>
+
<tr>
@@ -3158,6 +3894,7 @@ instead</th>
+
<td>item id</td>
@@ -3165,6 +3902,7 @@ instead</th>
+
<td>replaces "index"</td>
@@ -3172,6 +3910,7 @@ instead</th>
+
</tr>
@@ -3179,6 +3918,7 @@ instead</th>
+
<tr>
@@ -3186,6 +3926,7 @@ instead</th>
+
<td>item order</td>
@@ -3193,6 +3934,7 @@ instead</th>
+
<td>replaces "item index"</td>
@@ -3200,6 +3942,7 @@ instead</th>
+
</tr>
@@ -3207,6 +3950,7 @@ instead</th>
+
<tr>
@@ -3214,6 +3958,7 @@ instead</th>
+
<td>item range</td>
@@ -3221,6 +3966,7 @@ instead</th>
+
<td>replaces "range"</td>
@@ -3228,6 +3974,7 @@ instead</th>
+
</tr>
@@ -3235,6 +3982,8 @@ instead</th>
+
+
@@ -3249,6 +3998,7 @@ instead</th>
+
<h2>Notify Command</h2>
@@ -3256,6 +4006,7 @@ instead</th>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -3263,6 +4014,7 @@ instead</th>
+
<tbody>
@@ -3270,6 +4022,7 @@ instead</th>
+
<tr>
@@ -3277,6 +4030,7 @@ instead</th>
+
<th style="background-color: rgb(255, 255, 204); width: 50%;">Arguments/Result
Changed</th>
@@ -3285,6 +4039,7 @@ Changed</th>
+
<th style="background-color: rgb(204, 255, 255);">What changed</th>
@@ -3292,6 +4047,7 @@ Changed</th>
+
</tr>
@@ -3299,6 +4055,7 @@ Changed</th>
+
<tr>
@@ -3306,6 +4063,7 @@ Changed</th>
+
<td>notify generate<br>
@@ -3313,6 +4071,7 @@ Changed</th>
+
</td>
@@ -3320,6 +4079,7 @@ Changed</th>
+
<td>Added optional <span style="font-style: italic;">percentsCommand</span>
argument</td>
@@ -3328,6 +4088,7 @@ argument</td>
+
</tr>
@@ -3335,6 +4096,7 @@ argument</td>
+
<tr>
@@ -3342,6 +4104,7 @@ argument</td>
+
<td>notify install</td>
@@ -3349,6 +4112,7 @@ argument</td>
+
<td>Old syntax (supported but deprecated):<br>
@@ -3356,6 +4120,8 @@ argument</td>
+
+
@@ -3369,6 +4135,8 @@ argument</td>
+
+
@@ -3382,6 +4150,7 @@ argument</td>
+
New syntax:<br>
@@ -3389,6 +4158,8 @@ New syntax:<br>
+
+
@@ -3402,6 +4173,8 @@ New syntax:<br>
+
+
@@ -3415,6 +4188,7 @@ New syntax:<br>
+
</td>
@@ -3422,6 +4196,7 @@ New syntax:<br>
+
</tr>
@@ -3429,6 +4204,7 @@ New syntax:<br>
+
<tr>
@@ -3436,6 +4212,7 @@ New syntax:<br>
+
<td>notify linkage</td>
@@ -3443,6 +4220,7 @@ New syntax:<br>
+
<td>Old syntax (supported but deprecated):<br>
@@ -3450,6 +4228,8 @@ New syntax:<br>
+
+
@@ -3463,6 +4243,7 @@ New syntax:<br>
+
<pre><span style="font-weight: bold;">notify linkage</span> <span style="font-style: italic;">eventName</span></pre>
@@ -3470,6 +4251,8 @@ New syntax:<br>
+
+
@@ -3483,6 +4266,7 @@ New syntax:<br>
+
</div>
@@ -3490,6 +4274,7 @@ New syntax:<br>
+
New syntax:<br>
@@ -3497,6 +4282,8 @@ New syntax:<br>
+
+
@@ -3510,6 +4297,7 @@ New syntax:<br>
+
<pre><span style="font-weight: bold;">notify linkage</span> &lt;<span style="font-style: italic;">eventName</span>&gt;</pre>
@@ -3517,6 +4305,8 @@ New syntax:<br>
+
+
@@ -3530,6 +4320,7 @@ New syntax:<br>
+
</div>
@@ -3537,6 +4328,7 @@ New syntax:<br>
+
</td>
@@ -3544,6 +4336,7 @@ New syntax:<br>
+
</tr>
@@ -3551,6 +4344,7 @@ New syntax:<br>
+
<tr>
@@ -3558,6 +4352,7 @@ New syntax:<br>
+
<td>notify uninstall</td>
@@ -3565,6 +4360,7 @@ New syntax:<br>
+
<td>see <span style="font-weight: bold;">notify install</span>
above</td>
@@ -3573,6 +4369,7 @@ above</td>
+
</tr>
@@ -3580,6 +4377,8 @@ above</td>
+
+
@@ -3594,6 +4393,7 @@ above</td>
+
<h2>Style Layout Options</h2>
@@ -3601,6 +4401,7 @@ above</td>
+
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
@@ -3608,6 +4409,7 @@ above</td>
+
<tbody>
@@ -3615,6 +4417,7 @@ above</td>
+
<tr>
@@ -3622,6 +4425,7 @@ above</td>
+
<th style="background-color: rgb(255, 255, 204);">Usage Changed</th>
@@ -3629,6 +4433,7 @@ above</td>
+
<th style="background-color: rgb(204, 255, 255);">How it changed</th>
@@ -3636,6 +4441,7 @@ above</td>
+
</tr>
@@ -3643,6 +4449,7 @@ above</td>
+
<tr>
@@ -3650,6 +4457,7 @@ above</td>
+
<td>-iexpand</td>
@@ -3657,6 +4465,7 @@ above</td>
+
<td>Two 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:<br>
+
+
@@ -3680,6 +4491,7 @@ update your code, you will probably want to change this:<br>
+
<pre>$T style layout $S $E -iexpand we</pre>
@@ -3687,6 +4499,7 @@ update your code, you will probably want to change this:<br>
+
</div>
@@ -3694,6 +4507,7 @@ update your code, you will probably want to change this:<br>
+
to this:<br>
@@ -3701,6 +4515,8 @@ to this:<br>
+
+
@@ -3714,6 +4530,7 @@ to this:<br>
+
<pre>$T style layout $S $E -iexpand x<br></pre>
@@ -3721,6 +4538,7 @@ to this:<br>
+
</div>
@@ -3728,6 +4546,7 @@ to this:<br>
+
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.</td>
@@ -3737,6 +4556,7 @@ surrounds.</td>
+
</tr>
@@ -3744,6 +4564,7 @@ surrounds.</td>
+
<tr>
@@ -3751,6 +4572,7 @@ surrounds.</td>
+
<th style="width: 50%; background-color: rgb(255, 255, 204);">New<br>
@@ -3758,6 +4580,7 @@ surrounds.</td>
+
</th>
@@ -3765,6 +4588,7 @@ surrounds.</td>
+
<td></td>
@@ -3772,6 +4596,7 @@ surrounds.</td>
+
</tr>
@@ -3779,6 +4604,7 @@ surrounds.</td>
+
<tr>
@@ -3786,6 +4612,7 @@ surrounds.</td>
+
<td>-height</td>
@@ -3793,6 +4620,7 @@ surrounds.</td>
+
<td></td>
@@ -3800,6 +4628,7 @@ surrounds.</td>
+
</tr>
@@ -3807,6 +4636,7 @@ surrounds.</td>
+
<tr>
@@ -3814,6 +4644,7 @@ surrounds.</td>
+
<td>-maxheight</td>
@@ -3821,6 +4652,7 @@ surrounds.</td>
+
<td></td>
@@ -3828,6 +4660,7 @@ surrounds.</td>
+
</tr>
@@ -3835,6 +4668,7 @@ surrounds.</td>
+
<tr>
@@ -3842,6 +4676,7 @@ surrounds.</td>
+
<td>-maxwidth</td>
@@ -3849,6 +4684,7 @@ surrounds.</td>
+
<td></td>
@@ -3856,6 +4692,7 @@ surrounds.</td>
+
</tr>
@@ -3863,6 +4700,7 @@ surrounds.</td>
+
<tr>
@@ -3870,6 +4708,7 @@ surrounds.</td>
+
<td>-minheight</td>
@@ -3877,6 +4716,7 @@ surrounds.</td>
+
<td></td>
@@ -3884,6 +4724,7 @@ surrounds.</td>
+
</tr>
@@ -3891,6 +4732,7 @@ surrounds.</td>
+
<tr>
@@ -3898,6 +4740,7 @@ surrounds.</td>
+
<td>-minwidth</td>
@@ -3905,6 +4748,7 @@ surrounds.</td>
+
<td></td>
@@ -3912,6 +4756,7 @@ surrounds.</td>
+
</tr>
@@ -3919,6 +4764,7 @@ surrounds.</td>
+
<tr>
@@ -3926,6 +4772,7 @@ surrounds.</td>
+
<td>-sticky</td>
@@ -3933,6 +4780,7 @@ surrounds.</td>
+
<td></td>
@@ -3940,6 +4788,7 @@ surrounds.</td>
+
</tr>
@@ -3947,6 +4796,7 @@ surrounds.</td>
+
<tr>
@@ -3954,6 +4804,7 @@ surrounds.</td>
+
<td>-width</td>
@@ -3961,6 +4812,7 @@ surrounds.</td>
+
<td></td>
@@ -3968,6 +4820,7 @@ surrounds.</td>
+
</tr>
@@ -3975,6 +4828,8 @@ surrounds.</td>
+
+
@@ -3989,6 +4844,7 @@ surrounds.</td>
+
<h2>Element Changes</h2>
@@ -3996,6 +4852,7 @@ surrounds.</td>
+
<ul>
@@ -4003,6 +4860,7 @@ surrounds.</td>
+
<li>A new element type&nbsp;<span style="font-weight: bold;">window</span>
was added.
See the new demo "Firefox Privacy" and the ELEMENTS section in the help
@@ -4013,6 +4871,7 @@ file.</li>
+
<li>All element types have a new
per-state boolean option called <span style="font-weight: bold;">-draw</span>.</li>
@@ -4021,6 +4880,7 @@ per-state boolean option called <span style="font-weight: bold;">-draw</span>.</
+
<li>The <span style="font-weight: bold;">text</span> element type
has a new option called <span style="font-weight: bold;">-textvariable</span>.
See the new demo
@@ -4031,6 +4891,7 @@ See the new demo
+
</ul>
@@ -4038,6 +4899,7 @@ See the new demo
+
<h2>Event Changes</h2>
@@ -4045,6 +4907,7 @@ See the new demo
+
<ul>
@@ -4052,6 +4915,7 @@ See the new demo
+
<li>2 new %-substitution characters <span style="font-weight: bold;">%P</span>
and <span style="font-weight: bold;">%?</span> are allowed in binding
scripts. See the EVENTS AND SCRIPT SUBSTITUTIONS section in the help
@@ -4062,6 +4926,7 @@ file.</li>
+
<li>The new static event <span style="font-weight: bold;">&lt;ItemDelete&gt;</span>
is generated when items are deleted. See the EVENTS AND SCRIPT
SUBSTITUTIONS section in the help file.</li>
@@ -4071,6 +4936,7 @@ SUBSTITUTIONS section in the help file.</li>
+
</ul>
@@ -4078,6 +4944,7 @@ SUBSTITUTIONS section in the help file.</li>
+
<h2>Library Script Changes</h2>
@@ -4085,6 +4952,7 @@ SUBSTITUTIONS section in the help file.</li>
+
<h3 style="margin-left: 40px;">filelist-bindings.tcl:</h3>
@@ -4092,6 +4960,7 @@ SUBSTITUTIONS section in the help file.</li>
+
<ul>
@@ -4099,6 +4968,7 @@ SUBSTITUTIONS section in the help file.</li>
+
<li>The Priv(edit) variable, which is used to specify which text
elements may be edited, now has the same format as Priv(sensitive).
Previously only elements in the first column could be edited.</li>
@@ -4108,6 +4978,7 @@ Previously only elements in the first column could be edited.</li>
+
<li>3 new commands in the TreeCtrl namespace should be used to access
the Priv(dragimage), Priv(edit) and Priv(sensitive) variables. The
commands are SetDragImage, SetEditable and SetSensitive.</li>
@@ -4117,6 +4988,7 @@ commands are SetDragImage, SetEditable and SetSensitive.</li>
+
<li>Two new dynamic events <span style="font-weight: bold;">&lt;Edit-begin&gt;</span>
and <span style="font-weight: bold;">&lt;Edit-end&gt;</span> are
generated when editing a file name.</li>
@@ -4126,6 +4998,7 @@ generated when editing a file name.</li>
+
</ul>
@@ -4133,6 +5006,7 @@ generated when editing a file name.</li>
+
<h3 style="margin-left: 40px;">treectrl.tcl:</h3>
@@ -4140,6 +5014,7 @@ generated when editing a file name.</li>
+
<ul>
@@ -4147,6 +5022,7 @@ generated when editing a file name.</li>
+
<li>On OSX/Aqua, the Command key is used to perform discontinuous
selection. Previously the Control key was used but Command is specified
by Apple's user-interface guidelines.</li>
@@ -4156,6 +5032,7 @@ by Apple's user-interface guidelines.</li>
+
</ul>
@@ -4163,6 +5040,7 @@ by Apple's user-interface guidelines.</li>
+
<h2>Other Changes</h2>
@@ -4170,6 +5048,7 @@ by Apple's user-interface guidelines.</li>
+
<ul>
@@ -4177,6 +5056,7 @@ by Apple's user-interface guidelines.</li>
+
<li>On WinXP, the column headers and open/close buttons are drawn
using the system theme if <span style="font-weight: bold;">-usetheme</span>
is true. The sort arrow is drawn the old-fashioned way.</li>
@@ -4186,6 +5066,7 @@ is true. The sort arrow is drawn the old-fashioned way.</li>
+
<li>On OSX/Aqua,&nbsp; the column headers and open/close buttons are
drawn
using the system theme if <span style="font-weight: bold;">-usetheme</span>
@@ -4198,6 +5079,7 @@ and <span style="font-weight: bold;">-arrowgravity</span> options.</li>
+
<li>Columns can be moved by drag-and-drop. See <span style="font-weight: bold;">column dragconfigure</span> in the help
file.</li>
@@ -4206,6 +5088,7 @@ file.</li>
+
<li>Columns can be specified in new ways. See the COLUMN DESCRIPTION
section in the help file.</li>
@@ -4214,6 +5097,7 @@ section in the help file.</li>
+
<li>Added new section DYNAMIC EVENTS to the help file.</li>
@@ -4221,6 +5105,7 @@ section in the help file.</li>
+
<li>Added new section PER-STATE OPTIONS to the help file.</li>
@@ -4228,6 +5113,7 @@ section in the help file.</li>
+
<li>The new style layout option <span style="font-weight: bold;">-indent</span>
allows elements to be displayed in the button/line area. See the <span style="font-weight: bold;">style layout</span> command in the help
file and the new demo "Firefox Privacy".</li>
@@ -4237,6 +5123,7 @@ file and the new demo "Firefox Privacy".</li>
+
<li>The new item description <span style="font-weight: bold;">end</span>
is equivalent to <span style="font-weight: bold;">last</span>.</li>
@@ -4245,6 +5132,7 @@ is equivalent to <span style="font-weight: bold;">last</span>.</li>
+
<li><span style="color: rgb(255, 0, 0);">If you have version 1.1
installed, replace the old pkgIndex.tcl file with the one from this
version (but replace the version number 2.0 with 1.1).<span style="color: rgb(0, 0, 0);"> Otherwise the old pkgIndex.tcl file will
@@ -4256,6 +5144,7 @@ scripts are found.</span></span></li>
+
</ul>
@@ -4263,6 +5152,7 @@ scripts are found.</span></span></li>
+
<h2>Demo Changes</h2>
@@ -4270,6 +5160,7 @@ scripts are found.</span></span></li>
+
<ul>
@@ -4277,6 +5168,7 @@ scripts are found.</span></span></li>
+
<li>New demo "Firefox Privacy". Demonstrates the new <span style="font-weight: bold;">window</span> element type and <span style="font-weight: bold;">-indent</span> style layout option.</li>
@@ -4284,6 +5176,7 @@ scripts are found.</span></span></li>
+
<li>New demo "Textvariable". Demonstrates the new <span style="font-weight: bold;">-textvariable</span> option of the <span style="font-weight: bold;">text</span> element.</li>
@@ -4291,6 +5184,7 @@ scripts are found.</span></span></li>
+
<li>Added a new Event Browser window to display events generated by
the main treectrl widget.</li>
@@ -4299,6 +5193,7 @@ the main treectrl widget.</li>
+
<li>The context menu can be popped up in all the demo lists. A
&lt;Control-ButtonPress-1&gt; binding for this was added under OSX/Aqua.</li>
@@ -4307,6 +5202,7 @@ the main treectrl widget.</li>
+
<li>In the "Explorer" demos, the file name is hidden while editing
the file name.</li>
@@ -4315,6 +5211,7 @@ the file name.</li>
+
</ul>
@@ -4322,5 +5219,6 @@ the file name.</li>
+
</body>
</html>