Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * *.tcl: Bumped the version number to 5.8. * COPYRIGHT.txt: * README.txt: |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a0c83b46d2194f8a6436dfe1813186f |
User & Date: | csaba 2013-04-13 18:33:15 |
Context
2013-04-13
| ||
18:34 | * scripts/*.tcl: Support for interactive cell editing with the aid of the ctext widget; added the "canceledediting" subcommand; sped up the "selection" and "cellselection" subcommands by orders of magnitude; significally reduced the performance penalty imposed by the "-(select)background" and "-(select)foreground options at column, row, and cell levels; improved the keyboard traversal during interactive cell editing; using the "-data" option for most virtual events; improvements related to the selection mode "extended"; further code improvements; eliminated a regression introduced in Tablelist 5.6, related to vertical scrolling under Tk 8.5 or later in the presence of embedded images or windows. check-in: 3661737db3 user: csaba tags: trunk | |
18:33 | * *.tcl: Bumped the version number to 5.8. * COPYRIGHT.txt: * README.txt: check-in: 3a0c83b46d user: csaba tags: trunk | |
18:27 | * *.tcl: Bumped the version number to 5.8. * COPYRIGHT.txt: * README.txt: * scripts/*.tcl: Support for interactive cell editing with the aid of the ctext widget; added the "canceledediting" subcommand; sped up the "selection" and "cellselection" subcommands by orders of magnitude; significally reduced the performance penalty imposed by the "-(select)background" and "-(select)foreground options at column, row, and cell levels; improved the keyboard traversal during interactive cell editing; using the "-data" option for most virtual events; improvements related to the selection mode "extended"; further code improvements; eliminated a regression introduced in Tablelist 5.6, related to vertical scrolling under Tk 8.5 or later in the presence of embedded images or windows. * scripts/tclIndex: Newly generated. * ../../examples/*.tcl: Bumped the version number to 5.8. * CHANGES.txt: Updated to reflect the changes. * doc/*.html: Added a "Virtual Events" section to the reference manual; updated to reflect the changes. check-in: ee4daec4fd user: csaba tags: trunk | |
Changes
Changes to modules/tablelist/COPYRIGHT.txt.
|
| | | | 1 2 3 4 5 6 7 8 9 | Multi-column listbox and tree widget package Tablelist, version 5.8 Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) 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. This software is distributed WITHOUT ANY WARRANTY; without even the |
︙ | ︙ |
Changes to modules/tablelist/README.txt.
︙ | ︙ | |||
52 53 54 55 56 57 58 | The Tablelist package provides a great variety of tree styles controlling the look & feel of the column that displays the tree hierarchy with the aid of indentations and expand/collapse controls. Interactive editing of the elements of a tablelist widget can be enabled for individual cells and for entire columns. A great variety of widgets from the Tk core and from the packages tile, BWidget, | | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | The Tablelist package provides a great variety of tree styles controlling the look & feel of the column that displays the tree hierarchy with the aid of indentations and expand/collapse controls. Interactive editing of the elements of a tablelist widget can be enabled for individual cells and for entire columns. A great variety of widgets from the Tk core and from the packages tile, BWidget, Iwidgets, combobox, ctext, and Mentry (or Mentry_tile) is supported for being used as embedded edit window. In addition, a rich set of keyboard bindings is provided for a comfortable navigation between the editable cells. The Tcl command corresponding to a tablelist widget is very similar to the one associated with a normal listbox. There are column-, row-, and cell-specific counterparts of the "configure" and "cget" subcommands ("columnconfigure", "rowconfigure", "cellconfigure", ...). They can be |
︙ | ︙ | |||
84 85 86 87 88 89 90 | http://www.nemethi.de How to get it? -------------- Tablelist is available for free download from the same URL as Wcb. The | | | | | | | | | 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 | http://www.nemethi.de How to get it? -------------- Tablelist is available for free download from the same URL as Wcb. The distribution file is "tablelist5.8.tar.gz" for UNIX and "tablelist5_8.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 hosted on SourceForge, as part of tklib, which in turn is contained in the tcllib project, having the address http://sourceforge.net/projects/tcllib 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 directory at the same level as the Tcl and Tk script libraries. The locations of these library directories are given by the "tcl_library" and "tk_library" variables, respectively. To install Tablelist on UNIX, "cd" to the desired directory and unpack the distribution file "tablelist5.8.tar.gz": gunzip -c tablelist5.8.tar.gz | tar -xf - This command will create a directory named "tablelist5.8", with the subdirectories "demos", "doc", and "scripts". On Windows, use WinZip or some other program capable of unpacking the distribution file "tablelist5_8.zip" into the directory "tablelist5.8", 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/pkgIndex.tcl.
1 2 3 | #============================================================================== # Tablelist and Tablelist_tile package index file. # | | | | | | | | | | 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 | #============================================================================== # Tablelist and Tablelist_tile package index file. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== # # Regular packages: # package ifneeded tablelist 5.8 \ [list source [file join $dir tablelist.tcl]] package ifneeded tablelist_tile 5.8 \ [list source [file join $dir tablelist_tile.tcl]] # # Aliases: # package ifneeded Tablelist 5.8 \ [list package require -exact tablelist 5.8] package ifneeded Tablelist_tile 5.8 \ [list package require -exact tablelist_tile 5.8] # # Code common to all packages: # package ifneeded tablelist::common 5.8 \ "namespace eval ::tablelist { proc DIR {} {return [list $dir]} } ;\ source [list [file join $dir tablelistPublic.tcl]]" |
Changes to modules/tablelist/tablelist.tcl.
1 2 3 | #============================================================================== # Main Tablelist package module. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #============================================================================== # Main Tablelist package module. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tcl 8 package require Tk 8 package require -exact tablelist::common 5.8 package provide tablelist $::tablelist::version package provide Tablelist $::tablelist::version ::tablelist::useTile 0 ::tablelist::createBindings |
Changes to modules/tablelist/tablelistPublic.tcl.
1 2 3 | #============================================================================== # Main Tablelist and Tablelist_tile package module. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #============================================================================== # Main Tablelist and Tablelist_tile package module. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== namespace eval ::tablelist { # # Public variables: # variable version 5.8 variable library [DIR] # # Creates a new tablelist widget: # namespace export tablelist |
︙ | ︙ | |||
28 29 30 31 32 33 34 | # # Register various widgets for interactive cell editing: # namespace export addBWidgetEntry addBWidgetSpinBox addBWidgetComboBox namespace export addIncrEntryfield addIncrDateTimeWidget \ addIncrSpinner addIncrSpinint addIncrCombobox | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | # # Register various widgets for interactive cell editing: # namespace export addBWidgetEntry addBWidgetSpinBox addBWidgetComboBox namespace export addIncrEntryfield addIncrDateTimeWidget \ addIncrSpinner addIncrSpinint addIncrCombobox namespace export addCtext addOakleyCombobox namespace export addDateMentry addTimeMentry addDateTimeMentry \ addFixedPointMentry addIPAddrMentry addIPv6AddrMentry } package provide tablelist::common $::tablelist::version # |
︙ | ︙ |
Changes to modules/tablelist/tablelist_tile.tcl.
1 2 3 | #============================================================================== # Main Tablelist_tile package module. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #============================================================================== # Main Tablelist_tile package module. # # Copyright (c) 2000-2013 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de) #============================================================================== package require Tcl 8.4 package require Tk 8.4 if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} { package require tile 0.6 } package require -exact tablelist::common 5.8 package provide tablelist_tile $::tablelist::version package provide Tablelist_tile $::tablelist::version ::tablelist::useTile 1 ::tablelist::createBindings |
︙ | ︙ |