Skip to content

Commit e77e77d

Browse files
author
csaba
committed
* *.tcl: Bumped the version number to 5.17.
* COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl:
1 parent 3f3d328 commit e77e77d

22 files changed

+65
-49
lines changed

examples/tablelist/browse.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Demonstrates how to use a tablelist widget for displaying information about
33
# the children of an arbitrary widget.
44
#
5-
# Copyright (c) 2000-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

8-
package require tablelist 5.16
8+
package require tablelist 5.17
99

1010
namespace eval demo {
1111
variable dir [file dirname [info script]]

examples/tablelist/browseTree.tcl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# Demonstrates how to use a tablelist widget for displaying information about
33
# the children of an arbitrary widget.
44
#
5-
# Copyright (c) 2010-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2010-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

88
package require Tk 8.3
9-
package require tablelist 5.16
9+
package require tablelist 5.17
1010

1111
namespace eval demo {
1212
variable dir [file dirname [info script]]
@@ -55,7 +55,7 @@ proc demo::displayChildren w {
5555
set tbl $tf.tbl
5656
set vsb $tf.vsb
5757
tablelist::tablelist $tbl \
58-
-columns {0 "Path Name" left
58+
-columns {0 "Name" left
5959
0 "Class" left
6060
0 "X" right
6161
0 "Y" right
@@ -424,7 +424,7 @@ proc demo::restoreExpandedStates {tbl nodeIdx expandedWidgetsName} {
424424

425425
foreach key [$tbl childkeys $nodeIdx] {
426426
set pathName [$tbl rowattrib $key pathName]
427-
if {[info exists expandedWidgets($pathName)]} {
427+
if {[info exists expandedWidgets($)]} {
428428
$tbl expand $key -partly
429429
restoreExpandedStates $tbl $key expandedWidgets
430430
}

examples/tablelist/browseTree_tile.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Demonstrates how to use a tablelist widget for displaying information about
33
# the children of an arbitrary widget.
44
#
5-
# Copyright (c) 2010-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2010-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

8-
package require tablelist_tile 5.16
8+
package require tablelist_tile 5.17
99

1010
namespace eval demo {
1111
variable dir [file dirname [info script]]
@@ -61,7 +61,7 @@ proc demo::displayChildren w {
6161
set tbl $tf.tbl
6262
set vsb $tf.vsb
6363
tablelist::tablelist $tbl \
64-
-columns {0 "Path Name" left
64+
-columns {0 "Name" left
6565
0 "Class" left
6666
0 "X" right
6767
0 "Y" right

examples/tablelist/browse_tile.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Demonstrates how to use a tablelist widget for displaying information about
33
# children of an arbitrary widget.
44
#
5-
# Copyright (c) 2000-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

8-
package require tablelist_tile 5.16
8+
package require tablelist_tile 5.17
99

1010
namespace eval demo {
1111
variable dir [file dirname [info script]]

examples/tablelist/bwidget.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# widgets from the BWidget package and of the Tk core checkbutton and
66
# menubutton widgets.
77
#
8-
# Copyright (c) 2004-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
8+
# Copyright (c) 2004-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
99
#==============================================================================
1010

1111
package require Tk 8.4 ;# because of "-compound"
12-
package require tablelist 5.16
12+
package require tablelist 5.17
1313
package require BWidget
1414

1515
wm title . "Serial Line Configuration"

examples/tablelist/bwidget_tile.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# widgets from the BWidget package and of the Tk core checkbutton and
66
# menubutton widgets.
77
#
8-
# Copyright (c) 2004-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
8+
# Copyright (c) 2004-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
99
#==============================================================================
1010

11-
package require tablelist_tile 5.16
11+
package require tablelist_tile 5.17
1212
package require BWidget
1313

1414
wm title . "Serial Line Configuration"

examples/tablelist/config.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Demonstrates how to use a tablelist widget for displaying and editing the
33
# configuration options of an arbitrary widget.
44
#
5-
# Copyright (c) 2000-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

8-
package require tablelist 5.16
8+
package require tablelist 5.17
99

1010
namespace eval demo {
1111
#
@@ -36,7 +36,7 @@ namespace eval demo {
3636
catch {font create TkDefaultFont -family Helvetica -size -12}
3737

3838
option add *DemoTop*Font TkDefaultFont
39-
option add *DemoTop*selectBackground #678db2
39+
option add *DemoTop*selectBackground #5294e2
4040
option add *DemoTop*selectForeground white
4141
} else {
4242
option add *DemoTop.tf.borderWidth 1

examples/tablelist/config_tile.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Demonstrates how to use a tablelist widget for displaying and editing the
33
# configuration options of an arbitrary widget.
44
#
5-
# Copyright (c) 2000-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
5+
# Copyright (c) 2000-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
66
#==============================================================================
77

8-
package require tablelist_tile 5.16
8+
package require tablelist_tile 5.17
99

1010
namespace eval demo {
1111
#

examples/tablelist/dirViewer.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# Demonstrates how to use a tablelist widget for displaying the contents of a
55
# directory.
66
#
7-
# Copyright (c) 2010-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
7+
# Copyright (c) 2010-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
88
#==============================================================================
99

1010
package require Tk 8.3
11-
package require tablelist 5.16
11+
package require tablelist 5.17
1212

1313
#
1414
# Add some entries to the Tk option database

examples/tablelist/dirViewer_tile.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# Demonstrates how to use a tablelist widget for displaying the contents of a
55
# directory.
66
#
7-
# Copyright (c) 2010-2016 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
7+
# Copyright (c) 2010-2017 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
88
#==============================================================================
99

10-
package require tablelist_tile 5.16
10+
package require tablelist_tile 5.17
1111

1212
#
1313
# Add some entries to the Tk option database

0 commit comments

Comments
 (0)