There are some value addons that have been done ontop, that is
Definition at line 29 of file mytable.tcl.
Public Member Functions | |
activate (TclList args) | |
childsite () | |
clear (TclList args) | |
cols (TclNumber value=10) | |
curselection (TclList args) | |
delete (TclList args) | |
erase (CellSpec fromCell, CellSpec toCell) | |
getCell (TclList args) | |
hscrollmode (TclRef value=static) | |
hset (TclList args) | |
icursor (TclList args) | |
index (TclList args) | |
insert (TclList args) | |
MyTable (TclList args) | |
outerborderwidth (TclNumber value=2) | |
outerrelief (TclRef value=sunk) | |
print () | |
rows (TclNumber value=20) | |
see (TclList args) | |
selbackground (TclRef value=gray50) | |
selection (TclList args) | |
selforeground (TclRef value=yellow) | |
setCell (TclList args) | |
sortRows (TclNumber index, TclList args) | |
spans (TclList args) | |
state (TclRef value=disabled) | |
tag (TclList args) | |
troughcolor (TclRef value=gray) | |
vscrollmode (TclRef value=static) | |
vset (TclList args) | |
width (TclList args) | |
xview (TclList args) | |
yview (TclList args) | |
Private Member Functions | |
colorize (TclNumber num) | |
resize () | |
Private Attributes | |
TclRef | _myArray |
|
constructor Definition at line 83 of file mytable.tcl. |
|
delegate the activate command to the table Definition at line 343 of file mytable.tcl. |
|
retrieve the table component.
|
|
clear Definition at line 260 of file mytable.tcl. |
|
rowtag callback of the table. This method is called whenever the tktable component needs a tag for a table row. Definition at line 210 of file mytable.tcl. |
|
option -cols. configure the number of cols of the table Definition at line 486 of file mytable.tcl. |
|
delegate the curselection command to the table Definition at line 364 of file mytable.tcl. |
|
delegate the delete command to the table Definition at line 329 of file mytable.tcl. |
|
erase table cells. This method clears the content between two cell specifications by directly manipulating the _myArray. A cell specification has the format "row,col", where row and col are integers.
|
|
get a value of a table-cell Definition at line 336 of file mytable.tcl. |
|
option -hscrollmode. Enable/disable display and mode of horizontal scrollbar. Definition at line 442 of file mytable.tcl. References error(). |
|
delegate the set command to the horizontal scrollbar. Definition at line 181 of file mytable.tcl. |
|
delegate the icursor command to the table Definition at line 350 of file mytable.tcl. |
|
delegate the index command to the table Definition at line 315 of file mytable.tcl. |
|
delegate the insert command to the table Definition at line 322 of file mytable.tcl. |
|
print the stored data. This simply calls parray on the _myArray variable. Definition at line 222 of file mytable.tcl. |
|
propagate table resizing to the scrollbars. Definition at line 188 of file mytable.tcl. |
|
option -rows. configure the number of rows of the table Definition at line 477 of file mytable.tcl. |
|
option -selbackground. set the color of the selected row Definition at line 468 of file mytable.tcl. |
|
delegate the selection command to the table. Definition at line 289 of file mytable.tcl. |
|
option -selforeground. set the color of the selected row Definition at line 459 of file mytable.tcl. |
|
delegate the set command to the table Definition at line 296 of file mytable.tcl. |
|
sort the table rows in the given column. This method sorts the table along the column given by the parameter index. The sorting itself is the done by a
|
|
delegate the spans command to the table Definition at line 357 of file mytable.tcl. |
|
delegate the tag command to the table Definition at line 275 of file mytable.tcl. |
|
option -troughcolor. set the troughcolor of the scollbars Definition at line 416 of file mytable.tcl. |
|
option -vscrollmode. Enable/disable display and mode of vertical scrollbar. Definition at line 425 of file mytable.tcl. References error(). |
|
delegate the set command to the vertical scrollbar. Definition at line 174 of file mytable.tcl. |
|
delegate the width command to the table Definition at line 308 of file mytable.tcl. |
|
xview. Definition at line 159 of file mytable.tcl. |
|
yview Definition at line 166 of file mytable.tcl. |
|
storage for the table content. Definition at line 77 of file mytable.tcl. |