Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | * ../../examples/*.tcl: Bumped the version number to 5.8. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | e1ee5b45d264200df1dcf3d3a2e421e4b4f11f7c |
User & Date: | csaba 2013-04-13 18:40:58 |
2013-04-14
| ||
10:09 | * scripts/tablelistUtil.tcl: Minor optimization. check-in: 8f3ac1c00c user: csaba tags: trunk | |
2013-04-13
| ||
18:40 | * ../../examples/*.tcl: Bumped the version number to 5.8. check-in: e1ee5b45d2 user: csaba tags: trunk | |
18:39 | * doc/*.html: Added a "Virtual Events" section to the reference manual; updated to reflect the changes. check-in: 2f912ce041 user: csaba tags: trunk | |
Changes to examples/tablelist/browse.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2000-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.7 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.8 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
Changes to examples/tablelist/browseTree.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2010-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.3 package require tablelist 5.7 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2010-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.3 package require tablelist 5.8 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
Changes to examples/tablelist/browseTree_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2010-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # the children of an arbitrary widget. # # Copyright (c) 2010-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
Changes to examples/tablelist/browse_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # children of an arbitrary widget. # # Copyright (c) 2000-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying information about # children of an arbitrary widget. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 namespace eval demo { variable dir [file dirname [info script]] # # Create two images, needed in the procedure putChildren # |
Changes to examples/tablelist/bwidget.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the BWidget package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" package require tablelist 5.7 package require BWidget wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the BWidget package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" package require tablelist 5.8 package require BWidget wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
Changes to examples/tablelist/bwidget_tile.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the BWidget package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 package require BWidget wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the BWidget package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 package require BWidget wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
Changes to examples/tablelist/config.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying and editing the # configuration options of an arbitrary widget. # # Copyright (c) 2000-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.7 namespace eval demo { # # Get the current windowing system ("x11", "win32", "classic", or "aqua") # and add some entries to the Tk option database for the following # widget hierarchy within a top-level widget of the class DemoTop: # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying and editing the # configuration options of an arbitrary widget. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.8 namespace eval demo { # # Get the current windowing system ("x11", "win32", "classic", or "aqua") # and add some entries to the Tk option database for the following # widget hierarchy within a top-level widget of the class DemoTop: # |
Changes to examples/tablelist/config_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying and editing the # configuration options of an arbitrary widget. # # Copyright (c) 2000-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 namespace eval demo { # # Get the current windowing system ("x11", "win32", or "aqua") # and add some entries to the Tk option database for the following # widget hierarchy within a top-level widget of the class DemoTop: # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#============================================================================== # Demonstrates how to use a tablelist widget for displaying and editing the # configuration options of an arbitrary widget. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 namespace eval demo { # # Get the current windowing system ("x11", "win32", or "aqua") # and add some entries to the Tk option database for the following # widget hierarchy within a top-level widget of the class DemoTop: # |
Changes to examples/tablelist/dirViewer.tcl.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates how to use a tablelist widget for displaying the contents of a # directory. # # Copyright (c) 2010-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.3 package require tablelist 5.7 # # Add some entries to the Tk option database # set dir [file dirname [info script]] source [file join $dir option.tcl] |
| | |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates how to use a tablelist widget for displaying the contents of a # directory. # # Copyright (c) 2010-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.3 package require tablelist 5.8 # # Add some entries to the Tk option database # set dir [file dirname [info script]] source [file join $dir option.tcl] |
Changes to examples/tablelist/dirViewer_tile.tcl.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates how to use a tablelist widget for displaying the contents of a # directory. # # Copyright (c) 2010-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 # # Add some entries to the Tk option database # set dir [file dirname [info script]] source [file join $dir option_tile.tcl] |
| | |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates how to use a tablelist widget for displaying the contents of a # directory. # # Copyright (c) 2010-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 # # Add some entries to the Tk option database # set dir [file dirname [info script]] source [file join $dir option_tile.tcl] |
Changes to examples/tablelist/embeddedWindows.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the use of embedded windows in tablelist widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.7 wm title . "Tk Library Scripts" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the use of embedded windows in tablelist widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.8 wm title . "Tk Library Scripts" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |
Changes to examples/tablelist/embeddedWindows_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the use of embedded windows in tablelist widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 wm title . "Tile Library Scripts" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the use of embedded windows in tablelist widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 wm title . "Tile Library Scripts" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |
Changes to examples/tablelist/images.tcl.
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Creates some images.
#
# Copyright (c) 2011-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Create two images, to be displayed in tablelist cells with boolean values
#
image create photo checkedImg -file [file join $dir checked.gif]
image create photo uncheckedImg -file [file join $dir unchecked.gif]
|
| |
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Creates some images.
#
# Copyright (c) 2011-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Create two images, to be displayed in tablelist cells with boolean values
#
image create photo checkedImg -file [file join $dir checked.gif]
image create photo uncheckedImg -file [file join $dir unchecked.gif]
|
Changes to examples/tablelist/iwidgets.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the Iwidgets package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" package require tablelist 5.7 package require Iwidgets wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the Iwidgets package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" package require tablelist 5.8 package require Iwidgets wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
Changes to examples/tablelist/iwidgets_tile.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the Iwidgets package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 package require Iwidgets wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the Iwidgets package and of the Tk core checkbutton and # menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 package require Iwidgets wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # |
Changes to examples/tablelist/miscWidgets.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of Bryan # Oakley's combobox, the mentry widgets of type "Date" and "Time", and of the # Tk core entry, spinbox, checkbutton, and menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" and the spinbox widget package require tablelist 5.7 package require combobox package require mentry wm title . "Serial Line Configuration" # # Add some entries to the Tk option database |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of Bryan # Oakley's combobox, the mentry widgets of type "Date" and "Time", and of the # Tk core entry, spinbox, checkbutton, and menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tk 8.4 ;# because of "-compound" and the spinbox widget package require tablelist 5.8 package require combobox package require mentry wm title . "Serial Line Configuration" # # Add some entries to the Tk option database |
Changes to examples/tablelist/miscWidgets_tile.tcl.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of Bryan # Oakley's combobox, the mentry widgets of type "Date" and "Time", and of the # Tk core entry, spinbox, checkbutton, and menubutton widgets. # # Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 package require combobox package require mentry wm title . "Serial Line Configuration" # # Add some entries to the Tk option database |
| | |
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of Bryan # Oakley's combobox, the mentry widgets of type "Date" and "Time", and of the # Tk core entry, spinbox, checkbutton, and menubutton widgets. # # Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 package require combobox package require mentry wm title . "Serial Line Configuration" # # Add some entries to the Tk option database |
Changes to examples/tablelist/option.tcl.
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Contains some Tk option database settings.
#
# Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Get the current windowing system ("x11", "win32", "classic", or "aqua")
#
if {[catch {tk windowingsystem} winSys] != 0} {
switch $::tcl_platform(platform) {
|
| |
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Contains some Tk option database settings.
#
# Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Get the current windowing system ("x11", "win32", "classic", or "aqua")
#
if {[catch {tk windowingsystem} winSys] != 0} {
switch $::tcl_platform(platform) {
|
Changes to examples/tablelist/option_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Contains some Tk option database settings.
#
# Copyright (c) 2004-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Get the current windowing system ("x11", "win32", or
# "aqua") and add some entries to the Tk option database
#
if {[tk windowingsystem] eq "x11"} {
|
| |
1 2 3 4 5 6 7 8 9 10 11 |
#==============================================================================
# Contains some Tk option database settings.
#
# Copyright (c) 2004-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
#==============================================================================
#
# Get the current windowing system ("x11", "win32", or
# "aqua") and add some entries to the Tk option database
#
if {[tk windowingsystem] eq "x11"} {
|
Changes to examples/tablelist/styles.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates some ways of improving the look & feel of a tablelist widget. # # Copyright (c) 2002-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.7 wm title . "Tablelist Styles" # # Get the current windowing system ("x11", "win32", "classic", # or "aqua") and 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 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates some ways of improving the look & feel of a tablelist widget. # # Copyright (c) 2002-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist 5.8 wm title . "Tablelist Styles" # # Get the current windowing system ("x11", "win32", "classic", # or "aqua") and add some entries to the Tk option database # |
Changes to examples/tablelist/styles_tile.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates some ways of improving the look & feel of a tablelist widget. # # Copyright (c) 2002-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 wm title . "Tablelist Styles" # # Improve the window's appearance by using a tile # frame as a container for the other widgets # |
| | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh # the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates some ways of improving the look & feel of a tablelist widget. # # Copyright (c) 2002-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 wm title . "Tablelist Styles" # # Improve the window's appearance by using a tile # frame as a container for the other widgets # |
Changes to examples/tablelist/tileWidgets.tcl.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the tile package and of the Tk core spinbox widget. # # Copyright (c) 2005-2012 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.7 wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |
| | |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the next line restarts using wish \ exec wish "$0" ${1+"$@"} #============================================================================== # Demonstrates the interactive tablelist cell editing with the aid of some # widgets from the tile package and of the Tk core spinbox widget. # # Copyright (c) 2005-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require tablelist_tile 5.8 wm title . "Serial Line Configuration" # # Add some entries to the Tk option database # set dir [file dirname [info script]] |