summaryrefslogtreecommitdiffstats
path: root/doc/What's New in TkTreeCtrl.html
blob: e0077bdd81e75656e6e7b087b4c705f714bb0918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!-- $Id: What's\040New\040in\040TkTreeCtrl.html,v 1.8 2005/07/12 02:51:38 treectrl Exp $ -->


  
  
  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">


  
  
  
  
  <title>What's New in TkTreeCtrl</title>
  <meta content="Tim Baker" name="author">
</head>


<body>


<h1>What's New in TkTreeCtrl 2.1</h1>

This version should be backwards compatible with 2.0, except for a few obscure changes.<br>

<h2>TreeCtrl Configuration Options</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>-itemwidth</td>


      <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>

  
  </tbody>
</table>

<h2>Column Configuration Options</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%;">Deprecated</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
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>

  
  </tbody>
</table>

<h2>Item Configuration Options</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>-height</td>

      <td>Overrides the treectrl's -itemheight option</td>
    </tr>
  </tbody>
</table>
<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);">Deprecated</th>

      <th style="background-color: rgb(204, 255, 255);">What to use
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.<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>

      <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>

    </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>

    </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
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>


      <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 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
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>
      <ul>
        <li>bitmap -foreground, -background</li>
        <li>border -relief</li>
        <li>text -fill, -font</li>
      </ul>

      <span style="color: rgb(255, 0, 0);">Potential incompatibility</span></td>

    </tr>

    <tr>


      <td>item span</td>


      <td>A style may now be displayed over multiple adjacent columns.<br>

      </td>

    </tr>

  
  </tbody>
</table>

<h2><span style="font-weight: bold;"></span>Notify 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>notify unbind<br>


      </td>


      <td>Let's you unbind all scripts from an object with one call.</td>

    </tr>

  
  </tbody>
</table>

<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>


<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>

</ul>

<h2>Event Changes</h2>


<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
SUBSTITUTIONS section in the help
file, and the new demo "Big List".</li>

</ul>

<h2>Other Changes</h2>


<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>

</ul>

<h2>Demo Changes</h2>


<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 maninpulate 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
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>


<h2>TreeCtrl Configuration Options</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%;">Replaced</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
instead</th>


    </tr>


    <tr>


      <td>-openbuttonimage</td>


      <td>-buttonimage</td>


    </tr>


    <tr>


      <td>-closedbuttonimage</td>


      <td>-buttonimage</td>


    </tr>


    <tr>


      <td>-openbuttonbitmap</td>


      <td>-buttonbitmap</td>


    </tr>


    <tr>


      <td>-closedbuttonbitmap</td>


      <td>-buttonbitmap</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204); width: 50%;">Usage
Changed</th>


      <th style="background-color: rgb(204, 255, 255);">How it changed</th>


    </tr>


    <tr>


      <td>-backgroundmode</td>


      <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
agreement with the new "item order" command which replaces the "item

index" command.</td>


    </tr>


    <tr>


      <td>-treecolumn</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
buttons/lines.</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">New</th>


      <td></td>


    </tr>


    <tr>


      <td>-backgroundimage</td>


      <td></td>


    </tr>


    <tr>


      <td>-columnprefix</td>


      <td></td>


    </tr>


    <tr>


      <td>-columnresizemode</td>


      <td></td>


    </tr>


    <tr>


      <td>-itemprefix</td>


      <td></td>


    </tr>


    <tr>


      <td>-minitemheight</td>


      <td></td>


    </tr>


    <tr>


      <td>-usetheme</td>


      <td></td>


    </tr>


  
  
  </tbody>
</table>


<h2>TreeCtrl Commands</h2>


<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">


  <tbody>


    <tr>


      <th style="width: 50%; background-color: rgb(255, 255, 204);">Deprecated</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
instead</th>


    </tr>


    <tr>


      <td>compare</td>


      <td>item compare</td>


    </tr>


    <tr>


      <td>index</td>


      <td>item id</td>


    </tr>


    <tr>


      <td>numcolumns</td>


      <td>column count</td>


    </tr>


    <tr>


      <td>numitems</td>


      <td>item count</td>


    </tr>


    <tr>


      <td>range</td>


      <td>item range</td>


    </tr>


  
  
  </tbody>
