This file is indexed.

/usr/include/KWWidgets/vtkKWMultiColumnList.h is in libkwwidgets1-dev 1.0.0~cvs20100930-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

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

  Module:    $RCSfile: vtkKWMultiColumnList.h,v $

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
// .NAME vtkKWMultiColumnList - a multi-column list
// .SECTION Description
// A composite widget used for displaying multi-column lists. It is a
// front-end to a tablelist::tablelist.
// A tablelist is a multi-column listbox, implemented as a mega-widget, 
// consisting of a body and a header. The body displays a list of items, one
// per line. Each item is a list of elements, which are aligned in columns. 
// In other words, an item is the contents of a row, and an element is the
// text contained in a cell. The header consists of label widgets displaying 
// the column titles. The labels can be used, among others, for interactive
// column resizing and column-based sorting of the items.
// Use vtkKWMultiColumnListWithScrollbars if you need scrollbars.
// .SECTION Thanks
// This work is part of the National Alliance for Medical Image
// Computing (NAMIC), funded by the National Institutes of Health
// through the NIH Roadmap for Medical Research, Grant U54 EB005149.
// Information on the National Centers for Biomedical Computing
// can be obtained from http://nihroadmap.nih.gov/bioinformatics.
// .SECTION See Also
// vtkKWMultiColumnListWithScrollbars

#ifndef __vtkKWMultiColumnList_h
#define __vtkKWMultiColumnList_h

#include "vtkKWCoreWidget.h"

class vtkKWIcon;
class vtkKWMultiColumnListInternals;
class vtkKWCheckButton;
class vtkKWComboBox;
class vtkKWFrame;
class vtkKWLoadSaveButton;
class vtkStringArray;

class KWWidgets_EXPORT vtkKWMultiColumnList : public vtkKWCoreWidget
{
public:
  static vtkKWMultiColumnList* New();
  vtkTypeRevisionMacro(vtkKWMultiColumnList,vtkKWCoreWidget);
  void PrintSelf(ostream& os, vtkIndent indent);
    
