Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * *.tcl: Bumped the version number to 1.5. * COPYRIGHT.txt: * README.txt: |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a24f98a154587bd998be30240557e193 |
User & Date: | csaba 2020-02-05 18:07:17.804 |
Context
2020-02-05
| ||
18:07 | * CHANGES.txt: Updated to reflect the changes. check-in: 81baf657e5 user: csaba tags: trunk | |
18:07 | * *.tcl: Bumped the version number to 1.5. * COPYRIGHT.txt: * README.txt: check-in: a24f98a154 user: csaba tags: trunk | |
18:06 | * *.tcl: Bumped the version number to 1.5. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * scripts/scrollarea.tcl: Improved the handling of the case that the scrollbar lock prevented a scrollbar of a scrollarea widget from being unmapped. * scripts/wheelEvent.tcl: Creating mouse wheel event class bindings for the Tk core scrollbar widget on Windows and X11, which are missing on these platforms when using a Tk version earlier than 8.6. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes; several improvements. * doc/ScrolledText.png: Added. * ../../examples/scrollutil/*.tcl: Several improvements. * ../../examples/scrollutil/ScrolledText.tcl: Added. check-in: 68e45df445 user: csaba tags: trunk | |
Changes
Changes to modules/scrollutil/COPYRIGHT.txt.
|
| | | 1 2 3 4 5 6 7 8 | Scrolling utilities package Scrollutil 1.5 Copyright (c) 2019-2020 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/scrollutil/README.txt.
︙ | ︙ | |||
38 39 40 41 42 43 44 | How to Get It? -------------- Scrollutil is available for free download from the Web page https://www.nemethi.de | | | | | | | | | | 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 | How to Get It? -------------- Scrollutil is available for free download from the Web page https://www.nemethi.de The distribution file is "scrollutil1.5.tar.gz" for UNIX and "scrollutil1_5.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. Scrollutil 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 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 Scrollutil on UNIX, "cd" to the desired directory and unpack the distribution file "scrollutil1.5.tar.gz": gunzip -c scrollutil1.5.tar.gz | tar -xf - On most UNIX systems this can be replaced with tar -zxf scrollutil1.5.tar.gz Both commands will create a directory named "scrollutil1.5", with the subdirectories "demos", "doc", and "scripts". On Windows, use WinZip or some other program capable of unpacking the distribution file "scrollutil1_5.zip" into the directory "scrollutil1.5", with the subdirectories "demos", "doc", and "scripts". How to Use It? -------------- The Scrollutil distribution provides two packages, called Scrollutil and Scrollutil_tile. The main difference between the two is that Scrollutil_tile enables the tile-based, theme-specific appearance of |
︙ | ︙ |
Changes to modules/scrollutil/pkgIndex.tcl.
1 2 3 4 5 6 7 8 9 | #============================================================================== # Scrollutil and Scrollutil_tile package index file. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== # # Regular packages: # | | | | | | | | | 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 | #============================================================================== # Scrollutil and Scrollutil_tile package index file. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== # # Regular packages: # package ifneeded scrollutil 1.5 \ [list source [file join $dir scrollutil.tcl]] package ifneeded scrollutil_tile 1.5 \ [list source [file join $dir scrollutil_tile.tcl]] # # Aliases: # package ifneeded Scrollutil 1.5 \ [list package require -exact scrollutil 1.5] package ifneeded Scrollutil_tile 1.5 \ [list package require -exact scrollutil_tile 1.5] # # Code common to all packages: # package ifneeded scrollutil::common 1.5 \ [list source [file join $dir scrollutilCommon.tcl]] |
Changes to modules/scrollutil/scrollutil.tcl.
1 2 3 4 5 6 | #============================================================================== # Main Scrollutil package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #============================================================================== # Main Scrollutil package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== package require -exact scrollutil::common 1.5 package provide scrollutil $::scrollutil::version package provide Scrollutil $::scrollutil::version ::scrollutil::useTile 0 ::scrollutil::sa::createBindings |
︙ | ︙ |
Changes to modules/scrollutil/scrollutilCommon.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 | #============================================================================== # Main Scrollutil and Scrollutil_tile package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== package require Tk 8 namespace eval ::scrollutil { # # Public variables: # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #============================================================================== # Main Scrollutil and Scrollutil_tile package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== package require Tk 8 namespace eval ::scrollutil { # # Public variables: # variable version 1.5 variable library if {$::tcl_version >= 8.4} { set library [file dirname [file normalize [info script]]] } else { set library [file dirname [info script]] ;# no "file normalize" yet } |
︙ | ︙ |
Changes to modules/scrollutil/scrollutil_tile.tcl.
1 2 3 4 5 6 7 8 9 10 | #============================================================================== # Main Scrollutil_tile package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== package require Tk 8.4 if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} { package require tile 0.6 } | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #============================================================================== # Main Scrollutil_tile package module. # # Copyright (c) 2019-2020 Csaba Nemethi (E-mail: [email protected]) #============================================================================== 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 scrollutil::common 1.5 package provide scrollutil_tile $::scrollutil::version package provide Scrollutil_tile $::scrollutil::version ::scrollutil::useTile 1 ::scrollutil::sa::createBindings |
︙ | ︙ |