• ANNOUNCE: Multi-column listbox and tree widget package Tablelist 7.8

    From nemethi@csaba.nemethi@t-online.de to comp.lang.tcl on Wed Oct 22 12:08:37 2025
    From Newsgroup: comp.lang.tcl

    I am pleased to announce version 7.8 of the multi-column listbox and
    tree widget package Tablelist.

    What is new in Tablelist 7.8?
    -----------------------------

    1. Support for interactive cell editing with the aid of the
    ttk::toggleswitch widget (which was added to the core in Tk 9.1a1).

    2. The Tablelist distribution now includes the new wide spinbox package
    wsb, which implements the Wide.TSpinbox layout having scaling-aware
    up and down arrows of user-friendly size and placement, which comes
    in handy especially when running AndroWish on a tablet or smartphone.

    3. Improvements related to the interactive cell editing with the aid of
    the Tk core checkbutton and ttk::checkbutton widgets.

    4. The demo script "tileWidgets2.tcl" now uses the ttk::toggleswitch
    rather than tsw::toggleswitch widget if available, and also makes use
    of the wsb package. See the "Tile-Based Demo Scripts" section of
    Tablelist Programmer's Guide for details.

    How to get it?
    --------------

    Tablelist is available for free download from the URL

    https://www.nemethi.de

    The distribution file is "tablelist7.8.tar.gz" for UNIX and
    "tablelist7_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 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.8.tar.gz":

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

    On most UNIX systems this can be replaced with

    tar -zxf tablelist7.8.tar.gz

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

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

    How to use it?
    --------------

    The Tablelist distribution provides two packages, called Tablelist and Tablelist_tile. The main difference between the two is that
    Tablelist_tile enables the tile-based, theme-specific appearance of
    tablelist widgets; this package requires tile 0.6 or higher. It is not possible to use both packages in one and the same application, because
    both are implemented in the same "tablelist" namespace and provide
    identical commands.

    To be able to access the commands and variables of the Tablelist
    package, your scripts must contain one of the lines

    package require tablelist ?version?
    package require Tablelist ?version?

    Likewise, to be able to access the commands and variables of the
    Tablelist_tile package, your scripts must contain one of the lines

    package require tablelist_tile ?version?
    package require Tablelist_tile ?version?

    Since the packages Tablelist and Tablelist_tile are implemented in the "tablelist" namespace, you must either import the procedures you need,
    or use qualified names like "tablelist::tablelist".

    For a detailed description of the commands and variables provided by
    Tablelist and of the examples contained in the "demos" directory, see
    the tutorial "tablelist.html" and the reference pages, all located in
    the "doc" directory.
    --
    Csaba Nemethi https://www.nemethi.de mailto:csaba.nemethi@t-online.de

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Harald Oehlmann@wortkarg3@yahoo.com to comp.lang.tcl on Wed Oct 22 12:35:00 2025
    From Newsgroup: comp.lang.tcl

    Great !
    I will try the scaled spinbox.
    So, the boxes don't get ridiciously tiny any more if big scales/fonts
    are used?

    Great. We need this in tk core !

    Thanks,
    Harald

    Am 22.10.2025 um 12:08 schrieb nemethi:
    I am pleased to announce version 7.8 of the multi-column listbox and
    tree widget package Tablelist.

    What is new in Tablelist 7.8?
    -----------------------------

    1. Support for interactive cell editing with the aid of the
       ttk::toggleswitch widget (which was added to the core in Tk 9.1a1).

    2. The Tablelist distribution now includes the new wide spinbox package
       wsb, which implements the Wide.TSpinbox layout having scaling-aware
       up and down arrows of user-friendly size and placement, which comes
       in handy especially when running AndroWish on a tablet or smartphone.

    3. Improvements related to the interactive cell editing with the aid of
       the Tk core checkbutton and ttk::checkbutton widgets.

    4. The demo script "tileWidgets2.tcl" now uses the ttk::toggleswitch
       rather than tsw::toggleswitch widget if available, and also makes use
       of the wsb package.  See the "Tile-Based Demo Scripts" section of
       Tablelist Programmer's Guide for details.

    How to get it?
    --------------

    Tablelist is available for free download from the URL

        https://www.nemethi.de

    The distribution file is "tablelist7.8.tar.gz" for UNIX and "tablelist7_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 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.8.tar.gz":

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

    On most UNIX systems this can be replaced with

        tar -zxf tablelist7.8.tar.gz

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

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

    How to use it?
    --------------

    The Tablelist distribution provides two packages, called Tablelist and Tablelist_tile.  The main difference between the two is that
    Tablelist_tile enables the tile-based, theme-specific appearance of
    tablelist widgets; this package requires tile 0.6 or higher.  It is not possible to use both packages in one and the same application, because
    both are implemented in the same "tablelist" namespace and provide
    identical commands.

    To be able to access the commands and variables of the Tablelist
    package, your scripts must contain one of the lines

        package require tablelist ?version?
        package require Tablelist ?version?

    Likewise, to be able to access the commands and variables of the Tablelist_tile package, your scripts must contain one of the lines

        package require tablelist_tile ?version?
        package require Tablelist_tile ?version?

    Since the packages Tablelist and Tablelist_tile are implemented in the "tablelist" namespace, you must either import the procedures you need,
    or use qualified names like "tablelist::tablelist".

    For a detailed description of the commands and variables provided by Tablelist and of the examples contained in the "demos" directory, see
    the tutorial "tablelist.html" and the reference pages, all located in
    the "doc" directory.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From nemethi@csaba.nemethi@t-online.de to comp.lang.tcl on Wed Oct 22 13:20:59 2025
    From Newsgroup: comp.lang.tcl

    Am 22.10.25 um 12:35 schrieb Harald Oehlmann:
    Great !
    I will try the scaled spinbox.
    So, the boxes don't get ridiciously tiny any more if big scales/fonts
    are used?

    Great. We need this in tk core !

    Thanks,
    Harald

    Am 22.10.2025 um 12:08 schrieb nemethi:
    I am pleased to announce version 7.8 of the multi-column listbox and
    tree widget package Tablelist.

    What is new in Tablelist 7.8?
    -----------------------------

    1. Support for interactive cell editing with the aid of the
        ttk::toggleswitch widget (which was added to the core in Tk 9.1a1). >>
    2. The Tablelist distribution now includes the new wide spinbox package
        wsb, which implements the Wide.TSpinbox layout having scaling-aware >>     up and down arrows of user-friendly size and placement, which comes >>     in handy especially when running AndroWish on a tablet or smartphone. >>
    3. Improvements related to the interactive cell editing with the aid of
        the Tk core checkbutton and ttk::checkbutton widgets.

    4. The demo script "tileWidgets2.tcl" now uses the ttk::toggleswitch
        rather than tsw::toggleswitch widget if available, and also makes use >>     of the wsb package.  See the "Tile-Based Demo Scripts" section of
        Tablelist Programmer's Guide for details.

    How to get it?
    --------------

    Tablelist is available for free download from the URL

         https://www.nemethi.de

    The distribution file is "tablelist7.8.tar.gz" for UNIX and
    "tablelist7_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 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.8.tar.gz":

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

    On most UNIX systems this can be replaced with

         tar -zxf tablelist7.8.tar.gz

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

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

    How to use it?
    --------------

    The Tablelist distribution provides two packages, called Tablelist and
    Tablelist_tile.  The main difference between the two is that
    Tablelist_tile enables the tile-based, theme-specific appearance of
    tablelist widgets; this package requires tile 0.6 or higher.  It is not
    possible to use both packages in one and the same application, because
    both are implemented in the same "tablelist" namespace and provide
    identical commands.

    To be able to access the commands and variables of the Tablelist
    package, your scripts must contain one of the lines

         package require tablelist ?version?
         package require Tablelist ?version?

    Likewise, to be able to access the commands and variables of the
    Tablelist_tile package, your scripts must contain one of the lines

         package require tablelist_tile ?version?
         package require Tablelist_tile ?version?

    Since the packages Tablelist and Tablelist_tile are implemented in the
    "tablelist" namespace, you must either import the procedures you need,
    or use qualified names like "tablelist::tablelist".

    For a detailed description of the commands and variables provided by
    Tablelist and of the examples contained in the "demos" directory, see
    the tutorial "tablelist.html" and the reference pages, all located in
    the "doc" directory.



    The main benefit of the Wide.TSpinbox layout is related to the size of
    its up and down arrows. The arrows of the default TSpinbox layout are
    so small that it is nearly impossible to "click" them via a one-finger
    gesture when running AndroWish.
    --
    Csaba Nemethi https://www.nemethi.de mailto:csaba.nemethi@t-online.de
    --- Synchronet 3.21a-Linux NewsLink 1.2