  // Description:
  // Set/add/remove a binding to a widget, i.e. the command that is invoked
  // whenever the 'event' is triggered on the widget.
  // SetBinding will replace any old bindings, whereas AddBinding will
  // add the binding to the list of bindings already defined for that event.
  // RemoveBinding can remove a specific binding or all bindings for an event.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetBinding(
    const char *event, vtkObject *object, const char *method);
  virtual void SetBinding(
    const char *event, const char *command);
  virtual void AddBinding(
    const char *event, vtkObject *object, const char *method);
  virtual void AddBinding(
    const char *event, const char *command);
  virtual void RemoveBinding(const char *event);
  virtual void RemoveBinding(
    const char *event, vtkObject *object, const char *method);

  // Description:
  // Set focus to this widget.
  virtual void Focus();
  virtual int HasFocus();

  // Description:
  // Set the width (in chars) and height (in lines).
  // If width is set to 0, the widget will be large enough to show
  // all columns. If set to a different value, columns will stretch
  // depending on their width (see SetColumnWidth) and on the strech
  // parameter (see SetColumnStretchable and StretchableColumns)
  virtual void SetWidth(int width);
  virtual int GetWidth();
  virtual void SetHeight(int height);
  virtual int GetHeight();

  // Description:
  // Set/Get the background color of the widget.
  virtual void GetBackgroundColor(double *r, double *g, double *b);
  virtual double* GetBackgroundColor();
  virtual void SetBackgroundColor(double r, double g, double b);
  virtual void SetBackgroundColor(double rgb[3])
    { this->SetBackgroundColor(rgb[0], rgb[1], rgb[2]); };
  
  // Description:
  // Set/Get the foreground color of the widget.
  virtual void GetForegroundColor(double *r, double *g, double *b);
  virtual double* GetForegroundColor();
  virtual void SetForegroundColor(double r, double g, double b);
  virtual void SetForegroundColor(double rgb[3])
    { this->SetForegroundColor(rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the highlight thickness, a non-negative value indicating the
  // width of the highlight rectangle to draw around the outside of the
  // widget when it has the input focus.
  virtual void SetHighlightThickness(int);
  virtual int GetHighlightThickness();
  
  // Description:
  // Set/Get the border width, a non-negative value indicating the width of
  // the 3-D border to draw around the outside of the widget (if such a border
  // is being drawn; the Relief option typically determines this).
  virtual void SetBorderWidth(int);
  virtual int GetBorderWidth();
  
  // Description:
  // Set/Get the 3-D effect desired for the widget. 
  // The value indicates how the interior of the widget should appear
  // relative to its exterior. 
  // Valid constants can be found in vtkKWOptions::ReliefType.
  virtual void SetRelief(int);
  virtual int GetRelief();
  virtual void SetReliefToRaised();
  virtual void SetReliefToSunken();
  virtual void SetReliefToFlat();
  virtual void SetReliefToRidge();
  virtual void SetReliefToSolid();
  virtual void SetReliefToGroove();

  // Description:
  // Insert a column just before the column given by col_index. If col_index
  // is equal to (or greater than) the number of columns the new column is
  // added to the end of the column list. The AddColumn method can be
  // used to add a column directly to the end of the list.
  // Returns the index of the column
  virtual int InsertColumn(int col_index, const char *title);
  virtual int AddColumn(const char *title);

  // Description:
  // Set a column name. Most of the API in this class uses numerical indices
  // to refer to columns. Yet, the index of a column can change if columns
  // are added or removed. Assigning a unique name to a column provides a
  // way to refer to a column without worrying about its location. Use the
  // GetColumnIndexWithName() to query the index of a column given its name.
  // indexing is done using numerical index.
  // Note that the name of a column has nothing to do with its title, which
  // is used to label the column in the table.
  virtual void SetColumnName(int col_index, const char *col_name);
  virtual const char* GetColumnName(int col_index);
  virtual int GetColumnIndexWithName(const char *col_name);

  // Description:
  // Get number columns.
  // Returns -1 on error.
  virtual int GetNumberOfColumns();

  // Description:
  // Adjusts the view in the tablelist so that the column is visible.
  virtual void SeeColumn(int col_index);

  // Description:
  // Delete one or all columns in the list.
  virtual void DeleteColumn(int col_index);
  virtual void DeleteAllColumns();

  // Description:
  // Specifies a boolean value that determines whether the columns can be 
  // moved interactively.
  vtkBooleanMacro(MovableColumns, int);
  virtual void SetMovableColumns(int);
  virtual int GetMovableColumns();

  // Description:
  // Specifies additional space to provide above and below each row of the
  // widget.
  virtual void SetRowSpacing(int);
  virtual int GetRowSpacing();

  // Description:
  // Specifies a boolean value that determines whether the columns can be 
  // resized interactively.
  vtkBooleanMacro(ResizableColumns, int);
  virtual void SetResizableColumns(int);
  virtual int GetResizableColumns();

  // Description:
  // Specifies a boolean value that determines whether the columns are to be
  // separated with borders.
  vtkBooleanMacro(ColumnSeparatorsVisibility, int);
  virtual void SetColumnSeparatorsVisibility(int);
  virtual int GetColumnSeparatorsVisibility();

  // Description:
  // Specifies a boolean value that determines whether the columns labels
  // are to be shown.
  vtkBooleanMacro(ColumnLabelsVisibility, int);
  virtual void SetColumnLabelsVisibility(int);
  virtual int GetColumnLabelsVisibility();

  // Description:
  // Set/Get the column label background and foreground colors.
  virtual void GetColumnLabelBackgroundColor(double *r, double *g, double *b);
  virtual double* GetColumnLabelBackgroundColor();
  virtual void SetColumnLabelBackgroundColor(double r, double g, double b);
  virtual void SetColumnLabelBackgroundColor(double rgb[3])
    { this->SetColumnLabelBackgroundColor(rgb[0], rgb[1], rgb[2]); };
  virtual void GetColumnLabelForegroundColor(double *r, double *g, double *b);
  virtual double* GetColumnLabelForegroundColor();
  virtual void SetColumnLabelForegroundColor(double r, double g, double b);
  virtual void SetColumnLabelForegroundColor(double rgb[3])
    { this->SetColumnLabelForegroundColor(rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the column title.
  virtual void SetColumnTitle(int col_index, const char*);
  virtual const char* GetColumnTitle(int col_index);

  // Description:
  // Set/Get the width and maxwidth of a column.
  // Both must be a number. A positive value specifies the column's
  // width in average-size characters of the widget's font.  If width is
  // negative, its absolute value is interpreted as a column width in pixels.
  // Finally, a value of zero (default) specifies that the column's width is
  // to be made just large enough to hold all the elements in the column, 
  // including its header
  virtual void SetColumnWidth(int col_index, int width);
  virtual int GetColumnWidth(int col_index);
  virtual void SetColumnMaximumWidth(int col_index, int width);
  virtual int GetColumnMaximumWidth(int col_index);

  // Description:
  // Specifies a boolean value that determines whether a specific column 
  // can be stretched or not to fill the empty space on the right of
  // the table that might appear when it is resized or the width is
  // set to a larger value (see SetWidth).
  // Use StretchableColumns to set all columns to be stretchable.
  virtual void SetColumnStretchable(int col_index, int flag);
  virtual void ColumnStretchableOn(int col_index)
    { this->SetColumnStretchable(col_index, 1); };
  virtual void ColumnStretchableOff(int col_index)
    { this->SetColumnStretchable(col_index, 0); };
  virtual int GetColumnStretchable(int col_index);
  vtkBooleanMacro(StretchableColumns, int);
  virtual void SetStretchableColumns(int);

  // Description:
  // Set/Get the alignment of a column, or the aligment of the column
  // label specifically.
  // The alignment must be one of left (default), right, or center.  
  //BTX
  enum 
  {
    ColumnAlignmentLeft = 0,
    ColumnAlignmentRight,
    ColumnAlignmentCenter,
    ColumnAlignmentUnknown
  };
  //ETX
  virtual int GetColumnAlignment(int col_index);
  virtual void SetColumnAlignment(int col_index, int align);
  virtual void SetColumnAlignmentToLeft(int col_index)
    { this->SetColumnAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentLeft); };
  virtual void SetColumnAlignmentToRight(int col_index)
    { this->SetColumnAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentRight); };
  virtual void SetColumnAlignmentToCenter(int col_index)
    { this->SetColumnAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentCenter); };
  virtual int GetColumnLabelAlignment(int col_index);
  virtual void SetColumnLabelAlignment(int col_index, int align);
  virtual void SetColumnLabelAlignmentToLeft(int col_index)
    { this->SetColumnLabelAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentLeft); };
  virtual void SetColumnLabelAlignmentToRight(int col_index)
    { this->SetColumnLabelAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentRight); };
  virtual void SetColumnLabelAlignmentToCenter(int col_index)
    { this->SetColumnLabelAlignment(
      col_index, vtkKWMultiColumnList::ColumnAlignmentCenter); };

  // Description:
  // Sort by a given column.
  // The GetLastSortedColumn returns the numerical index of the column by
  // which the items were last sorted with the aid of the SortByColumn or -1 if
  // they haven't been sorted at all.
  //BTX
  enum 
  {
    SortByIncreasingOrder = 0,
    SortByDecreasingOrder,
    SortByUnknownOrder
  };
  //ETX
  virtual void SortByColumn(int col_index, int order);
  virtual void SortByColumnIncreasingOrder(int col_index)
    { this->SortByColumn(
      col_index, vtkKWMultiColumnList::SortByIncreasingOrder); };
  virtual void SortByColumnDecreasingOrder(int col_index)
    { this->SortByColumn(
      col_index, vtkKWMultiColumnList::SortByDecreasingOrder); };
  virtual int GetLastSortedColumn();
  virtual int GetLastSortedOrder();
  
  // Description:
  // Set/Get each column sort mode
  //BTX
  enum 
  {
    SortModeAscii = 0,
    SortModeDictionary,
    SortModeInteger,
    SortModeReal,
    SortModeCommand,
    SortModeUnknown
  };
  //ETX
  virtual int GetColumnSortMode(int col_index);
  virtual void SetColumnSortMode(int col_index, int mode);
  virtual void SetColumnSortModeToAscii(int col_index)
    { this->SetColumnSortMode(
      col_index, vtkKWMultiColumnList::SortModeAscii); };
  virtual void SetColumnSortModeToDictionary(int col_index)
    { this->SetColumnSortMode(
      col_index, vtkKWMultiColumnList::SortModeDictionary); };
  virtual void SetColumnSortModeToInteger(int col_index)
    { this->SetColumnSortMode(
      col_index, vtkKWMultiColumnList::SortModeInteger); };
  virtual void SetColumnSortModeToReal(int col_index)
    { this->SetColumnSortMode(
      col_index, vtkKWMultiColumnList::SortModeReal); };

  // Description:
  // Specifies a boolean value that determines whether the widget should place
  // an arrow indicating the sort order into the header label of the column
  // being sorted
  vtkBooleanMacro(SortArrowVisibility, int);
  virtual void SetSortArrowVisibility(int);
  virtual int GetSortArrowVisibility();

  // Description:
  // Set/Get if the background color of the sorted column should be set
  // automatically to SortedColumnBackgroundColor. 
  // Warning: when a different column is sorted, the background color of the
  // previously sorted column is cleared (i.e., this column has no background
  // color anymore).
  vtkBooleanMacro(ColorSortedColumn, int);
  vtkGetMacro(ColorSortedColumn, int);
  virtual void SetColorSortedColumn(int);

  // Description:
  // Set/Get the background color of the sorted column, when ColorSortedColumn
  // is set to On.
  vtkGetVector3Macro(SortedColumnBackgroundColor,double);
  virtual void SetSortedColumnBackgroundColor(
    double r, double g, double b);
  virtual void SetSortedColumnBackgroundColor(double rgb[3])
    { this->SetSortedColumnBackgroundColor(rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the type of the temporary embedded widget to be used for
  // interactive editing of the contents of the given column's cells.
  // It can be one of entry (which is the default), spinbox or checkbutton
  // at the moment. 
  // This can be set at the cell level too (see SetCellEditWindow).
  // Note that this setting controls the widget used for *editing*, not for
  // display. The cell contents is still displayed using whatever text (see
  // SetCellText), image (see SetCellImage) or custom window (see 
  // SetCellWindowCommand) is defined at the cell level. Check the
  // SetCellWindowCommandToCheckButton or SetCellWindowCommandToColorButton
  // methods for more advanced display *and* editing features.
  //BTX
  enum 
  {
    ColumnEditWindowEntry = 0,
    ColumnEditWindowCheckButton,
    ColumnEditWindowSpinBox,
    ColumnEditWindowUnknown
  };
  //ETX
  virtual int GetColumnEditWindow(int col_index);
  virtual void SetColumnEditWindow(int col_index, int arg);
  virtual void SetColumnEditWindowToEntry(int col_index)
    { this->SetColumnEditWindow(
      col_index, vtkKWMultiColumnList::ColumnEditWindowEntry); };
  virtual void SetColumnEditWindowToCheckButton(int col_index)
    { this->SetColumnEditWindow(
      col_index, vtkKWMultiColumnList::ColumnEditWindowCheckButton); };
  virtual void SetColumnEditWindowToSpinBox(int col_index)
    { this->SetColumnEditWindow(
      col_index, vtkKWMultiColumnList::ColumnEditWindowSpinBox); };

  // Description:
  // Specifies a boolean value that determines whether a specific column 
  // can be resized interactively.
  virtual void SetColumnResizable(int col_index, int flag);
  virtual void ColumnResizableOn(int col_index)
    { this->SetColumnResizable(col_index, 1); };
  virtual void ColumnResizableOff(int col_index)
    { this->SetColumnResizable(col_index, 0); };
  virtual int GetColumnResizable(int col_index);

  // Description:
  // Specifies a boolean value that determines whether a specific column 
  // can be edited interactively.
  virtual void SetColumnEditable(int col_index, int flag);
  virtual void ColumnEditableOn(int col_index)
    { this->SetColumnEditable(col_index, 1); };
  virtual void ColumnEditableOff(int col_index)
    { this->SetColumnEditable(col_index, 0); };
  virtual int GetColumnEditable(int col_index);

  // Description:
  // Specifies a boolean value that determines whether a specific column 
  // is visible or not.
  virtual void SetColumnVisibility(int col_index, int flag);
  virtual void ColumnVisibilityOn(int col_index)
    { this->SetColumnVisibility(col_index, 1); };
  virtual void ColumnVisibilityOff(int col_index)
    { this->SetColumnVisibility(col_index, 0); };
  virtual int GetColumnVisibility(int col_index);

  // Description:
  // Set/Get an arbitrary column attribute 
  // (warning, Get returns a pointer to the Tcl buffer).
  virtual int HasColumnAttribute(
    int col_index, const char *name);
  virtual void SetColumnAttribute(
    int col_index, const char *name, const char *value);
  virtual const char* GetColumnAttribute(
    int col_index, const char *name);
  virtual void SetColumnAttributeAsInt(
    int col_index, const char *name, int value);
  virtual int GetColumnAttributeAsInt(
    int col_index, const char *name);

  // Description:
  // Set/Get a column background and foreground colors
  virtual void GetColumnBackgroundColor(
    int col_index, double *r, double *g, double *b);
  virtual double* GetColumnBackgroundColor(int col_index);
  virtual void SetColumnBackgroundColor(
    int col_index, double r, double g, double b);
  virtual void SetColumnBackgroundColor(int col_index, double rgb[3])
    { this->SetColumnBackgroundColor(col_index, rgb[0], rgb[1], rgb[2]); };
  virtual void ClearColumnBackgroundColor(int col_index);
  virtual void GetColumnForegroundColor(
    int col_index, double *r, double *g, double *b);
  virtual double* GetColumnForegroundColor(int col_index);
  virtual void SetColumnForegroundColor(
    int col_index, double r, double g, double b);
  virtual void SetColumnForegroundColor(int col_index, double rgb[3])
    { this->SetColumnForegroundColor(col_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Specifies an image to display in the label of a column
  virtual void SetColumnLabelImage(int col_index, const char *);
  virtual void SetColumnLabelImageToIcon(int col_index, vtkKWIcon *icon);
  virtual void SetColumnLabelImageToPredefinedIcon(
    int col_index, int icon_index);
  virtual void SetColumnLabelImageToPixels(
    int col_index, 
    const unsigned char *pixels, int width, int height, int pixel_size,
    unsigned long buffer_length = 0);

  // Description:
  // Specifies the command to be invoked when displaying the contents of a
  // cell within a column col_index or adding them to the selection when the
  // latter is being exported. If command is a nonempty string, then it is
  // automatically concatenated with the cell's text, the resulting script is
  // evaluated in the global scope, and the return value is displayed in the
  // cell or added to the selection instead of the original data. For example,
  // a cell may hold a data value in seconds, but the format command could
  // be set to display the cell value as a formatted data (say "%Y-%m-%d").
  // Notice that this option is only used for preparing the text to be
  // displayed or returned when exporting the selection, and does not affect
  // the internal cell contents. In the case of the above example, this will
  // make it possible to sort the items very easily by time, with a second's
  // precision, even if their visual representation only contains the year, 
  // month, and day. 
  // Also check SetColumnFormatCommandToEmptyOutput or 
  // SetColumnFormatCommandToEmptyOutputIfWindowCommand, which can be used
  // to set the ColumnFormatCommand to return an empty output.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the current cell's text for that col_index column: const char*
  // The following output is expected from the command:
  // - the text to be displayed in the cell instead: const char*
  virtual void SetColumnFormatCommand(int col_index, 
                                      vtkObject *object, const char *method);
                                      
  // Description:
  // Specifies a command to be used for the comparison of the items when
  // invoking the sort subcommand of the Tcl command associated with the 
  // specified column of the tablelist widget. 
  // To compare two items (viewed as lists of cell contents
  // within one row each) during the sort operation, the command is 
  // automatically concatenated with the two items and the resulting script
  // is evaluated. The script should return an integer less than, equal to, or
  // greater than zero if the first item is to be considered less than, equal
  // to, or greater than the second, respectively.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the contents of the first item/cell to compare: const char*
  // - the contents of the second item/cell to compare: const char*
  // The following output is expected from the command:
  // - the result of the comparison: int
   virtual void SetColumnSortCommand(int col_index, 
     vtkObject *object, const char *method);
                                      
  // Description:
  // Specifies the command to be invoked when displaying the contents of a
  // cell within a column col_index.
  // This is a convenience method to set the ColumnFormatCommand to return an
  // empty output. This comes in handy if only images or embedded windows are
  // to be displayed in a column but the texts associated with the cells may
  // not simply be empty strings because they are needed for other purposes
  // (like sorting or editing). In such cases, a command returning an empty
  // string can be used, thus making sure that the textual information 
  // contained in that column remains hidden. This method can be used just
  // for that instead of SetColumnFormatCommand.
  // SetColumnFormatCommandToEmptyOutputIfWindowCommand is another variant
  // of that will only return an empty ouput if the cell's window command
  // is set (see SetCellWindowCommand methods).
  virtual void SetColumnFormatCommandToEmptyOutput(int col_index);
  virtual void SetColumnFormatCommandToEmptyOutputIfWindowCommand(int col_index);

  // Description:
  // Specifies a command to associate with the widget. This command is 
  // typically invoked when the "Delete" Key is pressed, but this will only
  // invoke the 'method' passed in. This 'method' of the 'object' needs to 
  // decide what to do with this <KeyPress-Delete> event. For examples, if
  // user wants to go ahead and delete, the 'object' needs to find out the 
  // selected rows/cells and delete them using API of this class.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetKeyPressDeleteCommand(vtkObject *object, 
                                     const char *method);

  // Description:
  // Specifies a boolean value that determines whether the rows can be 
  // moved interactively.
  vtkBooleanMacro(MovableRows, int);
  virtual void SetMovableRows(int);
  virtual int GetMovableRows();

  // Description:
  // Add a row(rows) at the end, or insert it(them) at a given location.
  virtual void AddRow();
  virtual void AddRows(int num_rows);
  virtual void InsertRow(int row_index);
  virtual void InsertRows(int row_index, int num_rows);
  
  // Description:
  // Get number of rows.
  // Returns -1 on error.
  virtual int GetNumberOfRows();

  // Description:
  // Adjusts the view in the tablelist so that the row is visible.
  virtual void SeeRow(int row_index);

  // Description:
  // Delete one or all rows in the list.
  virtual void DeleteRow(int row_index);
  virtual void DeleteAllRows();

  // Description:
  // Find a specific text in a specific column and delete the corresponding
  // row if found.
  virtual void FindAndDeleteRow(
    int look_for_col_index, const char *look_for_text);

  // Description:
  // Set/Get an arbitrary row attribute 
  // (warning, Get returns a pointer to the Tcl buffer).
  virtual int HasRowAttribute(
    int row_index, const char *name);
  virtual void SetRowAttribute(
    int row_index, const char *name, const char *value);
  virtual const char* GetRowAttribute(
    int row_index, const char *name);
  virtual void SetRowAttributeAsInt(
    int row_index, const char *name, int value);
  virtual int GetRowAttributeAsInt(
    int row_index, const char *name);

  // Description:
  // Set/Get a row background and foreground colors
  virtual void GetRowBackgroundColor(
    int row_index, double *r, double *g, double *b);
  virtual double* GetRowBackgroundColor(int row_index);
  virtual void SetRowBackgroundColor(
    int row_index, double r, double g, double b);
  virtual void SetRowBackgroundColor(int row_index, double rgb[3])
    { this->SetRowBackgroundColor(row_index, rgb[0], rgb[1], rgb[2]); };
  virtual void ClearRowBackgroundColor(int col_index);
  virtual void GetRowForegroundColor(
    int row_index, double *r, double *g, double *b);
  virtual double* GetRowForegroundColor(int row_index);
  virtual void SetRowForegroundColor(
    int row_index, double r, double g, double b);
  virtual void SetRowForegroundColor(int row_index, double rgb[3])
    { this->SetRowForegroundColor(row_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the stripe background and foreground colors, and strip height
  // Specifies the colors to use when displaying the items belonging to a
  // stripe. Each stripe is composed of the same number StripeHeight of
  // consecutive items. The first stripeHeight items are "normal" ones; they 
  // are followed by a stripe composed of the next StripeHeight items, which
  // in turn is followed by the same number of "normal" items, and so on. 
  // The default value is an empty string, indicating that the stripes will
  // inherit the colors of the widget. The Stripe colors have a higher
  // priority than the column colors, but a lower priority than the
  // row or cell color.
  virtual void GetStripeBackgroundColor(double *r, double *g, double *b);
  virtual double* GetStripeBackgroundColor();
  virtual void SetStripeBackgroundColor(double r, double g, double b);
  virtual void SetStripeBackgroundColor(double rgb[3])
    { this->SetStripeBackgroundColor(rgb[0], rgb[1], rgb[2]); };
  virtual void ClearStripeBackgroundColor();
  virtual void GetStripeForegroundColor(double *r, double *g, double *b);
  virtual double* GetStripeForegroundColor();
  virtual void SetStripeForegroundColor(double r, double g, double b);
  virtual void SetStripeForegroundColor(double rgb[3])
    { this->SetStripeForegroundColor(rgb[0], rgb[1], rgb[2]); };
  virtual void SetStripeHeight(int height);
  virtual int GetStripeHeight();
  
  // Description:
  // Specifies a boolean value that determines whether a specific row 
  // can be selected interactively.
  virtual void SetRowSelectable(int row_index, int flag);
  virtual void RowSelectableOn(int row_index)
    { this->SetRowSelectable(row_index, 1); };
  virtual void RowSelectableOff(int row_index)
    { this->SetRowSelectable(row_index, 0); };
  virtual int GetRowSelectable(int row_index);

  // Description:
  // Activate a row.
  virtual void ActivateRow(int row_index);

  // Description:
  // Set/Get contents of cell (warning, Get returns a pointer to the Tcl
  // buffer, copy the resulting string ASAP).
  // SetCellText is the fast version and assumes the cell already exists!
  // InsertCellText will insert one (or more) full row(s) if there is no
  // row/cell at that location (using InsertRow).
  // Note that InsertCellTextAsDouble will insert a number using the 
  // printf-style %f format type. Use InsertCellTextAsFormattedDouble to
  // restrict the number of digits (i.e. if size = 5, format will be %.5g)
  virtual void InsertCellText(
    int row_index, int col_index, const char *text);
  virtual void InsertCellTextAsInt(
    int row_index, int col_index, int value);
  virtual void InsertCellTextAsDouble(
    int row_index, int col_index, double value);
  virtual void InsertCellTextAsFormattedDouble(
    int row_index, int col_index, double value, int size);
  virtual void SetCellText(
    int row_index, int col_index, const char *text);
  virtual const char* GetCellText(int row_index, int col_index);
  virtual void SetCellTextAsInt(
    int row_index, int col_index, int value);
  virtual int GetCellTextAsInt(int row_index, int col_index);
  virtual void SetCellTextAsDouble(
    int row_index, int col_index, double value);
  virtual void SetCellTextAsFormattedDouble(
    int row_index, int col_index, double value, int size);
  virtual double GetCellTextAsDouble(int row_index, int col_index);

  // Description:
  // Set/Get an arbitrary cell attribute 
  // (warning, Get returns a pointer to the Tcl buffer).
  virtual int HasCellAttribute(
    int row_index, int col_index, const char *name);
  virtual void SetCellAttribute(
    int row_index, int col_index, const char *name, const char *value);
  virtual const char* GetCellAttribute(
    int row_index, int col_index, const char *name);
  virtual void SetCellAttributeAsInt(
    int row_index, int col_index, const char *name, int value);
  virtual int GetCellAttributeAsInt(
    int row_index, int col_index, const char *name);

  // Description:
  // Convenience function to Set/Get the "enabled" attribute 
  // on a cell. Note that this doesn't automatically enabled or disabled
  // the contents of a cell but embedded window should check if this
  // attribute was set to create themselves enabled or disabled automatically.
  // SetCellEnabledAttribute will call RefreshCellWithWindowCommand on the
  // cell to give a chance to an embedded window to enable/disable itself.
  virtual void SetCellEnabledAttribute(
    int row_index, int col_index, int value);
  virtual int GetCellEnabledAttribute(
    int row_index, int col_index);
  virtual int HasCellEnabledAttribute(
    int row_index, int col_index);

  // Description:
  // Set the contents of a full row or full column.
  virtual void InsertRowText(int row_index, const char *text);
  virtual void InsertColumnText(int col_index, const char *text);

  // Description:
  // Set the contents of the cell given a column index only and a text to look
  // for in a specific column. If that text is found, its row index is used to
  // set the contents of the cell, if it is not found, a new row is inserted.
  virtual void FindAndInsertCellText(
    int look_for_col_index, const char *look_for_text , 
    int col_index, const char *text);

  // Description:
  // Activate a cell.
  virtual void ActivateCell(int row_index, int col_index);

  // Description:
  // Adjusts the view in the tablelist so that the cell is visible.
  virtual void SeeCell(int row_index, int col_index);

  // Description:
  // Set/Get a cell background and foreground colors
  virtual void GetCellBackgroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellBackgroundColor(int row_index, int col_index);
  virtual void SetCellBackgroundColor(
    int row_index, int col_index, double r, double g, double b);
  virtual void SetCellBackgroundColor(
    int row_index, int col_index, double rgb[3])
    { this->SetCellBackgroundColor(
      row_index, col_index, rgb[0], rgb[1], rgb[2]); };
  virtual void ClearCellBackgroundColor(int row_index, int col_index);
  virtual void GetCellForegroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellForegroundColor(int row_index, int col_index);
  virtual void SetCellForegroundColor(
    int row_index, int col_index, double r, double g, double b);
  virtual void SetCellForegroundColor(
    int row_index, int col_index, double rgb[3])
    { this->SetCellForegroundColor(
      row_index, col_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Get the cell background or foreground color
  // In order of priority:
  // - if not selected, color is: cell > row > stripe > column > widget.
  // - if selected, color is: cell > row > column > widget.
  virtual void GetCellCurrentBackgroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellCurrentBackgroundColor(int row_index, int col_index);
  virtual void GetCellCurrentForegroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellCurrentForegroundColor(int row_index, int col_index);

  // Description:
  // Specifies a boolean value that determines whether a specific row 
  // can be edited interactively.
  virtual void SetCellEditable(int row_index, int col_index, int flag);
  virtual void CellEditableOn(int row_index, int col_index)
    { this->SetCellEditable(row_index, col_index, 1); };
  virtual void CellEditableOff(int row_index, int col_index)
    { this->SetCellEditable(row_index, col_index, 0); };
  virtual int GetCellEditable(int row_index, int col_index);

  // Description:
  // Specifies an image to display in the cell. Both text and image can
  // be displayed simultaneously. If a WindowCommand is specified for that
  // cell, it overrides the image.
  // An attempt is made to blend the image with the current cell background
  // color (as returned by GetCellBackgroundColor). But since sorting
  // a column, or inserting new rows, can change the position of the cell
  // in a stripe (see SetStripeBackgroundColor), it is best to:
  //   - use images that do not have an alpha component, or 
  //   - refresh the image periodically (each time a row is added/removed)
  //     also check SetPotentialCellColorsChangedCommand and
  //     ScheduleRefreshAllCellsWithWindowCommand or 
  //     ScheduleRefreshAllRowsWithWindowCommand.
  virtual void SetCellImage(int row_index, int col_index, const char *);
  virtual void SetCellImageToIcon(
    int row_index, int col_index, vtkKWIcon *icon);
  virtual void SetCellImageToPredefinedIcon(
    int row_index, int col_index, int icon_index);
  virtual void SetCellImageToPixels(
    int row_index, int col_index,
    const unsigned char *pixels, int width, int height, int pixel_size,
    unsigned long buffer_length = 0);
  virtual const char* GetCellImage(int row_index, int col_index);

  // Description:
  // Set/Get the type of the temporary embedded widget to be used for
  // interactive editing of the contents of the cell.
  // This option overrides the one with the same name for the column
  // containing the given cell, and may have the same values as its
  // column-related counterpart (see SetColumnEditWindow).
  // It can be one of entry (which is the default), spinbox or checkbutton
  // at the moment.
  // Note that this setting controls the widget used for *editing*, not for
  // display. The cell contents is still displayed using whatever text (see
  // SetCellText), image (see SetCellImage) or custom window (see 
  // SetCellWindowCommand) is defined at the cell level. Check the
  // SetCellWindowCommandToCheckButton or SetCellWindowCommandToColorButton
  // methods for more advanced display *and* editing features.
  //BTX
  enum 
  {
    CellEditWindowEntry = 0,
    CellEditWindowCheckButton,
    CellEditWindowSpinBox,
    CellEditWindowUnknown
  };
  //ETX
  virtual int GetCellEditWindow(int row_index, int col_index);
  virtual void SetCellEditWindow(int row_index, int col_index, int arg);
  virtual void SetCellEditWindowToEntry(int row_index, int col_index)
    { this->SetCellEditWindow(
      row_index, col_index, vtkKWMultiColumnList::CellEditWindowEntry); };
  virtual void SetCellEditWindowToCheckButton(int row_index, int col_index)
    { this->SetCellEditWindow(
      row_index,col_index, vtkKWMultiColumnList::CellEditWindowCheckButton);};
  virtual void SetCellEditWindowToSpinBox(int row_index, int col_index)
    { this->SetCellEditWindow(
      row_index, col_index, vtkKWMultiColumnList::CellEditWindowSpinBox); };

  // Description:
  // Specifies a command to create the window (i.e. widget) to be embedded
  // into the cell located at (row_index, col_index).
  // The command is automatically concatenated with the name of the tablelist
  // widget, the cell's row and column indices, as well as the path name of
  // the embedded window to be created, and the resulting script is evaluated
  // in the global scope. This path name can be used to create your own
  // vtkKWWidget by assigning the widget's name manually using vtkKWWidget's
  // SetWidgetName method.
  // In most case, you should attempt to set the widget's background and
  // foreground colors to match the cell's background and foreground colors
  // (which can be retrieved using GetCellCurrentBackgroundColor and 
  // GetCellCurrentForegroundColor). 
  // Since the background and foreground colors of the cell change dynamically
  // depending on the sorting order and the selected rows, you should set
  // the SetPotentialCellColorsChangedCommand to this object's own
  // ScheduleRefreshColorsOfAllCellsWithWindowCommand method so that each time
  // the cell colors change, this user-defined widget is refreshed.
  // Also, if you have set a text contents in the same cell (using SetCellText)
  // you may want to hide it automatically using 
  // SetColumnFormatCommandToEmptyOutput or 
  // SetColumnFormatCommandToEmptyOutputIfWindowCommand.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the name of the internal tablelist widget (to be ignored): const char*
  // - the cell location, i.e. its row and column indices: int, int
  // - the path name of the embedded window/widget to be created: const char*
  virtual void SetCellWindowCommand(
    int row_index, int col_index, vtkObject *object, const char *method);

  // Description:
  // The SetCellWindowCommandToCheckButton method is a very convenient
  // way to automatically display a checkbutton in the cell. The selected
  // state of the button is interpreted directly from the text in the cell
  // (as set by SetCellText for example), and thus should be either 0 or 1.
  // The editable flag of the cell is automatically set to 0, do
  // not change it manually using SetCellEditable. 
  // When the checkbutton selected state changes, the contents of
  // the cell is updated automatically (to 0 or 1). Note that the
  // EditEndCommand and CellUpdatedCommand are handled the same way.
  // Check the SetCellWindowCommand method for more information.
  // Important: note that you can not set the Command for this checkbutton
  // (doing so will prevent CellUpdatedCommand from being called for example
  // or the cell contents to be updated). Also note that a new checkbutton
  // instance will be created each time you sort its column (by design of
  // the third-party tablelist Tk widget used under the hood).
  // WARNING: do NOT use GetCellWindowAsCheckButton and set any value on it;
  // anytime the table is sorted, a new checkbutton is recreated automatically
  // by calling the corresponding CellWindowCommand; therefore, any value
  // you may have set will be lost. The widget itself is just a representation
  // of the value inside a cell (here, a boolean).
  virtual void SetCellWindowCommandToCheckButton(int row_index, int col_index);
  virtual vtkKWCheckButton *GetCellWindowAsCheckButton(
    int row_index, int col_index);

  // Description:
  // The SetCellWindowCommandToComboBox is a convenience method to 
  // add a list of items in a combo box within one of the cells. For instance, 
  // similar items may be grouped and added in a pull down list. This also
  // prevents overcrowding the Multi-column list by having things hidden in a 
  // combo box.
  // WARNING: do NOT use GetCellWindowAsComboBox and set any value on it;
  // anytime the table is sorted, a new combo box is recreated automatically
  // by calling the corresponding CellWindowCommand; therefore, any value
  // you may have set will be lost. The widget itself is just a representation
  // of the value inside a cell.
  virtual void SetCellWindowCommandToComboBox(int row_index, int col_index);
  virtual void SetCellWindowCommandToComboBoxWithValues(
    int row_index, int col_index, int nb_values, const char *values[]);
  virtual void SetCellWindowCommandToComboBoxWithValuesAsArray(
    int row_index, int col_index, vtkStringArray *values);
  virtual void SetCellWindowCommandToComboBoxWithValuesAsSemiColonSeparated(
    int row_index, int col_index, const char *values);
  virtual vtkKWComboBox *GetCellWindowAsComboBox(int row_index, int col_index);
  virtual void SetCellWindowComboBoxValues(
    int row_index, int col_index, int nb_values, const char *values[]);
  virtual void SetCellWindowComboBoxValuesAsArray(
    int row_index, int col_index, vtkStringArray *values);
  virtual void SetCellWindowComboBoxValuesAsSemiColonSeparated(
    int row_index, int col_index, const char *values);

  // Description:
  // The SetCellWindowCommandToColorButton method is a convenient
  // way to automatically display a color button in the cell. The color of
  // the button is interpreted directly from the text in the cell 
  // (as set by SetCellText for example), provided it is a space separated
  // list of 3 normalized floating point numbers representing the
  // red, green and blue components of the color (ex: "1.0 0.2 0.6").
  // When the color button is edited (if the column or cell is
  // made editable), a color dialog pops up so that the user can pick
  // a new color. The contents of the cell is updated automatically 
  // with the new color value, as a similar space separated list of
  // normalized R, G, B values. Note that the EditStartCommand, 
  // EditEndCommand and CellUpdatedCommand are handled the same way.
  // Check the SetCellWindowCommand method for more information.
  // Set UseBalloonHelpStringInCellColorButton to On to set the color button
  // balloon help string automatically (it will be set to display the
  // color in different color space). Off by default for performance reasons.
  // WARNING: do NOT use GetCellWindowAsFrame and set any value on it;
  // anytime the table is sorted, a new frame is recreated automatically
  // by calling the corresponding CellWindowCommand; therefore, any value
  // you may have set will be lost. The widget itself is just a representation
  // of the value inside a cell (here, a color).
  virtual void SetCellWindowCommandToColorButton(int row_index, int col_index);
  virtual vtkKWFrame* GetCellWindowAsFrame(int row_index, int col_index);
  vtkBooleanMacro(UseBalloonHelpStringInCellColorButton, int);
  vtkGetMacro(UseBalloonHelpStringInCellColorButton, int);
  virtual void SetUseBalloonHelpStringInCellColorButton(int);

  // Description:
  // The SetCellWindowCommandToPickDirectoryButton is a convenience method
  // to automatically display a LoadSaveButton with ChooseDirectoryOn
  // in the cell. The selected directory of the button is interpreted 
  // directly from the text in the cell, as set by SetCellText for example.  
  // WARNING: do NOT use GetCellWindowAsPickDirectoryButton and set any value
  // on it; anytime the table is sorted, a new directory button is recreated
  // automatically by calling the corresponding CellWindowCommand; therefore, 
  // any value you may have set will be lost. The widget itself is just a
  // representation of the value inside a cell (here, a filename).
  virtual void SetCellWindowCommandToPickDirectoryButton(
    int row_index, int col_index);
  virtual vtkKWLoadSaveButton* GetCellWindowAsPickDirectoryButton(
    int row_index, int col_index);

  // Description:
  // Specifies a command to be invoked when the window embedded into the cell
  // located at (row_index, col_index) is destroyed. It is automatically 
  // concatenated the same parameter as the SetCellWindowCommand method that
  // was used to create the embedded window.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the name of the internal tablelist widget (to be ignored): const char*
  // - the cell location, i.e. row and column indices: int, int
  // - the path name of the embedded window/widget to be created: const char*
  virtual void SetCellWindowDestroyCommand(
    int row_index, int col_index, vtkObject *object, const char *method);

  // Description:
  // The SetCellWindowDestroyCommandToRemoveChild method is a convenient
  // way to automatically set the CellWindowDestroyCommand to a callback that
  // will remove the child widget that matches the name of the Tk widget about
  // to be destroyed. This is very useful if the SetCellWindowCommand
  // is set to a callback that actually allocates a new vtkKWWidget object.
  // That way, each time the cell is about to be destroyed, it is
  // cleanly de-allocated first (by setting its Parent to NULL).
  virtual void SetCellWindowDestroyCommandToRemoveChild(
    int row_index, int col_index);

  // Description:
  // Force a cell (or all cells, or all rows in a column) for which a 
  // WindowCommand has been defined to recreate its dynamic content. It does
  // so by setting the WindowCommand to NULL, than setting it to its previous
  // value (per author's suggestion).
  // The ScheduleRefreshAllCellsWithWindowCommand method will
  // schedule RefreshAllCellsWithWindowCommand when the application is idle.
  // The ScheduleRefreshAllRowsWithWindowCommand method will
  // schedule RefreshAllRowsWithWindowCommand when the application is idle.
  virtual void RefreshCellWithWindowCommand(int row_index, int col_index);
  virtual void RefreshAllCellsWithWindowCommand();
  virtual void ScheduleRefreshAllCellsWithWindowCommand();
  virtual void RefreshAllRowsWithWindowCommand(int col);
  virtual void ScheduleRefreshAllRowsWithWindowCommand(int col);
  virtual void RefreshEnabledStateOfAllCellsWithWindowCommand();
  virtual void ScheduleRefreshEnabledStateOfAllCellsWithWindowCommand();

  // Description:
  // Force a cell (or all cells) for which a WindowCommand has been defined
  // to set the background and foreground colors to the cell current
  // background and foreground colors.
  // It does so by tyring to safe-down-cast the widget inside that cell into
  // a vtkKWCoreWidget and set its background color to the color returned
  // by GetCellCurrentBackgroundColor and its foreground color to the color
  // returned by GetCellCurrentForegroundColor. It then performs the same
  // for the first level children of the widget inside that cell.
  // This can be useful when the cell contents is an image with an alpha
  // channel (transparency), or a user-defined dynamic widget 
  // (see SetCellWindowCommand and SetPotentialCellColorsChangedCommand). 
  // The ScheduleRefreshColorsOfAllCellsWithWindowCommand method will
  // schedule RefreshColorsOfAllCellsWithWindowCommand when the application
  // is idle: this is especially useful in conjonction with the 
  // SetPotentialCellColorsChangedCommand method.
  virtual void RefreshColorsOfCellWithWindowCommand(
    int row_index, int col_index);
  virtual void RefreshColorsOfAllCellsWithWindowCommand();
  virtual void ScheduleRefreshColorsOfAllCellsWithWindowCommand();

  // Description:
  // Retrieve the path of the window contained in the cell as created by 
  // the WindowCommand.
  virtual const char* GetCellWindowWidgetName(int row_index, int col_index);

  // Description:
  // Once a user-defined dynamic widget is created by the WindowCommand, 
  // clicking on it is likely *not* to trigger the same interactive behavior
  // as clicking on a regular cell (i.e., clicking on the widget will not
  // select the row or cell for example). This can be a good thing if
  // clicking on the widget is meant to be intercepted by the widget to
  // trigger a different behaviour, but in many other cases, one would want
  // the interaction bindings to remain the same and consistent for all rows.
  // In order to do so, the common widget row bindings have to be added to the
  // widget the was just created. To do so, call AddBindingsToWidget, either on
  // the Tk widget name, or on avtkKWWidget that may have been used to wrap
  // around that Tk widget name.
  // A complex widget can be made of several other sub-widgets that need
  // the bindings to be passed on too. Use AddBindingsToWidgetAndChildren
  // to pass the bindings to a widget and its chilren automatically (or
  // call AddBindingsToWidget manually on each sub-widgets).
  virtual void AddBindingsToWidgetName(const char *widget_name);
  virtual void AddBindingsToWidget(vtkKWWidget *widget);
  virtual void AddBindingsToWidgetAndChildren(vtkKWWidget *widget);

  // Description:
  // Find contents of cell in all table or single column
  // One FindCellText signature returns 1 if found, 0 otherwise, and
  // assign the position to row_index, col_index. The other FindCellText
  // method returns a pointer to an array of 2 ints (row and col index) if
  // found, NULL otherwise.
  // FindCellTextInColumn return the row index of the cell in the col_index
  // column if found, or -1 otherwise.
  virtual int FindCellText(const char *text, int *row_index, int *col_index);
  virtual int* FindCellText(const char *text);
  virtual int FindCellTextInColumn(int col_index, const char *text);
  virtual int FindCellTextAsIntInColumn(int col_index, int value);

  // Description:
  // Edit cell (or cancel edit). If supported, edit cell contents interactively
  // CancelEditing attempts to cancel the current interactive editing.  
  // FinishEditing attempts to terminate the current interactive editing.  
  virtual void EditCell(int row_index, int col_index);
  virtual void CancelEditing();
  virtual void FinishEditing();

  // Description:
  // Set/Get the selection background and foreground colors.
  virtual void GetSelectionBackgroundColor(double *r, double *g, double *b);
  virtual double* GetSelectionBackgroundColor();
  virtual void SetSelectionBackgroundColor(double r, double g, double b);
  virtual void SetSelectionBackgroundColor(double rgb[3])
    { this->SetSelectionBackgroundColor(rgb[0], rgb[1], rgb[2]); };
  virtual void GetSelectionForegroundColor(double *r, double *g, double *b);
  virtual double* GetSelectionForegroundColor();
  virtual void SetSelectionForegroundColor(double r, double g, double b);
  virtual void SetSelectionForegroundColor(double rgb[3])
    { this->SetSelectionForegroundColor(rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the selection background and foreground colors for a specific
  // column.
  virtual void GetColumnSelectionBackgroundColor(
    int col_index, double *r, double *g, double *b);
  virtual double* GetColumnSelectionBackgroundColor(int col_index);
  virtual void SetColumnSelectionBackgroundColor(
    int col_index, double r, double g, double b);
  virtual void SetColumnSelectionBackgroundColor(int col_index, double rgb[3])
    { this->SetColumnSelectionBackgroundColor(
      col_index, rgb[0], rgb[1], rgb[2]); };
  virtual void GetColumnSelectionForegroundColor(
    int col_index, double *r, double *g, double *b);
  virtual double* GetColumnSelectionForegroundColor(int col_index);
  virtual void SetColumnSelectionForegroundColor(
    int col_index, double r, double g, double b);
  virtual void SetColumnSelectionForegroundColor(int col_index, double rgb[3])
    { this->SetColumnSelectionForegroundColor(
      col_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the selection background and foreground colors for a specific
  // row.
  virtual void GetRowSelectionBackgroundColor(
    int row_index, double *r, double *g, double *b);
  virtual double* GetRowSelectionBackgroundColor(int row_index);
  virtual void SetRowSelectionBackgroundColor(
    int row_index, double r, double g, double b);
  virtual void SetRowSelectionBackgroundColor(int row_index, double rgb[3])
    { this->SetRowSelectionBackgroundColor(
      row_index, rgb[0], rgb[1], rgb[2]); };
  virtual void GetRowSelectionForegroundColor(
    int row_index, double *r, double *g, double *b);
  virtual double* GetRowSelectionForegroundColor(int row_index);
  virtual void SetRowSelectionForegroundColor(
    int row_index, double r, double g, double b);
  virtual void SetRowSelectionForegroundColor(int row_index, double rgb[3])
    { this->SetRowSelectionForegroundColor(
      row_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the selection background and foreground colors for a specific
  // cell.
  virtual void GetCellSelectionBackgroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellSelectionBackgroundColor(
    int row_index, int col_index);
  virtual void SetCellSelectionBackgroundColor(
    int row_index, int col_index, double r, double g, double b);
  virtual void SetCellSelectionBackgroundColor(
    int row_index, int col_index, double rgb[3])
    { this->SetCellSelectionBackgroundColor(
      row_index, col_index, rgb[0], rgb[1], rgb[2]); };
  virtual void GetCellSelectionForegroundColor(
    int row_index, int col_index, double *r, double *g, double *b);
  virtual double* GetCellSelectionForegroundColor(
    int row_index, int col_index);
  virtual void SetCellSelectionForegroundColor(
    int row_index, int col_index, double r, double g, double b);
  virtual void SetCellSelectionForegroundColor(
    int row_index, int col_index, double rgb[3])
    { this->SetCellSelectionForegroundColor(
      row_index, col_index, rgb[0], rgb[1], rgb[2]); };

  // Description:
  // Set/Get the one of several styles for manipulating the selection. 
  // Valid constants can be found in vtkKWOptions::SelectionModeType.
  // Default is browse.
  virtual void SetSelectionMode(int);
  virtual int GetSelectionMode();
  virtual void SetSelectionModeToSingle();
  virtual void SetSelectionModeToBrowse();
  virtual void SetSelectionModeToMultiple();
  virtual void SetSelectionModeToExtended();

  // Description:
  // Set/Get the selection type.
  // Specifies one of two selection types for the tablelist widget: row or
  // cell. If the selection type is row then the default bindings will select
  // and deselect entire items, and the whole row having the location cursor
  // will be displayed as active when the tablelist has the keyboard focus.
  // If the selection type is cell then the default bindings will select and
  // deselect individual elements, and the single cell having the location 
  // cursor will be displayed as active when the tablelist has the keyboard 
  // focus. 
  //BTX
  enum 
  {
    SelectionTypeRow,
    SelectionTypeCell,
    SelectionTypeUnknown
  };
  //ETX
  virtual int GetSelectionType();
  virtual void SetSelectionType(int align);
  virtual void SetSelectionTypeToRow()
    { this->SetSelectionType(vtkKWMultiColumnList::SelectionTypeRow); };
  virtual void SetSelectionTypeToCell()
    { this->SetSelectionType(vtkKWMultiColumnList::SelectionTypeCell); };

  // Description:
  // Select/deselect a row, or single row (any other selection is cleared).
  virtual void SelectRow(int row_index);
  virtual void DeselectRow(int row_index);
  virtual void SelectSingleRow(int row_index);

  // Description:
  // Check if row is selected (i.e. any element in the row is selected)
  virtual int IsRowSelected(int row_index);

  // Description:
  // Get the number of selected rows, and retrieve their indices (it is up
  // to the caller to provide a large enough buffer). Both returns the
  // number of selected rows.
  virtual int GetNumberOfSelectedRows();
  virtual int GetSelectedRows(int *indices);

  // Description:
  // Get index of first selected row.
  // Returns -1 on error.
  virtual int GetIndexOfFirstSelectedRow();

  // Description:
  // Select/deselect a cell, or single cell (any other selection is cleared).
  virtual void SelectCell(int row_index, int col_index);
  virtual void DeselectCell(int row_index, int col_index);
  virtual void SelectSingleCell(int row_index, int col_index);

  // Description:
  // Check if cell is selected
  virtual int IsCellSelected(int row_index, int col_index);

  // Description:
  // Get the number of selected cells, and retrieve their indices (it is up
  // to the caller to provide large enough buffers). Both returns the
  // number of selected cells.
  virtual int GetNumberOfSelectedCells();
  virtual int GetSelectedCells(int *row_indices, int *col_indices);

  // Description:
  // Clear selection
  virtual void ClearSelection();

  // Description:
  // Specifies whether or not a selection in the widget should also be the X
  // selection. If the selection is exported, then selecting in the widget
  // deselects the current X selection, selecting outside the widget deselects
  // any widget selection, and the widget will respond to selection retrieval
  // requests when it has a selection.  
  virtual void SetExportSelection(int);
  virtual int GetExportSelection();
  vtkBooleanMacro(ExportSelection, int);
  
  // Description:
  // Specifies a command to be invoked when an element is selected/deselected
  // in the widget. Re-selecting an element will trigger this command too.
  // If one want to be notified only when the selection has *changed* (the
  // number of selected/deselected items has changed), use the
  // SelectionChangedCommand command instead.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetSelectionCommand(vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when the selection has *changed*. This
  // command will *not* be invoked when an item is re-selected (i.e. it
  // was already selected when the user clicked on it again). To be notified
  // when any selection event occurs, use SelectionCommand instead.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetSelectionChangedCommand(
    vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when any change is made that
  // can potentially affect the background color of a cell (selecting
  // a cell, sorting a column, adding/removing rows, etc). 
  // This is useful if a user-defined dynamic widget created in a cell
  // (using the SetCellWindowCommand methods)
  // is setting its own background color to match the background color
  // of a cell (using GetCellCurrentBackgroundColor). In that case,
  // just set this command to RefreshColorsOfAllCellsWithWindowCommand. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetPotentialCellColorsChangedCommand(
    vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when a column has been sorted. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetColumnSortedCommand(
    vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when a row has been moved. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetRowMovedCommand(
    vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when the number of rows changed. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetNumberOfRowsChangedCommand(
    vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when the interactive editing of a cell's
  // contents is started. The command is automatically concatenated with
  // the cell's row and column indices, as well as the text displayed in
  // the cell, the resulting script is evaluated in the global scope, and
  // the return value becomes the initial contents of the temporary
  // embedded widget used for the editing.
  // The next step (validation) is handled by SetEditEndCommand (if any)
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the cell location, i.e. its row and column indices: int, int
  // - the current cell's text: const char*
  // The following output is expected from the command:
  // - the initial contents of the widget used for editing: const char*
  virtual void SetEditStartCommand(vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked on normal termination of the 
  // interactive editing of a cell's contents if the final text of the
  // temporary embedded widget used for the editing is different from its 
  // initial one. The command is automatically concatenated with the 
  // cell's row and column indices, as well as the final contents of the edit
  // window, the resulting script is evaluated in the global scope, and the
  // return value becomes the cell's new contents after destroying the
  // temporary embedded widget. The main purpose of this script is to perform
  // a final validation of the edit window's contents and eventually reject
  // the input by calling the RejectInput() method. Another purpose of this
  // command is to convert the edit window's text to the cell's new internal
  // contents, which is necessary if, due to the SetColumnFormatCommand option
  // the cell's internal value is different from its external representation. 
  // The next step (updating) is handled by SetCellUpdatedCommand (if any)
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the cell location, i.e. its row and column indices: int, int
  // - the final contents of the edit window: const char*
  // The following output is expected from the command:
  // - the cell's new contents: const char*
  virtual void SetEditEndCommand(vtkObject *object, const char *method);

  // Description:
  // If invoked from within EditEndCommand, this method prevents the
  // termination of the interactive editing of the contents of a cell.  It
  // enables you to reject the widget's text during the final validation of the
  // string intended to become the new cell contents.
  virtual void RejectInput();

  // Description:
  // Specifies a command to be invoked when a cell contents has been
  // successfully updated after editing it. The command is automatically
  // concatenated with the cell's row and column indices, as well as the
  // new contents of the cell. The main purpose of this script is to let
  // external/third-party applications/objects retrieve the new cell contents
  // and update their own internal values.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the cell location, i.e. its row and column indices: int, int
  // - the cell's new contents: const char*
  virtual void SetCellUpdatedCommand(vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when mouse button 1 is pressed over one
  // of the header labels and later released over the same label. When the
  // <ButtonRelease-1> event occurs, the command is automatically 
  // concatenated with the name of the tablelist widget and the column index
  // of the respective label, and the resulting script is evaluated in the
  // global scope. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the name of the internal tablelist widget (to be ignored): const char*
  // - the column index of the label: int
  virtual void SetLabelCommand(vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be used for the comparison of the items when
  // invoking the sort subcommand of the Tcl command associated with the
  // tablelist widget. To compare two items (viewed as lists of cell contents
  // within one row each) during the sort operation, the command is 
  // automatically concatenated with the two items and the resulting script
  // is evaluated. The script should return an integer less than, equal to, or
  // greater than zero if the first item is to be considered less than, equal
  // to, or greater than the second, respectively.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the contents of the first item/cell to compare: const char*
  // - the contents of the second item/cell to compare: const char*
  // The following output is expected from the command:
  // - the result of the comparison: int
  virtual void SetSortCommand(vtkObject *object, const char *method);

  // Description:
  // Specifies a command to be invoked when the user right-click on a cell.
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  // The following parameters are also passed to the command:
  // - the cell location, i.e. its row and column indices: int, int
  // - the pointer (x, y) absolute location the click occured at: int, int
  virtual void SetRightClickCommand(vtkObject *object, const char *method);
  
  // Description:
  // The command is invoked when the user double-clicks on any uneditable 
  // cell of the listbox. The command is not invoked on a double click on
  // an editable cell. 
  // The 'object' argument is the object that will have the method called on
  // it. The 'method' argument is the name of the method to be called and any
  // arguments in string form. If the object is NULL, the method is still
  // evaluated as a simple command. 
  virtual void SetUneditableCellDoubleClickCommand(
    vtkObject *object, const char *method);

  // Description:
  // Update the "enable" state of the object and its internal parts.
  // Depending on different Ivars (this->Enabled, the application's 
  // Limited Edition Mode, etc.), the "enable" state of the object is updated
  // and propagated to its internal parts/subwidgets. This will, for example,
  // enable/disable parts of the widget UI, enable/disable the visibility
  // of 3D widgets, etc.
  virtual void UpdateEnableState();
 
  // Description:
  // Events. The SelectionChangedEvent is triggered when the selection is 
  // changed (see SetSelectionCommand for more details).
  // The CellUpdatedEvent is triggered whenever a cell is updated, i.e. 
  // when InvokeCellUpdatedCommand is called. The following parameters are 
  // also passed as client data for CellUpdatedEvent:
  // - the cell location, i.e. its row and column indices: int, int
  // - the cell's new contents: const char*
  // Note that given the heterogeneous nature of types passed as client data,
  // you should treat it as an array of void*[3], each one a pointer to
  // the parameter (i.e., &int, &int, &const char*).
  //BTX
  enum
  {
    SelectionChangedEvent = 10000,
    NumberOfRowsChangedEvent,
    CellUpdatedEvent
  };
  //ETX

  // Description:
  // Callbacks. Internal, do not use.
  virtual void SelectionCallback();
  virtual void CellWindowDestroyRemoveChildCallback(
    const char*, int, int, const char*);
  virtual void CellUpdatedCallback();
  virtual void UneditableCellDoubleClickCallback();
  virtual const char* EditStartCallback(
    const char *widget, int row, int col, const char *text);
  virtual const char* EditEndCallback(
    const char *widget, int row, int col, const char *text);
  virtual void CellWindowCommandToCheckButtonCreateCallback(
    const char*, int, int, const char*);
  virtual void CellWindowCommandToCheckButtonSelectCallback(
    vtkKWWidget*, int, int, int);
  virtual void CellWindowCommandToComboBoxCreateCallback(
    const char *values, const char*, int, int, const char*);
  virtual void CellWindowCommandToComboBoxValueCallback(
    vtkKWWidget*, int, int, const char *);
  virtual void CellWindowCommandToColorButtonCallback(
    const char*, int, int, const char*);
  virtual void CellWindowCommandToPickDirectoryButtonCallback(
    const char*, int, int, const char*);
  virtual void CellWindowCommandToPickDirectoryButtonChangeCallback(
    vtkKWWidget*, int, int);
  virtual const char* ColumnFormatCommandToEmptyOutputIfWindowCommandCallback(
    vtkKWWidget*, const char *);
  virtual void ColumnSortedCallback();
  virtual void ColumnMovedCallback();
  virtual void RowMovedCallback();
  virtual void RightClickCallback(
    const char *w, int x, int y, int root_x, int root_y);
  virtual void RefreshColorsOfAllCellsWithWindowCommandCallback();
  virtual void RefreshAllCellsWithWindowCommandCallback();
  virtual void RefreshEnabledStateOfAllCellsWithWindowCommandCallback();
  virtual void RefreshAllRowsWithWindowCommandCallback(int col);
  virtual void KeyPressDeleteCallback();
  
protected:
  vtkKWMultiColumnList();
  ~vtkKWMultiColumnList();

  // Description:
  // Create the widget.
  virtual void CreateWidget();

  char *KeyPressDeleteCommand;
  void InvokeKeyPressDeleteCommand();
  
  char *EditStartCommand;
  const char* InvokeEditStartCommand(int row, int col, const char *text);

  char *EditEndCommand;
  const char* InvokeEditEndCommand(int row, int col, const char *text);

  char *CellUpdatedCommand;
  void InvokeCellUpdatedCommand(int row, int col, const char *text);

  char *SelectionCommand;
  virtual void InvokeSelectionCommand();

  char *SelectionChangedCommand;
  virtual void InvokeSelectionChangedCommand();

  char *PotentialCellColorsChangedCommand;
  virtual void InvokePotentialCellColorsChangedCommand();

  char *ColumnSortedCommand;
  void InvokeColumnSortedCommand();

  char *RowMovedCommand;
  void InvokeRowMovedCommand();

  char *NumberOfRowsChangedCommand;
  void InvokeNumberOfRowsChangedCommand();

  char *RightClickCommand;
  void InvokeRightClickCommand(int row, int col, int x, int y);

  char *UneditableCellDoubleClickCommand;
  virtual void InvokeUneditableCellDoubleClickCommand();

  // Description:
  // Called when the number of rows/columns changed
  virtual void NumberOfRowsChanged();
  virtual void NumberOfColumnsChanged();

  // Description:
  // Set/Get a column configuration option (ex: "-bg") 
  virtual int SetColumnConfigurationOption(
    int col_index, const char* option, const char *value);
  virtual int HasColumnConfigurationOption(
    int col_index, const char* option);
  virtual const char* GetColumnConfigurationOption(
    int col_index, const char* option);
  virtual int GetColumnConfigurationOptionAsInt(
    int col_index, const char* option);
  virtual int SetColumnConfigurationOptionAsInt(
    int col_index, const char* option, int value);
  virtual void SetColumnConfigurationOptionAsText(
    int col_index, const char *option, const char *value);
  virtual const char* GetColumnConfigurationOptionAsText(
    int col_index, const char *option);

  // Description:
  // Set/Get a row configuration option (ex: "-bg") 
  virtual int SetRowConfigurationOption(
    int row_index, const char* option, const char *value);
  virtual int HasRowConfigurationOption(
    int row_index, const char* option);
  virtual const char* GetRowConfigurationOption(
    int row_index, const char* option);
  virtual int GetRowConfigurationOptionAsInt(
    int row_index, const char* option);
  virtual int SetRowConfigurationOptionAsInt(
    int row_index, const char* option, int value);

  // Description:
  // Set/Get a cell configuration option (ex: "-bg") 
  virtual int SetCellConfigurationOption(
    int row_index, int col_index, const char* option, const char *value);
  virtual int HasCellConfigurationOption(
    int row_index, int col_index, const char* option);
  virtual const char* GetCellConfigurationOption(
    int row_index, int col_index, const char* option);
  virtual int GetCellConfigurationOptionAsInt(
    int row_index, int col_index, const char* option);
  virtual int SetCellConfigurationOptionAsInt(
    int row_index, int col_index, const char* option, int value);
  virtual double GetCellConfigurationOptionAsDouble(
    int row_index, int col_index, const char* option);
  virtual int SetCellConfigurationOptionAsDouble(
    int row_index, int col_index, const char* option, double value);
  virtual int SetCellConfigurationOptionAsFormattedDouble(
    int row_index, int col_index, const char* option, double value, int size);
  virtual int SetCellConfigurationOptionAsText(
    int row_index, int col_index, const char *option, const char *value);
  virtual const char* GetCellConfigurationOptionAsText(
    int row_index, int col_index, const char *option);
  virtual void ReportErrorOnSetCellConfigurationOption(
    int row_index, int col_index, const char* option, const char *res);

  // PIMPL Encapsulation for STL containers
  //BTX
  vtkKWMultiColumnListInternals *Internals;
  //ETX

  // Description:
  // Check if the selection has changed and invoke the corresponding command
  virtual void HasSelectionChanged();

  // Description:
  // Find cell at relative coordinate x, y
  virtual int FindCellAtRelativeCoordinates(
    int x, int y, int *row_index, int *col_index);

  // Description:
  // Color of the sorted column.
  int ColorSortedColumn;
  double SortedColumnBackgroundColor[3];
  virtual void UpdateSortedColumnBackgroundColor();

  // Description:
  // Remove all the window destroy commands.
  virtual void RemoveAllWindowDestroyCommandFromCells();

  // Description:
  // Add/Remove some interaction bindings
  virtual void AddInteractionBindings();
  virtual void RemoveInteractionBindings();

  // Description:
  // Manage the column name to index cache
  virtual void SetColumnNameToIndexCacheEntry(
    const char *col_name, int col_index);
  virtual int GetColumnNameToIndexCacheEntry(const char *col_name);
  virtual void DeleteColumnNameToIndexCacheEntry(const char *col_name);
  virtual void InvalidateColumnNameToIndexCache();

  // Description:
  // Manage the column name to visibility cache
  virtual void SetColumnIndexToVisibilityCacheEntry(
    int col_index, int vis);
  virtual int GetColumnIndexToVisibilityCacheEntry(int col_index);
  virtual void InvalidateColumnIndexToVisibilityCache();

  int UseBalloonHelpStringInCellColorButton;

private:
  vtkKWMultiColumnList(const vtkKWMultiColumnList&); // Not implemented
  void operator=(const vtkKWMultiColumnList&); // Not implemented
};

#endif