Tk Library Source Code

Check-in [d5678570dd]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Tablelist: Updated for version 7.7. See the ChangeLog for details.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d5678570dd92edf2ee6f022303512107ae8777db660c30e0daeb589c2ed86251
User & Date: csaba 2025-07-01 10:45:36.697
Context
2025-07-01
11:15
Tsw: Updated for version 1.2. See the ChangeLog for details. check-in: be1246b673 user: csaba tags: trunk
10:45
Tablelist: Updated for version 7.7. See the ChangeLog for details. check-in: d5678570dd user: csaba tags: trunk
2025-06-10
15:14
Released Tsw 1.1. check-in: e7849a1a71 user: csaba tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to examples/tablelist/dirViewer.tcl.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env tclsh

#==============================================================================
# Demonstrates how to use a tablelist widget for displaying the content of a
# directory.  Uses images based on the following icons:
#
#   https://icons8.com/icon/JXYalxb9XWWd/folder
#   https://icons8.com/icon/RdCT0UIsKOIp/opened-folder
#   https://icons8.com/icon/mEF_vyjYlnE3/file
#
# Copyright (c) 2010-2024  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require Tk
package require tablelist

#
# Add some entries to the Tk option database










|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env tclsh

#==============================================================================
# Demonstrates how to use a tablelist widget for displaying the content of a
# directory.  Uses images based on the following icons:
#
#   https://icons8.com/icon/JXYalxb9XWWd/folder
#   https://icons8.com/icon/RdCT0UIsKOIp/opened-folder
#   https://icons8.com/icon/mEF_vyjYlnE3/file
#
# Copyright (c) 2010-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require Tk
package require tablelist

#
# Add some entries to the Tk option database
28
29
30
31
32
33
34













35
36
37
38
39
40
41
} else {
    set pct $tablelist::scalingpct; set sfx "gif"; set fmt "gif"
}
foreach name {clsdFolder openFolder file} {
    set imgFile $name$pct.$sfx		;# e.g., "file.svg" or "file150.gif"
    image create photo ${name}Img -file [file join $dir $imgFile] -format $fmt
}














#------------------------------------------------------------------------------
# displayContents
#
# Displays the content of the directory dir in a tablelist widget.
#------------------------------------------------------------------------------
proc displayContents dir {







>
>
>
>
>
>
>
>
>
>
>
>
>







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
} else {
    set pct $tablelist::scalingpct; set sfx "gif"; set fmt "gif"
}
foreach name {clsdFolder openFolder file} {
    set imgFile $name$pct.$sfx		;# e.g., "file.svg" or "file150.gif"
    image create photo ${name}Img -file [file join $dir $imgFile] -format $fmt
}

#
# Helper procedures needed to work around the fact that
# on Android the directory "/" is normally not readable
#
set onAndroid [expr {[info exists ::tk::android] && $::tk::android}]
proc isReadable name {
    return [expr {$::onAndroid && $name eq "/" ? 1 : [file readable $name]}]
}
proc dirContent dir {
    return [expr {$::onAndroid && $dir eq "/" ? [list /sdcard] :
	    [glob -nocomplain -types {d f} -directory $dir *]}]
}