</table>


<h2>Column Configuration Options</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%;">Removed</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
instead</th>


    </tr>


    <tr>


      <td>-relief<br>


      </td>


      <td>-state</td>


    </tr>


    <tr>


      <td>-sunken</td>


      <td>-state</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">Renamed<br>


      </th>


      <th style="background-color: rgb(204, 255, 255);">New name</th>


    </tr>


    <tr>


      <td>-arrowpad</td>


      <td>-arrowpadx</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">Usage Changed</th>


      <th style="background-color: rgb(204, 255, 255);">How it changed</th>


    </tr>


    <tr>


      <td>-background</td>


      <td>This is now a per-state option. See COLUMNS in the help file
for valid state names.</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">New<br>


      </th>


      <td></td>


    </tr>


    <tr>


      <td>-arrowbitmap<br>


      </td>


      <td></td>


    </tr>


    <tr>


      <td>-arrowimage</td>


      <td></td>


    </tr>


    <tr>


      <td>-arrowpady</td>


      <td></td>


    </tr>


    <tr>


      <td>-maxwidth</td>


      <td></td>


    </tr>


    <tr>


      <td>-resize</td>


      <td></td>


    </tr>


    <tr>


      <td>-state</td>


      <td></td>


    </tr>


    <tr>


      <td>-textlines</td>


      <td></td>


    </tr>


  
  
  </tbody>
</table>


<h2>Column 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);">Deprecated</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
instead</th>


    </tr>


    <tr>


      <td>column index</td>


      <td>column id</td>


    </tr>


    <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>column configure<br>


      </td>


      <td>A column description of "all" is allowed if at least one
option-value pair is given.<br>


      </td>


    </tr>


    <tr>


      <td>column create</td>


      <td>The result is a unique identifier. Previously the result was
an
index in the list of columns.</td>


    </tr>


    <tr>


      <td>column delete</td>


      <td>A column description of "all" is allowed.</td>


    </tr>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">New</th>


      <th style="background-color: rgb(204, 255, 255);">Comment</th>


    </tr>


    <tr>


      <td>column compare</td>


      <td></td>


    </tr>


    <tr>


      <td>column count</td>


      <td>replaces "numcolumns"</td>


    </tr>


    <tr>


      <td>column dragconfigure</td>


      <td></td>


    </tr>


    <tr>


      <td>column dragcget</td>


      <td></td>


    </tr>


    <tr>


      <td>column id</td>


      <td>replaces "column index"</td>


    </tr>


    <tr>


      <td>column list</td>


      <td></td>


    </tr>


    <tr>


      <td>column order</td>


      <td></td>


    </tr>


  
  
  </tbody>
</table>


<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);">Removed</th>


      <th style="background-color: rgb(204, 255, 255);">What to use
instead</th>


    </tr>


    <tr>


      <td>item index</td>


      <td>item order</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 compare</td>


      <td>replaces "compare"</td>


    </tr>


    <tr>


      <td>item count</td>


      <td>replaces "numitems"</td>


    </tr>


    <tr>


      <td>item id</td>


      <td>replaces "index"</td>


    </tr>


    <tr>


      <td>item order</td>


      <td>replaces "item index"</td>


    </tr>


    <tr>


      <td>item range</td>


      <td>replaces "range"</td>


    </tr>


  
  
  </tbody>
</table>


<h2>Notify 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>notify generate<br>


      </td>


      <td>Added optional <span style="font-style: italic;">percentsCommand</span>
argument</td>


    </tr>


    <tr>


      <td>notify install</td>


      <td>Old syntax (supported but deprecated):<br>


      
      
      <pre style="margin-left: 40px;"><span style="font-weight: bold;">notify install event</span> <span style="font-style: italic;">eventName</span></pre>


      
      
      <pre style="margin-left: 40px;"><span style="font-weight: bold;">notify install detail</span> <span style="font-style: italic;">eventName</span> <span style="font-style: italic;">detail</span></pre>


New syntax:<br>


      
      
      <pre style="margin-left: 40px;"><span style="font-weight: bold;">notify install</span> &lt;<span style="font-style: italic;">eventName</span>&gt;</pre>


      
      
      <pre style="margin-left: 40px;"><span style="font-weight: bold;">notify install</span> &lt;<span style="font-style: italic;">eventName</span>-<span style="font-style: italic;">detail</span>&gt;</pre>


      </td>


    </tr>


    <tr>


      <td>notify linkage</td>


      <td>Old syntax (supported but deprecated):<br>


      
      
      <div style="margin-left: 40px;">
      
      
      <pre><span style="font-weight: bold;">notify linkage</span> <span style="font-style: italic;">eventName</span></pre>


      
      
      <pre><span style="font-weight: bold;">notify linkage</span> <span style="font-style: italic;">eventName</span> <span style="font-style: italic;">detail</span></pre>


      </div>


New syntax:<br>


      
      
      <div style="margin-left: 40px;">
      
      
      <pre><span style="font-weight: bold;">notify linkage</span> &lt;<span style="font-style: italic;">eventName</span>&gt;</pre>


      
      
      <pre><span style="font-weight: bold;">notify linkage</span> &lt;<span style="font-style: italic;">eventName</span>-<span style="font-style: italic;">detail</span>&gt;</pre>


      </div>


      </td>


    </tr>


    <tr>


      <td>notify uninstall</td>


      <td>see <span style="font-weight: bold;">notify install</span>
above</td>


    </tr>


  
  
  </tbody>
</table>


<h2>Style Layout Options</h2>


<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">


  <tbody>


    <tr>


      <th style="background-color: rgb(255, 255, 204);">Usage Changed</th>


      <th style="background-color: rgb(204, 255, 255);">How it changed</th>


    </tr>


    <tr>


      <td>-iexpand</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

update your code, you will probably want to change this:<br>





      

      

      <div style="margin-left: 40px;">

      

      

      <pre>$T style layout $S $E -iexpand we</pre>





      </div>





to this:<br>





      

      

      <div style="margin-left: 40px;">

      

      

      <pre>$T style layout $S $E -iexpand x<br></pre>





      </div>





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>





    </tr>





    <tr>





      <th style="width: 50%; background-color: rgb(255, 255, 204);">New<br>





      </th>





      <td></td>





    </tr>





    <tr>





      <td>-height</td>





      <td></td>





    </tr>





    <tr>





      <td>-maxheight</td>





      <td></td>





    </tr>





    <tr>





      <td>-maxwidth</td>





      <td></td>





    </tr>





    <tr>





      <td>-minheight</td>





      <td></td>





    </tr>





    <tr>





      <td>-minwidth</td>





      <td></td>





    </tr>





    <tr>





      <td>-sticky</td>





      <td></td>





    </tr>





    <tr>





      <td>-width</td>





      <td></td>





    </tr>





  

  

  </tbody>

</table>





<h2>Element Changes</h2>





<ul>





  <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

file.</li>





  <li>All element types have a new

per-state boolean option called <span style="font-weight: bold;">-draw</span>.</li>





  <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

"Textvariable" and the ELEMENTS section in the help file.</li>





</ul>





<h2>Event Changes</h2>





<ul>





  <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

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>





</ul>





<h2>Library Script Changes</h2>





<h3 style="margin-left: 40px;">filelist-bindings.tcl:</h3>





<ul>





  <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>





  <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>





  <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>





</ul>





<h3 style="margin-left: 40px;">treectrl.tcl:</h3>





<ul>





  <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>





</ul>





<h2>Other Changes</h2>





<ul>





  <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>





  <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>

is true. The sort arrow will be drawn by the Appearance Manager as

well. This will override the <span style="font-weight: bold;">-arrowside</span>

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>





  <li>Columns can be specified in new ways. See the COLUMN DESCRIPTION

section in the help file.</li>





  <li>Added new section DYNAMIC EVENTS to the help file.</li>





  <li>Added new section PER-STATE OPTIONS to 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>





  <li>The new item description <span style="font-weight: bold;">end</span>

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

set the TREECTRL_LIBRARY variable which will override where the library

scripts are found.</span></span></li>





</ul>





<h2>Demo Changes</h2>





<ul>





  <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>





  <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>





  <li>Added a new Event Browser window to display events generated by

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>





  <li>In the "Explorer" demos, the file name is hidden while editing

the file name.</li>





</ul>





</body>

</html>