#------------------------------------------------------------------------------
# displayContents
#
# Displays the content of the directory dir in a tablelist widget.
#------------------------------------------------------------------------------
proc displayContents dir {
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
    # to the display's DPI scaling level
    #
    if {[tk windowingsystem] eq "x11"} {
	global pct					;# ""|100|125|...|200
	$tbl configure -treestyle bicolor$pct
    }

    bind $tbl <<TablelistYViewChanged>> [list addImages $tbl]

    #
    # Create a pop-up menu with one command entry; bind the script
    # associated with its entry to the <Double-1> event, too
    #
    set menu .menu
    menu $menu -tearoff no
    $menu add command -label "Display Contents" \
		      -command [list putContentsOfSelFolder $tbl]
    set bodyTag [$tbl bodytag]
    bind $bodyTag <<Button3>>  [bind TablelistBody <Button-1>]
    bind $bodyTag <<Button3>> +[bind TablelistBody <ButtonRelease-1>]
    bind $bodyTag <<Button3>> +[list postPopupMenu %X %Y]
    bind $bodyTag <Double-1>   [list putContentsOfSelFolder $tbl]

    #
    # Create three buttons within a frame child of the main widget
    #
    set bf .bf
    frame $bf
    set b1 $bf.b1







|













|







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
    # to the display's DPI scaling level
    #
    if {[tk windowingsystem] eq "x11"} {
	global pct					;# ""|100|125|...|200
	$tbl configure -treestyle bicolor$pct
    }

    bind $tbl <<TablelistYViewChanged>> { addImages %W }

    #
    # Create a pop-up menu with one command entry; bind the script
    # associated with its entry to the <Double-1> event, too
    #
    set menu .menu
    menu $menu -tearoff no
    $menu add command -label "Display Contents" \
		      -command [list putContentsOfSelFolder $tbl]
    set bodyTag [$tbl bodytag]
    bind $bodyTag <<Button3>>  [bind TablelistBody <Button-1>]
    bind $bodyTag <<Button3>> +[bind TablelistBody <ButtonRelease-1>]
    bind $bodyTag <<Button3>> +[list postPopupMenu %X %Y]
    bind $bodyTag <Double-1>   [list putContentsOfSelFolder %W]

    #
    # Create three buttons within a frame child of the main widget
    #
    set bf .bf
    frame $bf
    set b1 $bf.b1
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# child items of the one identified by nodeIdx.
#------------------------------------------------------------------------------
proc putContents {dir tbl nodeIdx} {
    #
    # The following check is necessary because this procedure
    # is also invoked by the "Refresh" and "Parent" buttons
    #
    if {$dir ne "" && (![file isdirectory $dir] || ![file readable $dir])} {
	bell
	if {$nodeIdx eq "root"} {
	    set choice [tk_messageBox -title "Error" -icon warning -message \
			"Cannot read directory \"[file nativename $dir]\"\
			-- replacing it with nearest existent ancestor" \
			-type okcancel -default ok]
	    if {$choice eq "ok"} {
		while {![file isdirectory $dir] || ![file readable $dir]} {
		    set dir [file dirname $dir]
		}
	    } else {
		return ""
	    }
	} else {
	    return ""







|







|







145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# child items of the one identified by nodeIdx.
#------------------------------------------------------------------------------
proc putContents {dir tbl nodeIdx} {
    #
    # The following check is necessary because this procedure
    # is also invoked by the "Refresh" and "Parent" buttons
    #
    if {$dir ne "" && (![file isdirectory $dir] || ![isReadable $dir])} {
	bell
	if {$nodeIdx eq "root"} {
	    set choice [tk_messageBox -title "Error" -icon warning -message \
			"Cannot read directory \"[file nativename $dir]\"\
			-- replacing it with nearest existent ancestor" \
			-type okcancel -default ok]
	    if {$choice eq "ok"} {
		while {![file isdirectory $dir] || ![isReadable $dir]} {
		    set dir [file dirname $dir]
		}
	    } else {
		return ""
	    }
	} else {
	    return ""
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
    #
    set itemList {}
    if {$dir eq ""} {
	foreach volume [file volumes] {
	    lappend itemList [list D[file nativename $volume] -1 D $volume]
	}
    } else {
	foreach entry [glob -nocomplain -types {d f} -directory $dir *] {
	    if {[catch {file mtime $entry} modTime] != 0} {
		continue
	    }

	    if {[file isdirectory $entry]} {
		lappend itemList [list D[file tail $entry] -1 \
		    D[clock format $modTime -format "%Y-%m-%d %H:%M"] $entry]







|







193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
    #
    set itemList {}
    if {$dir eq ""} {
	foreach volume [file volumes] {
	    lappend itemList [list D[file nativename $volume] -1 D $volume]
	}
    } else {
	foreach entry [dirContent $dir] {
	    if {[catch {file mtime $entry} modTime] != 0} {
		continue
	    }

	    if {[file isdirectory $entry]} {
		lappend itemList [list D[file tail $entry] -1 \
		    D[clock format $modTime -format "%Y-%m-%d %H:%M"] $entry]
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224


225
226
227
228
229
230
231
	set name [lindex $item end]
	if {$name ne ""} {					;# directory
	    $tbl rowattrib $row pathName $name

	    #
	    # Mark the row as collapsed if the directory is non-empty
	    #
	    if {[file readable $name] && [llength \
		[glob -nocomplain -types {d f} -directory $name *]] != 0} {
		$tbl collapse $row
	    }
	}

	incr row
    }



    if {$nodeIdx eq "root"} {
	#
	# Configure the "Refresh" and "Parent" buttons
	#
	.bf.b1 configure -command [list refreshView $dir $tbl]
	set b2 .bf.b2







|
<






>
>







223
224
225
226
227
228
229
230

231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
	set name [lindex $item end]
	if {$name ne ""} {					;# directory
	    $tbl rowattrib $row pathName $name

	    #
	    # Mark the row as collapsed if the directory is non-empty
	    #
	    if {[isReadable $name] && [llength [dirContent $name]] != 0} {

		$tbl collapse $row
	    }
	}

	incr row
    }

    addImages $tbl

    if {$nodeIdx eq "root"} {
	#
	# Configure the "Refresh" and "Parent" buttons
	#
	.bf.b1 configure -command [list refreshView $dir $tbl]
	set b2 .bf.b2
305
306
307
308
309
310
311
312

313
314






315
316
317
318
319
320
321
322
323
324
325
326
327
	$tbl cellconfigure $row,0 -image $img
    }
}

#------------------------------------------------------------------------------
# putContentsOfSelFolder
#
# Outputs the content of the selected folder into the tablelist widget tbl.

#------------------------------------------------------------------------------
proc putContentsOfSelFolder tbl {






    set row [$tbl curselection]
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [file readable $dir]} {
	    if {[llength [glob -nocomplain -types {d f} -directory $dir *]]
		== 0} {
		bell
	    } else {
		putContents $dir $tbl root
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \







|
>

|
>
>
>
>
>
>



|
<
|







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
	$tbl cellconfigure $row,0 -image $img
    }
}

#------------------------------------------------------------------------------
# putContentsOfSelFolder
#
# Outputs the content of the selected folder into the tablelist given by or
# containing the specified widget.
#------------------------------------------------------------------------------
proc putContentsOfSelFolder w {
    if {[winfo class $w] eq "Tablelist"} {
	set tbl $w
    } else {
	set tbl [tablelist::getTablelistPath $w]
    }

    set row [$tbl curselection]
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [isReadable $dir]} {

	    if {[llength [dirContent $dir]] == 0} {
		bell
	    } else {
		putContents $dir $tbl root
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#------------------------------------------------------------------------------
proc postPopupMenu {rootX rootY} {
    set tbl .tf.tbl
    set row [$tbl curselection]
    set menu .menu
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [file readable $dir]} {
	    if {[llength [glob -nocomplain -types {d f} -directory $dir *]]
		== 0} {
		$menu entryconfigure 0 -state disabled
	    } else {
		$menu entryconfigure 0 -state normal
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \







|
<
|







362
363
364
365
366
367
368
369

370
371
372
373
374
375
376
377
#------------------------------------------------------------------------------
proc postPopupMenu {rootX rootY} {
    set tbl .tf.tbl
    set row [$tbl curselection]
    set menu .menu
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [isReadable $dir]} {

	    if {[llength [dirContent $dir]] == 0} {
		$menu entryconfigure 0 -state disabled
	    } else {
		$menu entryconfigure 0 -state normal
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \
Changes to examples/tablelist/dirViewer_tile.tcl.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env tclsh

#==============================================================================
# Demonstrates how to use a tablelist widget for displaying the content of a
# directory.  Uses images based on the following icons:
#
#   https://icons8.com/icon/JXYalxb9XWWd/folder
#   https://icons8.com/icon/RdCT0UIsKOIp/opened-folder
#   https://icons8.com/icon/mEF_vyjYlnE3/file
#
# Copyright (c) 2010-2024  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require Tk
package require tablelist_tile

#
# Add some entries to the Tk option database










|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env tclsh

#==============================================================================
# Demonstrates how to use a tablelist widget for displaying the content of a
# directory.  Uses images based on the following icons:
#
#   https://icons8.com/icon/JXYalxb9XWWd/folder
#   https://icons8.com/icon/RdCT0UIsKOIp/opened-folder
#   https://icons8.com/icon/mEF_vyjYlnE3/file
#
# Copyright (c) 2010-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require Tk
package require tablelist_tile

#
# Add some entries to the Tk option database
28
29
30
31
32
33
34













35
36
37
38
39
40
41
} else {
    set pct $tablelist::scalingpct; set sfx "gif"; set fmt "gif"
}
foreach name {clsdFolder openFolder file} {
    set imgFile $name$pct.$sfx		;# e.g., "file.svg" or "file150.gif"
    image create photo ${name}Img -file [file join $dir $imgFile] -format $fmt
}














#------------------------------------------------------------------------------
# displayContents
#
# Displays the content of the directory dir in a tablelist widget.
#------------------------------------------------------------------------------
proc displayContents dir {







>
>
>
>
>
>
>
>
>
>
>
>
>







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
} else {
    set pct $tablelist::scalingpct; set sfx "gif"; set fmt "gif"
}
foreach name {clsdFolder openFolder file} {
    set imgFile $name$pct.$sfx		;# e.g., "file.svg" or "file150.gif"
    image create photo ${name}Img -file [file join $dir $imgFile] -format $fmt
}

#
# Helper procedures needed to work around the fact that
# on Android the directory "/" is normally not readable
#
set onAndroid [expr {[info exists ::tk::android] && $::tk::android}]
proc isReadable name {
    return [expr {$::onAndroid && $name eq "/" ? 1 : [file readable $name]}]
}
proc dirContent dir {
    return [expr {$::onAndroid && $dir eq "/" ? [list /sdcard] :
	    [glob -nocomplain -types {d f} -directory $dir *]}]
}

#------------------------------------------------------------------------------
# displayContents
#
# Displays the content of the directory dir in a tablelist widget.
#------------------------------------------------------------------------------
proc displayContents dir {
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
	    $currentTheme eq "sun-valley-dark"} {
	    $tbl configure -treestyle white$pct
	} else {
	    $tbl configure -treestyle bicolor$pct
	}
    }

    bind $tbl <<TablelistYViewChanged>> [list addImages $tbl]

    #
    # Create a pop-up menu with one command entry; bind the script
    # associated with its entry to the <Double-1> event, too
    #
    set menu .menu
    menu $menu -tearoff no
    $menu add command -label "Display Contents" \
		      -command [list putContentsOfSelFolder $tbl]
    if {$isAwTheme} {
	global currentTheme
	ttk::theme::${currentTheme}::setMenuColors $menu
    }
    set bodyTag [$tbl bodytag]
    bind $bodyTag <<Button3>>  [bind TablelistBody <Button-1>]
    bind $bodyTag <<Button3>> +[bind TablelistBody <ButtonRelease-1>]
    bind $bodyTag <<Button3>> +[list postPopupMenu %X %Y]
    bind $bodyTag <Double-1>   [list putContentsOfSelFolder $tbl]

    #
    # Create three buttons within a frame child of the main widget
    #
    set bf .bf
    ttk::frame $bf
    set b1 $bf.b1







|

















|







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
	    $currentTheme eq "sun-valley-dark"} {
	    $tbl configure -treestyle white$pct
	} else {
	    $tbl configure -treestyle bicolor$pct
	}
    }

    bind $tbl <<TablelistYViewChanged>> { addImages %W }

    #
    # Create a pop-up menu with one command entry; bind the script
    # associated with its entry to the <Double-1> event, too
    #
    set menu .menu
    menu $menu -tearoff no
    $menu add command -label "Display Contents" \
		      -command [list putContentsOfSelFolder $tbl]
    if {$isAwTheme} {
	global currentTheme
	ttk::theme::${currentTheme}::setMenuColors $menu
    }
    set bodyTag [$tbl bodytag]
    bind $bodyTag <<Button3>>  [bind TablelistBody <Button-1>]
    bind $bodyTag <<Button3>> +[bind TablelistBody <ButtonRelease-1>]
    bind $bodyTag <<Button3>> +[list postPopupMenu %X %Y]
    bind $bodyTag <Double-1>   [list putContentsOfSelFolder %W]

    #
    # Create three buttons within a frame child of the main widget
    #
    set bf .bf
    ttk::frame $bf
    set b1 $bf.b1
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# child items of the one identified by nodeIdx.
#------------------------------------------------------------------------------
proc putContents {dir tbl nodeIdx} {
    #
    # The following check is necessary because this procedure
    # is also invoked by the "Refresh" and "Parent" buttons
    #
    if {$dir ne "" && (![file isdirectory $dir] || ![file readable $dir])} {
	bell
	if {$nodeIdx eq "root"} {
	    set choice [tk_messageBox -title "Error" -icon warning -message \
			"Cannot read directory \"[file nativename $dir]\"\
			-- replacing it with nearest existent ancestor" \
			-type okcancel -default ok]
	    if {$choice eq "ok"} {
		while {![file isdirectory $dir] || ![file readable $dir]} {
		    set dir [file dirname $dir]
		}
	    } else {
		return ""
	    }
	} else {
	    return ""







|







|







155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# child items of the one identified by nodeIdx.
#------------------------------------------------------------------------------
proc putContents {dir tbl nodeIdx} {
    #
    # The following check is necessary because this procedure
    # is also invoked by the "Refresh" and "Parent" buttons
    #
    if {$dir ne "" && (![file isdirectory $dir] || ![isReadable $dir])} {
	bell
	if {$nodeIdx eq "root"} {
	    set choice [tk_messageBox -title "Error" -icon warning -message \
			"Cannot read directory \"[file nativename $dir]\"\
			-- replacing it with nearest existent ancestor" \
			-type okcancel -default ok]
	    if {$choice eq "ok"} {
		while {![file isdirectory $dir] || ![isReadable $dir]} {
		    set dir [file dirname $dir]
		}
	    } else {
		return ""
	    }
	} else {
	    return ""
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
    #
    set itemList {}
    if {$dir eq ""} {
	foreach volume [file volumes] {
	    lappend itemList [list D[file nativename $volume] -1 D $volume]
	}
    } else {
	foreach entry [glob -nocomplain -types {d f} -directory $dir *] {
	    if {[catch {file mtime $entry} modTime] != 0} {
		continue
	    }

	    if {[file isdirectory $entry]} {
		lappend itemList [list D[file tail $entry] -1 \
		    D[clock format $modTime -format "%Y-%m-%d %H:%M"] $entry]







|







203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
    #
    set itemList {}
    if {$dir eq ""} {
	foreach volume [file volumes] {
	    lappend itemList [list D[file nativename $volume] -1 D $volume]
	}
    } else {
	foreach entry [dirContent $dir] {
	    if {[catch {file mtime $entry} modTime] != 0} {
		continue
	    }

	    if {[file isdirectory $entry]} {
		lappend itemList [list D[file tail $entry] -1 \
		    D[clock format $modTime -format "%Y-%m-%d %H:%M"] $entry]
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234


235
236
237
238
239
240
241
	set name [lindex $item end]
	if {$name ne ""} {					;# directory
	    $tbl rowattrib $row pathName $name

	    #
	    # Mark the row as collapsed if the directory is non-empty
	    #
	    if {[file readable $name] && [llength \
		[glob -nocomplain -types {d f} -directory $name *]] != 0} {
		$tbl collapse $row
	    }
	}

	incr row
    }



    if {$nodeIdx eq "root"} {
	#
	# Configure the "Refresh" and "Parent" buttons
	#
	.bf.b1 configure -command [list refreshView $dir $tbl]
	set b2 .bf.b2







|
<






>
>







233
234
235
236
237
238
239
240

241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
	set name [lindex $item end]
	if {$name ne ""} {					;# directory
	    $tbl rowattrib $row pathName $name

	    #
	    # Mark the row as collapsed if the directory is non-empty
	    #
	    if {[isReadable $name] && [llength [dirContent $name]] != 0} {

		$tbl collapse $row
	    }
	}

	incr row
    }

    addImages $tbl

    if {$nodeIdx eq "root"} {
	#
	# Configure the "Refresh" and "Parent" buttons
	#
	.bf.b1 configure -command [list refreshView $dir $tbl]
	set b2 .bf.b2
315
316
317
318
319
320
321
322

323
324






325
326
327
328
329
330
331
332
333
334
335
336
337
	$tbl cellconfigure $row,0 -image $img
    }
}

#------------------------------------------------------------------------------
# putContentsOfSelFolder
#
# Outputs the content of the selected folder into the tablelist widget tbl.

#------------------------------------------------------------------------------
proc putContentsOfSelFolder tbl {






    set row [$tbl curselection]
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [file readable $dir]} {
	    if {[llength [glob -nocomplain -types {d f} -directory $dir *]]
		== 0} {
		bell
	    } else {
		putContents $dir $tbl root
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \







|
>

|
>
>
>
>
>
>



|
<
|







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
	$tbl cellconfigure $row,0 -image $img
    }
}

#------------------------------------------------------------------------------
# putContentsOfSelFolder
#
# Outputs the content of the selected folder into the tablelist given by or
# containing the specified widget.
#------------------------------------------------------------------------------
proc putContentsOfSelFolder w {
    if {[winfo class $w] eq "Tablelist"} {
	set tbl $w
    } else {
	set tbl [tablelist::getTablelistPath $w]
    }

    set row [$tbl curselection]
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [isReadable $dir]} {

	    if {[llength [dirContent $dir]] == 0} {
		bell
	    } else {
		putContents $dir $tbl root
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#------------------------------------------------------------------------------
proc postPopupMenu {rootX rootY} {
    set tbl .tf.tbl
    set row [$tbl curselection]
    set menu .menu
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [file readable $dir]} {
	    if {[llength [glob -nocomplain -types {d f} -directory $dir *]]
		== 0} {
		$menu entryconfigure 0 -state disabled
	    } else {
		$menu entryconfigure 0 -state normal
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \







|
<
|







372
373
374
375
376
377
378
379

380
381
382
383
384
385
386
387
#------------------------------------------------------------------------------
proc postPopupMenu {rootX rootY} {
    set tbl .tf.tbl
    set row [$tbl curselection]
    set menu .menu
    if {[$tbl hasrowattrib $row pathName]} {		;# directory item
	set dir [$tbl rowattrib $row pathName]
	if {[file isdirectory $dir] && [isReadable $dir]} {

	    if {[llength [dirContent $dir]] == 0} {
		$menu entryconfigure 0 -state disabled
	    } else {
		$menu entryconfigure 0 -state normal
	    }
	} else {
	    bell
	    tk_messageBox -title "Error" -icon error -message \
Changes to modules/tablelist/CHANGES.txt.
1
2
















3
4
5
6
7
8
9
What is new in Tablelist 7.6?
-----------------------------

















1. Added the "-button2window" configuration option, which makes it
   possible to redirect the mouse button 2 events of the tablelist's
   body to the containing toplevel window, and is used by the
   implementation of scanning support for scrollutil::scrollableframe
   widgets.

|

>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
What is new in Tablelist 7.7?
-----------------------------

1. Added explicit support for the "droid" theme, which is the default in
   AndroWish.

2. Improvements related to the themes provided by the awthemes package
   and the ones that are not explicitly supported by Tablelist.

3. Improved the interactive cell editing with the aid of the
   toggleswitch widget.

4. The demo scripts "dirViewer.tcl" and "dirViewer_tile.tcl" now work
   around the fact that on Android the directory "/" is normally not
   readable.

What was new in Tablelist 7.6?
------------------------------

1. Added the "-button2window" configuration option, which makes it
   possible to redirect the mouse button 2 events of the tablelist's
   body to the containing toplevel window, and is used by the
   implementation of scanning support for scrollutil::scrollableframe
   widgets.

Changes to modules/tablelist/COPYRIGHT.txt.
1
2
3
4
5
6
7
8
Multi-column listbox and tree widget package Tablelist, version 7.6
Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])

This library is free software; you can use, modify, and redistribute it
for any purpose, provided that existing copyright notices are retained
in all copies and that this notice is included verbatim in any
distributions.

|







1
2
3
4
5
6
7
8
Multi-column listbox and tree widget package Tablelist, version 7.7
Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])

This library is free software; you can use, modify, and redistribute it
for any purpose, provided that existing copyright notices are retained
in all copies and that this notice is included verbatim in any
distributions.

Changes to modules/tablelist/ChangeLog.






















1
2
3
4
5
6
7






















2025-06-10 Csaba Nemethi <[email protected]>

	* Released Tablelist 7.6.

2025-05-16 Csaba Nemethi <[email protected]>

	* *.tcl:         Bumped the version number to 7.6.
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
2025-07-01 Csaba Nemethi <[email protected]>

	* *.tcl:         Bumped the version number to 7.7.
	* COPYRIGHT.txt:
	* README.txt:

	* CHANGES.txt: Updated to reflect the changes.
	* doc/*.html:

	* scripts/tablelistEdit.tcl: Improved the interactive cell editing with
	  the aid of the toggleswitch widget.

	* scripts/tablelistThemes.tcl: Added explicit support for the "droid"
	* scripts/tablelistUtil.tcl:   theme; improvements related to the
	  themes provided by the awthemes package and the ones that are not
	  explicitly supported by Tablelist.

	* scripts/tclIndex: Newly generated.

	* ../../examples/tablelist/dirViewer*.tcl: Now work around the fact
	  that on Android the directory "/" is normally not readable.

2025-06-10 Csaba Nemethi <[email protected]>

	* Released Tablelist 7.6.

2025-05-16 Csaba Nemethi <[email protected]>

	* *.tcl:         Bumped the version number to 7.6.
Changes to modules/tablelist/README.txt.
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

    https://www.nemethi.de

How to Get It?
--------------

Tablelist is available for free download from the same URL as Wcb.  The
distribution file is "tablelist7.6.tar.gz" for UNIX and
"tablelist7_6.zip" for Windows.  These files contain the same
information, except for the additional carriage return character
preceding the linefeed at the end of each line in the text files for
Windows.

Tablelist is also included in tklib, which has the address

    https://core.tcl.tk/tklib

How to Install It?
------------------

Install the package as a subdirectory of one of the directories given
by the "auto_path" variable.  For example, you can install it as a
subdirectory of the "lib" directory within your Tcl/Tk installation.

To install Tablelist on UNIX, "cd" to the desired directory and unpack
the distribution file "tablelist7.6.tar.gz":

    gunzip -c tablelist7.6.tar.gz | tar -xf -

On most UNIX systems this can be replaced with

    tar -zxf tablelist7.6.tar.gz

Both commands will create a directory named "tablelist7.6 with the
subdirectories "demos", "doc", and "scripts".

On Windows, use WinZip or some other program capable of unpacking the
distribution file "tablelist7_6.zip" into the directory "tablelist7.6",
with the subdirectories "demos", "doc", and "scripts".

The file "tablelistEdit.tcl" in the "scripts" directory is only needed
for applications making use of interactive cell editing.  Similarly, the
file "tablelistMove.tcl" in the same directory is only required for
scripts invoking the "move" or "movecolumn" tablelist command.  Finally,
the file "tablelistThemes.tcl" is only needed for applications using







|
|
















|

|



|

|



|







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

    https://www.nemethi.de

How to Get It?
--------------

Tablelist is available for free download from the same URL as Wcb.  The
distribution file is "tablelist7.7.tar.gz" for UNIX and
"tablelist7_7.zip" for Windows.  These files contain the same
information, except for the additional carriage return character
preceding the linefeed at the end of each line in the text files for
Windows.

Tablelist is also included in tklib, which has the address

    https://core.tcl.tk/tklib

How to Install It?
------------------

Install the package as a subdirectory of one of the directories given
by the "auto_path" variable.  For example, you can install it as a
subdirectory of the "lib" directory within your Tcl/Tk installation.

To install Tablelist on UNIX, "cd" to the desired directory and unpack
the distribution file "tablelist7.7.tar.gz":

    gunzip -c tablelist7.7.tar.gz | tar -xf -

On most UNIX systems this can be replaced with

    tar -zxf tablelist7.7.tar.gz

Both commands will create a directory named "tablelist7.7 with the
subdirectories "demos", "doc", and "scripts".

On Windows, use WinZip or some other program capable of unpacking the
distribution file "tablelist7_7.zip" into the directory "tablelist7.7",
with the subdirectories "demos", "doc", and "scripts".

The file "tablelistEdit.tcl" in the "scripts" directory is only needed
for applications making use of interactive cell editing.  Similarly, the
file "tablelistMove.tcl" in the same directory is only required for
scripts invoking the "move" or "movecolumn" tablelist command.  Finally,
the file "tablelistThemes.tcl" is only needed for applications using
Changes to modules/tablelist/doc/index.html.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <title>The Multi-Column Listbox and Tree Widget Package Tablelist 7.6</title>

  <meta name="Author" content="Csaba Nemethi">
  <meta name="Keywords" content=
  "tablelist, multi-column, listbox, tree, widget, tile">

  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>The Multi-Column Listbox and Tree Widget Package Tablelist 7.6</h1>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>



|










|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
  <title>The Multi-Column Listbox and Tree Widget Package Tablelist 7.7</title>

  <meta name="Author" content="Csaba Nemethi">
  <meta name="Keywords" content=
  "tablelist, multi-column, listbox, tree, widget, tile">

  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>The Multi-Column Listbox and Tree Widget Package Tablelist 7.7</h1>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelist.html.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Tablelist Programmer's Guide</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Tablelist Programmer's Guide</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
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
      <a href="https://www.nemethi.de">https://www.nemethi.de</a>
    </address>
  </blockquote>

  <h3 id="ov_get">How to Get It?</h3>

  <p>Tablelist is available for free download from the same URL as Wcb.&nbsp;
  The distribution file is <code>tablelist7.6.tar.gz</code> for UNIX and
  <code>tablelist7_6.zip</code> for Windows.&nbsp; These files contain the same
  information, except for the additional carriage return character preceding
  the linefeed at the end of each line in the text files for Windows.</p>

  <p>Tablelist is also included in tklib, which has the address</p>

  <blockquote>
    <address>
      <a href="https://core.tcl.tk/tklib">https://core.tcl.tk/tklib</a>
    </address>
  </blockquote>

  <h3 id="ov_install">How to Install It?</h3>

  <p>Install the package as a subdirectory of one of the directories given by
  the <code>auto_path</code> variable.&nbsp; For example, you can install it as
  a subdirectory of the <code>lib</code> directory within your Tcl/Tk
  installation.</p>

  <p>To install Tablelist <i>on UNIX</i>, <code>cd</code> to the desired
  directory and unpack the distribution file
  <code>tablelist7.6.tar.gz</code>:</p>

  <blockquote>
    <pre>
gunzip -c tablelist7.6.tar.gz | tar -xf -
</pre>
  </blockquote>

  <p>On most UNIX systems this can be replaced with</p>

  <blockquote>
    <pre>
tar -zxf tablelist7.6.tar.gz
</pre>
  </blockquote>

  <p>Both commands will create a directory named <code>tablelist7.6</code>,
  with the subdirectories <code>demos</code>, <code>doc</code>, and
  <code>scripts</code>.</p>

  <p><i>On Windows</i>, use WinZip or some other program capable of unpacking
  the distribution file <code>tablelist7_6.zip</code> into the directory
  <code>tablelist7.6</code>, with the subdirectories <code>demos</code>,
  <code>doc</code>, and <code>scripts</code>.</p>

  <p>The file <code>tablelistEdit.tcl</code> in the <code>scripts</code>
  directory is only needed for applications making use of interactive cell
  editing.&nbsp; Similarly, the file <code>tablelistMove.tcl</code> in the same
  directory is only required for scripts invoking the <code>move</code> or
  <code>movecolumn</code> command.&nbsp; Finally, the file







|
|




















|



|







|



|




|
|







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
      <a href="https://www.nemethi.de">https://www.nemethi.de</a>
    </address>
  </blockquote>

  <h3 id="ov_get">How to Get It?</h3>

  <p>Tablelist is available for free download from the same URL as Wcb.&nbsp;
  The distribution file is <code>tablelist7.7.tar.gz</code> for UNIX and
  <code>tablelist7_7.zip</code> for Windows.&nbsp; These files contain the same
  information, except for the additional carriage return character preceding
  the linefeed at the end of each line in the text files for Windows.</p>

  <p>Tablelist is also included in tklib, which has the address</p>

  <blockquote>
    <address>
      <a href="https://core.tcl.tk/tklib">https://core.tcl.tk/tklib</a>
    </address>
  </blockquote>

  <h3 id="ov_install">How to Install It?</h3>

  <p>Install the package as a subdirectory of one of the directories given by
  the <code>auto_path</code> variable.&nbsp; For example, you can install it as
  a subdirectory of the <code>lib</code> directory within your Tcl/Tk
  installation.</p>

  <p>To install Tablelist <i>on UNIX</i>, <code>cd</code> to the desired
  directory and unpack the distribution file
  <code>tablelist7.7.tar.gz</code>:</p>

  <blockquote>
    <pre>
gunzip -c tablelist7.7.tar.gz | tar -xf -
</pre>
  </blockquote>

  <p>On most UNIX systems this can be replaced with</p>

  <blockquote>
    <pre>
tar -zxf tablelist7.7.tar.gz
</pre>
  </blockquote>

  <p>Both commands will create a directory named <code>tablelist7.7</code>,
  with the subdirectories <code>demos</code>, <code>doc</code>, and
  <code>scripts</code>.</p>

  <p><i>On Windows</i>, use WinZip or some other program capable of unpacking
  the distribution file <code>tablelist7_7.zip</code> into the directory
  <code>tablelist7.7</code>, with the subdirectories <code>demos</code>,
  <code>doc</code>, and <code>scripts</code>.</p>

  <p>The file <code>tablelistEdit.tcl</code> in the <code>scripts</code>
  directory is only needed for applications making use of interactive cell
  editing.&nbsp; Similarly, the file <code>tablelistMove.tcl</code> in the same
  directory is only required for scripts invoking the <code>move</code> or
  <code>movecolumn</code> command.&nbsp; Finally, the file
Changes to modules/tablelist/doc/tablelistBWidget.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the BWidget Package</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the BWidget Package</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistBinding.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands Related to Binding Scripts</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands Related to Binding Scripts</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistColSort.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands for Interactive Sorting by One or More Columns</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands for Interactive Sorting by One or More Columns</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistCombobox.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the combobox Package</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the combobox Package</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistCtext.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the ctext Package</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the ctext Package</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistIwidgets.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the Iwidgets Package</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the Iwidgets Package</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistMentry.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the Mentry Package</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using the Mentry Package</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistThemes.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands Related to Tile Themes</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Commands Related to Tile Themes</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistTile.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using Tile Widgets</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using Tile Widgets</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistTkCore.html.
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using Tk Core Widgets</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>Interactive Tablelist Cell Editing Using Tk Core Widgets</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/doc/tablelistWidget.html.
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>The <code><b>tablelist::tablelist</b></code> Command</h1>

    <h2>For Tablelist Version 7.6</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>







|







10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
  <div>
    <h1>The <code><b>tablelist::tablelist</b></code> Command</h1>

    <h2>For Tablelist Version 7.7</h2>

    <h3>by</h3>

    <h2>Csaba Nemethi</h2>

    <address>
      <a href="mailto:[email protected]">[email protected]</a>
Changes to modules/tablelist/pkgIndex.tcl.
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
#==============================================================================
# Tablelist and Tablelist_tile package index file.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

#
# Regular packages:
#
package ifneeded tablelist         7.6 \
	[list source [file join $dir tablelist.tcl]]
package ifneeded tablelist_tile    7.6 \
	[list source [file join $dir tablelist_tile.tcl]]

#
# Aliases:
#
package ifneeded Tablelist         7.6 \
	[list package require -exact tablelist	    7.6]
package ifneeded Tablelist_tile    7.6 \
	[list package require -exact tablelist_tile 7.6]

#
# Code common to all packages:
#
package ifneeded tablelist::common 7.6 \
	[list source [file join $dir tablelistCommon.tcl]]









|

|





|
|
|
|




|

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
#==============================================================================
# Tablelist and Tablelist_tile package index file.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

#
# Regular packages:
#
package ifneeded tablelist         7.7 \
	[list source [file join $dir tablelist.tcl]]
package ifneeded tablelist_tile    7.7 \
	[list source [file join $dir tablelist_tile.tcl]]

#
# Aliases:
#
package ifneeded Tablelist         7.7 \
	[list package require -exact tablelist	    7.7]
package ifneeded Tablelist_tile    7.7 \
	[list package require -exact tablelist_tile 7.7]

#
# Code common to all packages:
#
package ifneeded tablelist::common 7.7 \
	[list source [file join $dir tablelistCommon.tcl]]
Changes to modules/tablelist/scripts/tablelistEdit.tcl.
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
		}
	    }
	}
	if {[info exists ::wcb::version]} {
	    wcb::cbappend $w after insert tablelist::adjustTextHeight
	    wcb::cbappend $w after delete tablelist::adjustTextHeight
	}
    } elseif {!$isCheckbtn && !$isTogglesw} {
	update idletasks
	if {[destroyed $win]} {
	    return ""
	}
	$f configure -height [winfo reqheight $w]
    }








|







1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
		}
	    }
	}
	if {[info exists ::wcb::version]} {
	    wcb::cbappend $w after insert tablelist::adjustTextHeight
	    wcb::cbappend $w after delete tablelist::adjustTextHeight
	}
    } elseif {!$isCheckbtn} {
	update idletasks
	if {[destroyed $win]} {
	    return ""
	}
	$f configure -height [winfo reqheight $w]
    }

Changes to modules/tablelist/scripts/tablelistThemes.tcl.
46
47
48
49
50
51
52





53
54
55
56
57
58
59
    } elseif {[catch {${currentTheme}Theme}] != 0} {
	#
	# Fall back to the "default" theme (which is the root of all
	# themes) and then override the options set by the current one
	#
	defaultTheme
	array set themeDefaults [styleConfig .]






	if {[set bg [styleConfig . -background]] ne ""} {
	    array set themeDefaults [list \
		-labelbackground	$bg \
		-labeldeactivatedBg	$bg \
		-labeldisabledBg	$bg \
		-labelactiveBg		$bg \







>
>
>
>
>







46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
    } elseif {[catch {${currentTheme}Theme}] != 0} {
	#
	# Fall back to the "default" theme (which is the root of all
	# themes) and then override the options set by the current one
	#
	defaultTheme
	array set themeDefaults [styleConfig .]

	set themeDefaults(-background) white
	if {[set bg [styleConfig . -fieldbackground]] ne ""} {
	    set themeDefaults(-background) $bg
	}

	if {[set bg [styleConfig . -background]] ne ""} {
	    array set themeDefaults [list \
		-labelbackground	$bg \
		-labeldeactivatedBg	$bg \
		-labeldisabledBg	$bg \
		-labelactiveBg		$bg \
125
126
127
128
129
130
131




132


133
134
135
136
137









138

139



140


141
142
143
144
145
146
147
# =========================================
#

#------------------------------------------------------------------------------
# tablelist::awTheme
#------------------------------------------------------------------------------
proc tablelist::awTheme theme {




    set bg		[styleConfig . -background]


    set fg		[styleConfig . -foreground]
    set disabledFg	[lindex [style map . -foreground] 1]
    set labelBg		[styleConfig Heading -background]
    set labelactiveBg	[styleConfig Heading -lightcolor]










    scan $bg "#%2x%2x%2x" r g b

    incr r -15; incr g -15; incr b -15



    set stripeBg [format "#%2x%2x%2x" $r $g $b]



    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]
    switch $theme {
	awarc - arc			{ set treeStyle classic$pct }
	awblack - black			{ set treeStyle white$pct }







>
>
>
>
|
>
>





>
>
>
>
>
>
>
>
>
|
>
|
>
>
>
|
>
>







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

#------------------------------------------------------------------------------
# tablelist::awTheme
#------------------------------------------------------------------------------
proc tablelist::awTheme theme {
    if {$theme eq "awblack" || $theme eq "black"} {
	set bg		"#000000"
	set selectBg	"#4a6984"
    } else {
	set bg		[styleConfig . -fieldbackground]
	set selectBg	[styleConfig . -selectbackground]
    }
    set fg		[styleConfig . -foreground]
    set disabledFg	[lindex [style map . -foreground] 1]
    set labelBg		[styleConfig Heading -background]
    set labelactiveBg	[styleConfig Heading -lightcolor]

    switch $theme {
	awblack - black { set stripeBg "#262626" }
	awclearlooks - clearlooks -
	awwinxpblue - winxpblue {
	    scan [styleConfig . -background] "#%2x%2x%2x" r g b
	    incr r 8; incr g 8; incr b 8
	    set stripeBg [format "#%02x%02x%02x" $r $g $b]
	}
	default {
	    scan $bg "#%2x%2x%2x" r g b
	    if {[mwutil::isColorLight $bg]} {
		incr r -15; incr g -15; incr b -15
	    } else {
		incr r 15; incr g 15; incr b 15
	    }
	    set stripeBg [format "#%02x%02x%02x" $r $g $b]
	}
    }

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]
    switch $theme {
	awarc - arc			{ set treeStyle classic$pct }
	awblack - black			{ set treeStyle white$pct }
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171

    variable themeDefaults
    array set themeDefaults [list \
	-background		$bg \
	-foreground		$fg \
	-disabledforeground	$disabledFg \
	-stripebackground	$stripeBg \
	-selectbackground	[styleConfig . -selectbackground] \
	-selectforeground	[styleConfig . -selectforeground] \
	-selectborderwidth	[styleConfig . -selectborderwidth] \
	-labelbackground	$labelBg \
	-labeldeactivatedBg	$labelBg \
	-labeldisabledBg	$labelBg \
	-labelactiveBg		$labelactiveBg \
	-labelpressedBg		$labelactiveBg \







|







183
184
185
186
187
188
189
190
191
192
193
194
195
196
197

    variable themeDefaults
    array set themeDefaults [list \
	-background		$bg \
	-foreground		$fg \
	-disabledforeground	$disabledFg \
	-stripebackground	$stripeBg \
	-selectbackground	$selectBg \
	-selectforeground	[styleConfig . -selectforeground] \
	-selectborderwidth	[styleConfig . -selectborderwidth] \
	-labelbackground	$labelBg \
	-labeldeactivatedBg	$labelBg \
	-labeldisabledBg	$labelBg \
	-labelactiveBg		$labelactiveBg \
	-labelpressedBg		$labelactiveBg \
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
	    if {$majorOSVersion >= 14} {		;# OS X 10.10 or later
		if {$newAquaSupport} {
		    if {$darkMode} {
			set stripeBg			#282828
			set labelselectedBg		#323232
			set labelselectedpressedBg	#323232
		    } else {
			set stripeBg			#f5f5f5
			set labelselectedBg		#eeeeee
			set labelselectedpressedBg	#eeeeee
		    }
		} else {
		    set stripeBg		#f5f5f5
		    set labelselectedBg		#f6f6f6
		    set labelselectedpressedBg	#e9e9e9
		}
	    } elseif {$majorOSVersion >= 11} {		;# OS X 10.7 or later
		set stripeBg			#f3f6fa
		set labelselectedBg		#91c5f3
		set labelselectedpressedBg	#5092e3







|




|







294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
	    if {$majorOSVersion >= 14} {		;# OS X 10.10 or later
		if {$newAquaSupport} {
		    if {$darkMode} {
			set stripeBg			#282828
			set labelselectedBg		#323232
			set labelselectedpressedBg	#323232
		    } else {
			set stripeBg			#f4f5f5
			set labelselectedBg		#eeeeee
			set labelselectedpressedBg	#eeeeee
		    }
		} else {
		    set stripeBg		#f4f5f5
		    set labelselectedBg		#f6f6f6
		    set labelselectedpressedBg	#e9e9e9
		}
	    } elseif {$majorOSVersion >= 11} {		;# OS X 10.7 or later
		set stripeBg			#f3f6fa
		set labelselectedBg		#91c5f3
		set labelselectedpressedBg	#5092e3
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
	    if {$majorOSVersion >= 14} {		;# OS X 10.10 or later
		if {$newAquaSupport} {
		    if {$darkMode} {
			set stripeBg			#282828
			set labelselectedBg		#323232
			set labelselectedpressedBg	#323232
		    } else {
			set stripeBg			#f5f5f5
			set labelselectedBg		#eeeeee
			set labelselectedpressedBg	#eeeeee
		    }
		} else {
		    set stripeBg		#f5f5f5
		    set labelselectedBg		#f6f6f6
		    set labelselectedpressedBg	#e9e9e9
		}
	    } elseif {$majorOSVersion >= 11} {		;# OS X 10.7 or later
		set stripeBg			#f6f7f9
		set labelselectedBg		#abb6c2
		set labelselectedpressedBg	#76829a







|




|







322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
	    if {$majorOSVersion >= 14} {		;# OS X 10.10 or later
		if {$newAquaSupport} {
		    if {$darkMode} {
			set stripeBg			#282828
			set labelselectedBg		#323232
			set labelselectedpressedBg	#323232
		    } else {
			set stripeBg			#f4f5f5
			set labelselectedBg		#eeeeee
			set labelselectedpressedBg	#eeeeee
		    }
		} else {
		    set stripeBg		#f4f5f5
		    set labelselectedBg		#f6f6f6
		    set labelselectedpressedBg	#e9e9e9
		}
	    } elseif {$majorOSVersion >= 11} {		;# OS X 10.7 or later
		set stripeBg			#f6f7f9
		set labelselectedBg		#abb6c2
		set labelselectedpressedBg	#76829a
496
497
498
499
500
501
502
503
504
505
506


507
508
509
510
511
512
513
    ]
}

#------------------------------------------------------------------------------
# tablelist::ArcTheme
#------------------------------------------------------------------------------
proc tablelist::ArcTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-foreground		#5c616c \
	-disabledforeground	#a9acb2 \
	-stripebackground	"" \
	-selectbackground	#5294e2 \
	-selectforeground	#ffffff \
	-selectborderwidth	0 \







<



>
>







522
523
524
525
526
527
528

529
530
531
532
533
534
535
536
537
538
539
540
    ]
}

#------------------------------------------------------------------------------
# tablelist::ArcTheme
#------------------------------------------------------------------------------
proc tablelist::ArcTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-foreground		#5c616c \
	-disabledforeground	#a9acb2 \
	-stripebackground	"" \
	-selectbackground	#5294e2 \
	-selectforeground	#ffffff \
	-selectborderwidth	0 \
528
529
530
531
532
533
534
535
536
537
538


539
540
541
542
543
544
545
    ]
}

#------------------------------------------------------------------------------
# tablelist::blackTheme
#------------------------------------------------------------------------------
proc tablelist::blackTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-background		#000000 \
	-foreground		#ffffff \
	-disabledforeground	#a9a9a9 \
	-stripebackground	"" \
	-selectbackground	#4a6984 \
	-selectforeground	#ffffff \







<



>
>







555
556
557
558
559
560
561

562
563
564
565
566
567
568
569
570
571
572
573
    ]
}

#------------------------------------------------------------------------------
# tablelist::blackTheme
#------------------------------------------------------------------------------
proc tablelist::blackTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-background		#000000 \
	-foreground		#ffffff \
	-disabledforeground	#a9a9a9 \
	-stripebackground	"" \
	-selectbackground	#4a6984 \
	-selectforeground	#ffffff \
587
588
589
590
591
592
593
594
595
596
597


598
599
600
601
602
603
604
    ]
}

#------------------------------------------------------------------------------
# tablelist::BreezeTheme, tablelist::breezeTheme
#------------------------------------------------------------------------------
proc tablelist::BreezeTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-background		#eff0f1 \
	-foreground		#31363b \
	-disabledforeground	#bbcbbe \
	-stripebackground	"" \
	-selectbackground	#3daee9 \
	-selectforeground	#ffffff \







<



>
>







615
616
617
618
619
620
621

622
623
624
625
626
627
628
629
630
631
632
633
    ]
}

#------------------------------------------------------------------------------
# tablelist::BreezeTheme, tablelist::breezeTheme
#------------------------------------------------------------------------------
proc tablelist::BreezeTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-background		#eff0f1 \
	-foreground		#31363b \
	-disabledforeground	#bbcbbe \
	-stripebackground	"" \
	-selectbackground	#3daee9 \
	-selectforeground	#ffffff \
623
624
625
626
627
628
629
630
631
632
633


634
635
636
637
638
639
640
    BreezeTheme
}

#------------------------------------------------------------------------------
# tablelist::breeze-darkTheme
#------------------------------------------------------------------------------
proc tablelist::breeze-darkTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-background		#31363b \
	-foreground		#eff0f1 \
	-disabledforeground	#7f8c8d \
	-stripebackground	"" \
	-selectbackground	#3daee9 \
	-selectforeground	#ffffff \







<



>
>







652
653
654
655
656
657
658

659
660
661
662
663
664
665
666
667
668
669
670
    BreezeTheme
}

#------------------------------------------------------------------------------
# tablelist::breeze-darkTheme
#------------------------------------------------------------------------------
proc tablelist::breeze-darkTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-background		#31363b \
	-foreground		#eff0f1 \
	-disabledforeground	#7f8c8d \
	-stripebackground	"" \
	-selectbackground	#3daee9 \
	-selectforeground	#ffffff \
765
766
767
768
769
770
771




























772
773
774
775
776
777
778
	-arrowstyle		[defaultX11ArrowStyle] \
	-treestyle		gtk \
    ]

    set val [styleConfig . -selectborderwidth]
    set themeDefaults(-selectborderwidth) [expr {$val eq "" ? 0 : $val}]
}





























#------------------------------------------------------------------------------
# tablelist::keramikTheme
#------------------------------------------------------------------------------
proc tablelist::keramikTheme {} {
    variable themeDefaults
    array set themeDefaults [list \







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







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
	-arrowstyle		[defaultX11ArrowStyle] \
	-treestyle		gtk \
    ]

    set val [styleConfig . -selectborderwidth]
    set themeDefaults(-selectborderwidth) [expr {$val eq "" ? 0 : $val}]
}

#------------------------------------------------------------------------------
# tablelist::droidTheme
#------------------------------------------------------------------------------
proc tablelist::droidTheme {} {
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-disabledforeground	#aaaaaa \
	-stripebackground	#e8e8e8 \
	-selectbackground	#657a9e \
	-selectforeground	#ffffff \
	-selectborderwidth	0 \
	-labelbackground	#dcdde3 \
	-labeldeactivatedBg	#dcdde3 \
	-labeldisabledBg	#dcdde3 \
	-labelactiveBg		#dcdde3 \
	-labelpressedBg		#b9bcc0 \
	-labeldisabledFg	#aaaaaa \
	-labelborderwidth	0 \
	-labelpady		1 \
	-arrowstyle		[defaultX11ArrowStyle] \
	-treestyle		classic$pct \
    ]
}

#------------------------------------------------------------------------------
# tablelist::keramikTheme
#------------------------------------------------------------------------------
proc tablelist::keramikTheme {} {
    variable themeDefaults
    array set themeDefaults [list \
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
#------------------------------------------------------------------------------
# tablelist::plastikTheme
#------------------------------------------------------------------------------
proc tablelist::plastikTheme {} {
    variable themeDefaults
    array set themeDefaults [list \
	-disabledforeground	#aaaaaa \
	-stripebackground	"" \
	-selectbackground	#657a9e \
	-selectforeground	#ffffff \
	-selectborderwidth	0 \
	-labelbackground	#dcdde3 \
	-labeldeactivatedBg	#dcdde3 \
	-labeldisabledBg	#dcdde3 \
	-labelactiveBg		#dcdde3 \
	-labelpressedBg		#b9bcc0 \
	-labeldisabledFg	#aaaaaa \
	-labelborderwidth	0 \
	-labelpady		1 \
	-arrowstyle		flat7x4 \
	-treestyle		plastik \
    ]
}

#------------------------------------------------------------------------------
# tablelist::srivTheme
#------------------------------------------------------------------------------







|











|







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
#------------------------------------------------------------------------------
# tablelist::plastikTheme
#------------------------------------------------------------------------------
proc tablelist::plastikTheme {} {
    variable themeDefaults
    array set themeDefaults [list \
	-disabledforeground	#aaaaaa \
	-stripebackground	#e8e8e8 \
	-selectbackground	#657a9e \
	-selectforeground	#ffffff \
	-selectborderwidth	0 \
	-labelbackground	#dcdde3 \
	-labeldeactivatedBg	#dcdde3 \
	-labeldisabledBg	#dcdde3 \
	-labelactiveBg		#dcdde3 \
	-labelpressedBg		#b9bcc0 \
	-labeldisabledFg	#aaaaaa \
	-labelborderwidth	0 \
	-labelpady		1 \
	-arrowstyle		[defaultX11ArrowStyle] \
	-treestyle		plastik \
    ]
}

#------------------------------------------------------------------------------
# tablelist::srivTheme
#------------------------------------------------------------------------------
942
943
944
945
946
947
948
949
950
951
952


953
954
955
956
957
958
959
    ]
}

#------------------------------------------------------------------------------
# tablelist::sun-valley-lightTheme
#------------------------------------------------------------------------------
proc tablelist::sun-valley-lightTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-background		#fafafa \
	-foreground		#1c1c1c \
	-disabledforeground	#a0a0a0 \
	-stripebackground	"" \
	-selectbackground	#2f60d8 \
	-selectforeground	#ffffff \







<



>
>







1000
1001
1002
1003
1004
1005
1006

1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
    ]
}

#------------------------------------------------------------------------------
# tablelist::sun-valley-lightTheme
#------------------------------------------------------------------------------
proc tablelist::sun-valley-lightTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-background		#fafafa \
	-foreground		#1c1c1c \
	-disabledforeground	#a0a0a0 \
	-stripebackground	"" \
	-selectbackground	#2f60d8 \
	-selectforeground	#ffffff \
975
976
977
978
979
980
981
982
983
984
985


986
987
988
989
990
991
992
    ]
}

#------------------------------------------------------------------------------
# tablelist::sun-valley-darkTheme
#------------------------------------------------------------------------------
proc tablelist::sun-valley-darkTheme {} {
    variable themeDefaults
    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]


    array set themeDefaults [list \
	-background		#1c1c1c \
	-foreground		#fafafa \
	-disabledforeground	#595959 \
	-stripebackground	"" \
	-selectbackground	#2f60d8 \
	-selectforeground	#ffffff \







<



>
>







1034
1035
1036
1037
1038
1039
1040

1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
    ]
}

#------------------------------------------------------------------------------
# tablelist::sun-valley-darkTheme
#------------------------------------------------------------------------------
proc tablelist::sun-valley-darkTheme {} {

    variable svgSupported
    variable scalingpct
    set pct [expr {$svgSupported ? "" : $scalingpct}]

    variable themeDefaults
    array set themeDefaults [list \
	-background		#1c1c1c \
	-foreground		#fafafa \
	-disabledforeground	#595959 \
	-stripebackground	"" \
	-selectbackground	#2f60d8 \
	-selectforeground	#ffffff \
Changes to modules/tablelist/scripts/tablelistUtil.tcl.
6932
6933
6934
6935
6936
6937
6938



























6939
6940
6941
6942
6943
6944
6945

	Aquativo - aquativo -
	Arc - arc {
	    $frm configure -width 14 -height 14
	    place $w -x -1 -y -1
	    return {14 14}
	}




























	clearlooks {
	    $frm configure -width 13 -height 13
	    place $w -x -2 -y -2
	    return {13 13}
	}








>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972

	Aquativo - aquativo -
	Arc - arc {
	    $frm configure -width 14 -height 14
	    place $w -x -1 -y -1
	    return {14 14}
	}

	droid {
	    switch $::ttk::theme::droid::dpi {
		120 {
		    set width 18; set height 19
		    place $w -x -4
		}
		160 {
		    set width 25; set height 25
		    place $w -x -5
		}
		240 {
		    set width 37; set height 38
		    place $w -x -8
		}
		320 {
		    set width 50; set height 50
		    place $w -x -10
		}
		400 {
		    set width 61; set height 62
		    place $w -x -13
		}
	    }
	    $frm configure -width $width -height $height
	    return [list $width $height]
	}

	clearlooks {
	    $frm configure -width 13 -height 13
	    place $w -x -2 -y -2
	    return {13 13}
	}

Changes to modules/tablelist/scripts/tclIndex.
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
# Tcl autoload index file, version 2.0
# This file is generated by the "auto_mkindex" command
# and sourced to set up indexing information for one or
# more commands.  Typically each line is a command that
# sets an element in the auto_index array, where the
# element name is the name of a command and the value is
# a script that loads the command.

set auto_index(::tablelist::getTablelistColumn) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::getTablelistPath) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::convEventFields) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::delaySashPosUpdates) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::addActiveTag) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::removeActiveTag) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::finishEditingOnFocusOut) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cleanup) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateBackgrounds) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateFonts) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleThemeChangedEvent) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateConfiguration) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleAppearanceEvent) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateAppearance) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condOpenPipeline) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cleanupWindow) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistBody) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::invokeMotionHandler) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleMotionDelayed) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleMotion) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::showOrHideTooltip) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateExpCollCtrl) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateCursor) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::makeEditCursor) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::wasExpCollCtrlClicked) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEditContainingCell) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condFinishEditing) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condBeginMove) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginSelect) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condAutoScan) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::autoScan) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::minScrollableX) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::autoScan2) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::motion) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condShowTarget) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::moveOrActivate) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEvalInvokeCmd) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cancelMove) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginExtend) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginToggle) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEditActiveCell) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::plusMinus) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::nextPrevCell) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::upDown) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::leftRight) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::priorNext) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::homeEnd) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstLast) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendUpDown) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendLeftRight) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendToHomeEnd) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendToFirstLast) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cancelSelection) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::selectAll) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::isDragSrc) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::normalizedRect) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cellInRect) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstViewableRow) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::lastViewableRow) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstViewableCol) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::lastViewableCol) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condChangeSelection) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::changeSelection) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::genTablelistActivateEvent) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::genTablelistSelectEvent) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleBtn2Event) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleWheelEvent) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistHeader) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_handleMotionDelayed) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_handleMotion) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_showOrHideTooltip) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistLabel) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistSubLabel) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistArrow) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelEnter) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelLeave) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Down) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Motion) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Enter) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Leave) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Up) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB3Down) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelDblB1) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::escape) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::horizAutoScan) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::inResizeArea) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Down) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Motion) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Up) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifShiftB1Down) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifCtrlB1Down) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::selectColRange) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::deselectColRange) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstSelCellOfCol) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::isColSelected) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::wasColSelected) [list source -encoding utf-8 [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendConfigSpecs) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doConfig) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCget) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doColConfig) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doColCget) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doRowConfig) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doRowCget) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCellConfig) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCellCget) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::defaultX11ArrowStyle) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::defaultWinArrowSize) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::makeListVar) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::updateListboxSetgridOpt) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::createSublabels) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::isRowViewable) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getCellFont) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::reconfigWindows) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::isCellEditable) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getEditWindow) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getOpt) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getConfigParams) [list source -encoding utf-8 [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::addTkCoreWidgets) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addTileWidgets) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetEntry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetSpinBox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetComboBox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrEntryfield) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrDateTimeWidget) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrSpinner) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrSpinint) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrCombobox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addCtext) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addOakleyCombobox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addDateMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addTimeMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addDateTimeMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addFixedPointMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIPAddrMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIPv6AddrMentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addToggleswitch) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::checkEditWinName) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createCheckbutton) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createMenubutton) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::postMenuCmd) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileEntry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileSpinbox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileCombobox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileCheckbutton) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileMenubutton) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createBWidgetSpinBox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createBWidgetComboBox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrDateentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrTimeentry) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrCombobox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createOakleyCombobox) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createToggleswitch) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doEditCell) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doCancelEditing) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doFinishEditing) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::clearTakefocusOpt) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::adjustTextHeight) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::setMentryCursor) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::configAutoFinishEditing) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::adjustEditWindow) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::setEditWinFont) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::saveEditData) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::saveEditConfigOpts) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::restoreEditData) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::restoreEditConfigOpts) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::defineTablelistEdit) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::insertChar) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::cancelEditing) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::finishEditing) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToNextPrevCell) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goLeftRight) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goUpDown) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToPrevNextLine) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToPriorNextPage) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isKeyReserved) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::hasMouseBtn2Bindings) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::hasMouseWheelBindings) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isComboTopMapped) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isMenuPosted) [list source -encoding utf-8 [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::flat7x4Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat7x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat8x4Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat8x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat9x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat10x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat11x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat12x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat13x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat14x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat15x8Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat16x8Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle7x4Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle7x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle9x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle9x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle10x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle11x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle13x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle15x8Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo0x0Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::setSvgImgForeground) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo7x4Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo7x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo9x5Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo11x6Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo13x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo15x8Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken8x7Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken10x9Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken12x11Arrows) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createSortRankImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createCheckbuttonImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::adwaitaTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ambianceTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::aquaTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::aqua11TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::arcTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::baghiraTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolorTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor100TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor125TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor150TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor175TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor200TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::blueMentaTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classicTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic100TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic125TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic150TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic175TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic200TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::dustTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::dustSandTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::gtkTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::klearlooksTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mateTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mentaTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mintTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mint2TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::newWaveTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::oxygen1TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::oxygen2TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::phaseTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plainTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain100TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain125TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain150TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain175TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain200TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plastikTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plastiqueTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::radianceTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntuTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntu2TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntu3TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntuMateTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_100) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_125) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_150) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_175) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_200) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_100) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_125) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_150) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_175) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_200) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::whiteTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white100TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white125TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white150TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white175TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white200TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win7AeroTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win7ClassicTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_100) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_125) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_150) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_175) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_200) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winnativeTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpBlueTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpOliveTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpSilverTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::yuyoTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createTreeImgs) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::setTreeLabelWidths) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::pencilCursorData) [list source -encoding utf-8 [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::moveRow) [list source -encoding utf-8 [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::moveNode) [list source -encoding utf-8 [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::moveCol) [list source -encoding utf-8 [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::sortByColumn) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::addToSortColumns) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortItems) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortChildren) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortList) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::compareNoCase) [list source -encoding utf-8 [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::setThemeDefaults) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::awTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::altTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::aquaTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::AquativoTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::aquativoTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::ArcTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::blackTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::blueTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::BreezeTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::breezeTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::breeze-darkTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::clamTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::classicTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::clearlooksTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::defaultTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]

set auto_index(::tablelist::keramikTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::keramik_altTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::krocTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::plastikTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::srivTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::srivlgTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::stepTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::sun-valley-lightTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::sun-valley-darkTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::tileqtTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::vistaTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::winnativeTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::winxpblueTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::xpnativeTheme) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::getKdeConfigVal) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::makeKdeDirList) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::readKdeConfigVal) [list source -encoding utf-8 [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::destroyed) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::rowIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_rowIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::colIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::colIndex2) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::cellIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_cellIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustRowIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustColIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::nodeIndexToKey) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::depth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::topLevelKey) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::descCount) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::nodeRow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::keyToRow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_keyToRow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateKeyToRowMap) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::findTabs) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::sortStretchableColList) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColData) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColAttribs) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColSelStates) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColData) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColAttribs) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColSelStates) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::condUpdateListVar) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::reconfigColLabels) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::charsToPixels) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::strRange) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustItem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::formatElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::formatItem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hasChars) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getListWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::joinList) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayIndent) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayImage) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayText) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getAuxData) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getIndentData) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getMaxTextWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustMlElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getElemWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertOrUpdateIndent) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertMlElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateCell) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateMlCell) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setImgLabelWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setImgLabelAnchor) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::appendComplexElem) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeColFontAndTagLists) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeSortAndArrowColLists) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setupColumns) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createSeps) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustSepsWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustSeps) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getSepX) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustColumns) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustLabel) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::computeColWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::computeLabelWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustHeaderHeight) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::stretchColumnsWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::stretchColumns) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveActiveTag) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateColorsWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateColors) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_updateColorsWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_updateColors) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateScrlColOffsetWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateScrlColOffset) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateHScrlbarWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateHScrlbar) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateVScrlbarWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateVScrlbar) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::forceRedraw) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::workAroundAquaTkBugs) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustElidedText) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_adjustElidedText) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplay) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayVisibleItems) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayColWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayCol) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeStripesWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeStripes) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::showLineNumbersWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::showLineNumbers) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateViewWhenIdle) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateView) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::purgeWidgets) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::synchronize) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getSublabels) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::parseLabelPath) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::configLabel) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createArrows) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::configCanvas) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::fillArrows) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getShadows) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::raiseArrow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::isHdrTxtFrXPosVisible) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getScrlContentWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getTitleColsWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getScrlWindowWidth) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getMaxScrlColOffset) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::changeScrlColOffset) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::scrlXOffsetToColOffset) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::scrlColOffsetToXOffset) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getVertComplTopRow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getVertComplBtmRow) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getViewableRowCount) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::viewableRowOffsetToRowIndex) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_createCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createTtkCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_createTtkCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeTtkCkbtn) [list source -encoding utf-8 [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::restoreScalingpct) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::createTileAliases) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::restrictCmdOpts) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::createBindings) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::tablelist) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::tablelistWidgetCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activateSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activatecellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::applysortingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::attribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::autoscrolltargetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bboxSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodypathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodytagSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cancelededitingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::canceleditingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellbboxSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellcgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellconfigureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellindexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellselectionSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childcountSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childindexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::collapseSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::collapseallSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columncgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnconfigureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columncountSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnindexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnwidthSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcelllistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcolumnlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configrowlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configrowsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingcellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cornerlabelpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cornerpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curcellselectionSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curselectionSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deletecolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::depthSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::descendantcountSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dicttoitemSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dumptofileSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dumptostringSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editcellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editinfoSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editwinpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editwintagSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedcheckbuttonSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedcheckbuttonsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedttkcheckbuttonSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedttkcheckbuttonsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::entrypathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandallSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandedkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::fillcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::findcolumnnameSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::findrownameSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::finisheditingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::formatinfoSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getfullkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hasattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hascellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hascolumnattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hasrowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headerSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_bboxSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellbboxSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellcgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellconfigureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellindexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configcelllistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configrowlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configrowsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_containingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_containingcellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_deleteSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedcheckbuttonSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedcheckbuttonsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedttkcheckbuttonSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedttkcheckbuttonsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_fillcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_findrownameSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedcellsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getfullkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getkeysSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_hascellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_hasrowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_imagelabelpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_indexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_insertSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_insertlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_iselemsnippedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_itemlistvarSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_nearestSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_nearestcellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowcgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowconfigureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_sizeSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_unsetcellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_unsetrowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_windowpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headerpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headertagSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hidetargetmarkSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::imagelabelpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::indexSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertchildlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertchildrenSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertcolumnlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertcolumnsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::iselemsnippedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::isexpandedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::istitlesnippedSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::isviewableSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::itemlistvarSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::itemtodictSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labeltagSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelwindowpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::loadfromfileSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::loadfromstringSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::moveSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::movecolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestcellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::noderowSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::parentkeySubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::refreshsortingSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rejectinputSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::resetsortinfoSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::restorecursorSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowcgetSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowconfigureSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::scanSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::searchcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seecellSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seecolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::selectionSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::separatorpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::separatorsSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::setbusycursorSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::showtargetmarkSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sizeSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortbycolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortbycolumnlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortcolumnSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortcolumnlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortorderSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortorderlistSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::stopautoscrollSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::targetmarkpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::targetmarkposSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::togglecolumnhideSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::togglerowhideSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::toplevelkeySubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetcellattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetcolumnattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetrowattribSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::viewablerowcountSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::windowpathSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::xviewSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::yviewSubCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::colWidth) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingRow) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_containingRow) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingCol) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curCellSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteRows) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_deleteRows) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteCols) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertRows) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_insertRows) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::displayItems) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertCols) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::doScan) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::populate) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(doesMatch) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeRow) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeCell) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::horizMoveTo) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::horizScrollByUnits) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::vertMoveTo) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::vertScrollByUnits) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dragTo) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeTextIdx) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::updateIdletasksDelayed) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::updateIdletasks) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdrConfigure) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodyConfigure) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::fetchSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::lostSelection) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activeTrace) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::listVarTrace) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::checkStatesTrace) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::populateCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandCmd) [list source -encoding utf-8 [file join $dir tablelistWidget.tcl]]








|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
# Tcl autoload index file, version 2.0
# This file is generated by the "auto_mkindex" command
# and sourced to set up indexing information for one or
# more commands.  Typically each line is a command that
# sets an element in the auto_index array, where the
# element name is the name of a command and the value is
# a script that loads the command.

set auto_index(::tablelist::getTablelistColumn) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::getTablelistPath) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::convEventFields) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::delaySashPosUpdates) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::addActiveTag) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::removeActiveTag) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::finishEditingOnFocusOut) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cleanup) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateBackgrounds) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateFonts) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleThemeChangedEvent) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateConfiguration) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleAppearanceEvent) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateAppearance) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condOpenPipeline) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cleanupWindow) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistBody) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::invokeMotionHandler) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleMotionDelayed) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleMotion) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::showOrHideTooltip) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateExpCollCtrl) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::updateCursor) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::makeEditCursor) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::wasExpCollCtrlClicked) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEditContainingCell) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condFinishEditing) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condBeginMove) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginSelect) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condAutoScan) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::autoScan) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::minScrollableX) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::autoScan2) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::motion) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condShowTarget) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::moveOrActivate) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEvalInvokeCmd) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cancelMove) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginExtend) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::beginToggle) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condEditActiveCell) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::plusMinus) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::nextPrevCell) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::upDown) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::leftRight) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::priorNext) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::homeEnd) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstLast) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendUpDown) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendLeftRight) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendToHomeEnd) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendToFirstLast) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cancelSelection) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::selectAll) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::isDragSrc) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::normalizedRect) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::cellInRect) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstViewableRow) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::lastViewableRow) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstViewableCol) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::lastViewableCol) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::condChangeSelection) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::changeSelection) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::genTablelistActivateEvent) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::genTablelistSelectEvent) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleBtn2Event) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::handleWheelEvent) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistHeader) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_handleMotionDelayed) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_handleMotion) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::hdr_showOrHideTooltip) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistLabel) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistSubLabel) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::defineTablelistArrow) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelEnter) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelLeave) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Down) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Motion) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Enter) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Leave) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB1Up) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelB3Down) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelDblB1) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::escape) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::horizAutoScan) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::inResizeArea) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Down) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Motion) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifB1Up) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifShiftB1Down) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::labelModifCtrlB1Down) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::selectColRange) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::deselectColRange) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::firstSelCellOfCol) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::isColSelected) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::wasColSelected) [list source [file join $dir tablelistBind.tcl]]
set auto_index(::tablelist::extendConfigSpecs) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doConfig) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCget) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doColConfig) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doColCget) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doRowConfig) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doRowCget) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCellConfig) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::doCellCget) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::defaultX11ArrowStyle) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::defaultWinArrowSize) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::makeListVar) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::updateListboxSetgridOpt) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::createSublabels) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::isRowViewable) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getCellFont) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::reconfigWindows) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::isCellEditable) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getEditWindow) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getOpt) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::getConfigParams) [list source [file join $dir tablelistConfig.tcl]]
set auto_index(::tablelist::addTkCoreWidgets) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addTileWidgets) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetEntry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetSpinBox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addBWidgetComboBox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrEntryfield) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrDateTimeWidget) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrSpinner) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrSpinint) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIncrCombobox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addCtext) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addOakleyCombobox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addDateMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addTimeMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addDateTimeMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addFixedPointMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIPAddrMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addIPv6AddrMentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::addToggleswitch) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::checkEditWinName) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createCheckbutton) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createMenubutton) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::postMenuCmd) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileEntry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileSpinbox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileCombobox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileCheckbutton) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createTileMenubutton) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createBWidgetSpinBox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createBWidgetComboBox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrDateentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrTimeentry) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createIncrCombobox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createOakleyCombobox) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::createToggleswitch) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doEditCell) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doCancelEditing) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::doFinishEditing) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::clearTakefocusOpt) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::adjustTextHeight) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::setMentryCursor) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::configAutoFinishEditing) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::adjustEditWindow) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::setEditWinFont) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::saveEditData) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::saveEditConfigOpts) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::restoreEditData) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::restoreEditConfigOpts) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::defineTablelistEdit) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::insertChar) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::cancelEditing) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::finishEditing) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToNextPrevCell) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goLeftRight) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goUpDown) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToPrevNextLine) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::goToPriorNextPage) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isKeyReserved) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::hasMouseBtn2Bindings) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::hasMouseWheelBindings) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isComboTopMapped) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::isMenuPosted) [list source [file join $dir tablelistEdit.tcl]]
set auto_index(::tablelist::flat7x4Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat7x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat8x4Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat8x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat9x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat10x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat11x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat12x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat13x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat14x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat15x8Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flat16x8Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle7x4Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle7x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle9x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle9x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle10x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle11x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle13x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::flatAngle15x8Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo0x0Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::setSvgImgForeground) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo7x4Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo7x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo9x5Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo11x6Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo13x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::photo15x8Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken8x7Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken10x9Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::sunken12x11Arrows) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createSortRankImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createCheckbuttonImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::adwaitaTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ambianceTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::aquaTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::aqua11TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::arcTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::baghiraTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolorTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor100TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor125TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor150TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor175TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::bicolor200TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::blueMentaTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classicTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic100TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic125TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic150TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic175TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::classic200TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::dustTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::dustSandTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::gtkTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::klearlooksTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mateTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mentaTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mintTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::mint2TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::newWaveTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::oxygen1TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::oxygen2TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::phaseTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plainTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain100TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain125TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain150TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain175TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plain200TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plastikTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::plastiqueTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::radianceTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntuTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntu2TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntu3TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::ubuntuMateTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_100) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_125) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_150) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_175) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaAeroTreeImgs_200) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_100) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_125) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_150) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_175) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::vistaClassicTreeImgs_200) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::whiteTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white100TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white125TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white150TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white175TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::white200TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win7AeroTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win7ClassicTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_100) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_125) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_150) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_175) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::win10TreeImgs_200) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winnativeTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpBlueTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpOliveTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::winxpSilverTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::yuyoTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::createTreeImgs) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::setTreeLabelWidths) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::pencilCursorData) [list source [file join $dir tablelistImages.tcl]]
set auto_index(::tablelist::moveRow) [list source [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::moveNode) [list source [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::moveCol) [list source [file join $dir tablelistMove.tcl]]
set auto_index(::tablelist::sortByColumn) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::addToSortColumns) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortItems) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortChildren) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::sortList) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::compareNoCase) [list source [file join $dir tablelistSort.tcl]]
set auto_index(::tablelist::setThemeDefaults) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::awTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::altTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::aquaTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::AquativoTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::aquativoTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::ArcTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::blackTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::blueTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::BreezeTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::breezeTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::breeze-darkTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::clamTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::classicTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::clearlooksTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::defaultTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::droidTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::keramikTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::keramik_altTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::krocTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::plastikTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::srivTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::srivlgTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::stepTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::sun-valley-lightTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::sun-valley-darkTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::tileqtTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::vistaTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::winnativeTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::winxpblueTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::xpnativeTheme) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::getKdeConfigVal) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::makeKdeDirList) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::readKdeConfigVal) [list source [file join $dir tablelistThemes.tcl]]
set auto_index(::tablelist::destroyed) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::rowIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_rowIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::colIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::colIndex2) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::cellIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_cellIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustRowIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustColIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::nodeIndexToKey) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::depth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::topLevelKey) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::descCount) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::nodeRow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::keyToRow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_keyToRow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateKeyToRowMap) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::findTabs) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::sortStretchableColList) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColData) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColAttribs) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::deleteColSelStates) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColData) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColAttribs) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveColSelStates) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::condUpdateListVar) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::reconfigColLabels) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::charsToPixels) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::strRange) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustItem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::formatElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::formatItem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hasChars) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getListWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::joinList) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayIndent) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayImage) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::displayText) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getAuxData) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getIndentData) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getMaxTextWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustMlElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getElemWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertOrUpdateIndent) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::insertMlElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateCell) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateMlCell) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setImgLabelWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setImgLabelAnchor) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::appendComplexElem) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeColFontAndTagLists) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeSortAndArrowColLists) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::setupColumns) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createSeps) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustSepsWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustSeps) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getSepX) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustColumns) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustLabel) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::computeColWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::computeLabelWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustHeaderHeight) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::stretchColumnsWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::stretchColumns) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::moveActiveTag) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateColorsWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateColors) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_updateColorsWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_updateColors) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateScrlColOffsetWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateScrlColOffset) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateHScrlbarWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateHScrlbar) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateVScrlbarWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateVScrlbar) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::forceRedraw) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::workAroundAquaTkBugs) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::adjustElidedText) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_adjustElidedText) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplay) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayVisibleItems) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayColWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::redisplayCol) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeStripesWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeStripes) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::showLineNumbersWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::showLineNumbers) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateViewWhenIdle) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::updateView) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::purgeWidgets) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::synchronize) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getSublabels) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::parseLabelPath) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::configLabel) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createArrows) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::configCanvas) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::fillArrows) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getShadows) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::raiseArrow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::isHdrTxtFrXPosVisible) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getScrlContentWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getTitleColsWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getScrlWindowWidth) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getMaxScrlColOffset) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::changeScrlColOffset) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::scrlXOffsetToColOffset) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::scrlColOffsetToXOffset) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getVertComplTopRow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getVertComplBtmRow) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::getViewableRowCount) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::viewableRowOffsetToRowIndex) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_createCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::createTtkCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::hdr_createTtkCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::makeTtkCkbtn) [list source [file join $dir tablelistUtil.tcl]]
set auto_index(::tablelist::restoreScalingpct) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::createTileAliases) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::restrictCmdOpts) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::createBindings) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::tablelist) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::tablelistWidgetCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activateSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activatecellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::applysortingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::attribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::autoscrolltargetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bboxSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodypathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodytagSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cancelededitingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::canceleditingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellbboxSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellcgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellconfigureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellindexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellselectionSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childcountSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childindexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::childkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::collapseSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::collapseallSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columncgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnconfigureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columncountSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnindexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::columnwidthSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcelllistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcolumnlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configrowlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configrowsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::configureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingcellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cornerlabelpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cornerpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curcellselectionSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curselectionSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deletecolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::depthSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::descendantcountSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dicttoitemSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dumptofileSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dumptostringSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editcellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editinfoSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editwinpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::editwintagSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedcheckbuttonSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedcheckbuttonsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedttkcheckbuttonSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::embedttkcheckbuttonsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::entrypathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandallSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandedkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::fillcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::findcolumnnameSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::findrownameSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::finisheditingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::formatinfoSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getformattedcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getfullkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::getkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hasattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hascellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hascolumnattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hasrowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headerSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_bboxSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellbboxSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellcgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellconfigureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_cellindexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configcelllistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configrowlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_configrowsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_containingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_containingcellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_deleteSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedcheckbuttonSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedcheckbuttonsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedttkcheckbuttonSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_embedttkcheckbuttonsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_fillcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_findrownameSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedcellsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getformattedcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getfullkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_getkeysSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_hascellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_hasrowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_imagelabelpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_indexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_insertSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_insertlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_iselemsnippedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_itemlistvarSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_nearestSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_nearestcellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowcgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_rowconfigureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_sizeSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_unsetcellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_unsetrowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::header_windowpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headerpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::headertagSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hidetargetmarkSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::imagelabelpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::indexSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertchildlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertchildrenSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertcolumnlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertcolumnsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::iselemsnippedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::isexpandedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::istitlesnippedSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::isviewableSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::itemlistvarSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::itemtodictSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labeltagSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::labelwindowpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::loadfromfileSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::loadfromstringSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::moveSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::movecolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestcellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::nearestcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::noderowSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::parentkeySubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::refreshsortingSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rejectinputSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::resetsortinfoSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::restorecursorSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowcgetSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowconfigureSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::scanSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::searchcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seecellSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seecolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::selectionSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::separatorpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::separatorsSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::setbusycursorSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::showtargetmarkSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sizeSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortbycolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortbycolumnlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortcolumnSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortcolumnlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortorderSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::sortorderlistSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::stopautoscrollSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::targetmarkpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::targetmarkposSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::togglecolumnhideSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::togglerowhideSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::toplevelkeySubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetcellattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetcolumnattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::unsetrowattribSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::viewablerowcountSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::windowpathSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::xviewSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::yviewSubCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::cellSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::colWidth) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingRow) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_containingRow) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::containingCol) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curCellSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::curSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteRows) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_deleteRows) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::deleteCols) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertRows) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdr_insertRows) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::displayItems) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::insertCols) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::doScan) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::populate) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(doesMatch) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeRow) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeCell) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::rowSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::horizMoveTo) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::horizScrollByUnits) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::vertMoveTo) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::vertScrollByUnits) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::dragTo) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::seeTextIdx) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::updateIdletasksDelayed) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::updateIdletasks) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::hdrConfigure) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::bodyConfigure) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::fetchSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::lostSelection) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::activeTrace) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::listVarTrace) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::checkStatesTrace) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::populateCmd) [list source [file join $dir tablelistWidget.tcl]]
set auto_index(::tablelist::expandCmd) [list source [file join $dir tablelistWidget.tcl]]
Changes to modules/tablelist/tablelist.tcl.
1
2
3
4
5
6
7
8
9
10
11
12
13
#==============================================================================
# Main Tablelist package module.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require -exact tablelist::common 7.6

package provide tablelist $tablelist::version
package provide Tablelist $tablelist::version

tablelist::useTile 0
tablelist::createBindings






|






1
2
3
4
5
6
7
8
9
10
11
12
13
#==============================================================================
# Main Tablelist package module.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require -exact tablelist::common 7.7

package provide tablelist $tablelist::version
package provide Tablelist $tablelist::version

tablelist::useTile 0
tablelist::createBindings
Changes to modules/tablelist/tablelistCommon.tcl.
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    proc - {} { return [expr {$::tcl_version >= 8.5 ? "-" : ""}] }

    package require Tk 8.4[-]

    #
    # Public variables:
    #
    variable version	7.6
    variable library	[file dirname [file normalize [info script]]]

    #
    # Creates a new tablelist widget:
    #
    namespace export	tablelist








|







8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    proc - {} { return [expr {$::tcl_version >= 8.5 ? "-" : ""}] }

    package require Tk 8.4[-]

    #
    # Public variables:
    #
    variable version	7.7
    variable library	[file dirname [file normalize [info script]]]

    #
    # Creates a new tablelist widget:
    #
    namespace export	tablelist

Changes to modules/tablelist/tablelist_tile.tcl.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#==============================================================================
# Main Tablelist_tile package module.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require -exact tablelist::common 7.6

if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} {
    package require tile 0.6[tablelist::-]
}

package provide tablelist_tile $tablelist::version
package provide Tablelist_tile $tablelist::version






|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
#==============================================================================
# Main Tablelist_tile package module.
#
# Copyright (c) 2000-2025  Csaba Nemethi (E-mail: [email protected])
#==============================================================================

package require -exact tablelist::common 7.7

if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} {
    package require tile 0.6[tablelist::-]
}

package provide tablelist_tile $tablelist::version
package provide Tablelist_tile $tablelist::version