Tk Library Source Code

Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

1014 check-ins using file examples/plotchart/plotdemos7.tcl version 6541c93ab1

2023-09-12
16:57
Tests for widgetPlus, adapted to Tcl 8.6. check-in: 986d50104d user: kjnash tags: tklib_9a
12:31
Tests for widgetPlus, adapted to Tcl 8.7. check-in: 4efb0f5b74 user: kjnash tags: tklib_9a
07:54
Base tests for widgetPlus on tests from current Tk trunk, with revisions. Tests pass for Tcl 9. check-in: f842be426c user: kjnash tags: tklib_9a
07:31
Create new branch named "tklib_9a" check-in: 55cff7b829 user: kjnash tags: tklib_9a
2023-09-05
01:22
Version fix in installer.tcl check-in: 7a144742d9 user: kevin_walzer tags: trunk
00:36
Fix errors in Tk versioning, thanks to Emiliano Gavilan for patch check-in: 5eb3de502c user: kevin_walzer tags: trunk
2023-09-03
01:35
Updates for Tcl 9 compatibility check-in: 42c8f65bd8 user: kevin_walzer tags: trunk
2023-08-13
11:35
Correct the scaling for windrose plots (ticket 8df371ba8e). Version number is now 2.6.1 check-in: abcaa2b604 user: markus tags: trunk
2023-07-23
16:19
Update Tklib for Tcl 9.0 / Tk 8.7: First round. Leaf check-in: c488ac8ed9 user: stu tags: stu-tklibfortcl9
2023-07-22
02:09
Move Tcl 9 updates out of trunk check-in: 5800f6b50d user: kevin_walzer tags: trunk
2023-07-03
12:29
Released Mentry 3.18. check-in: 629d26b529 user: csaba tags: trunk
12:28
Released Scrollutil 1.19. check-in: e6667d941f user: csaba tags: trunk
12:26
Released Tablelist 6.22. check-in: a5775f51ac user: csaba tags: trunk
2023-06-29
09:02
Mentry: Updated for version 3.18. See the ChangeLog for details. check-in: bad24d3f57 user: csaba tags: trunk
08:56
ChangeLog for mentry: Updated for version 3.18. check-in: 236754e617 user: csaba tags: trunk
08:07
Scrollutil: Updated for version 1.19. See the ChangeLog for details. check-in: 3ef8fe657f user: csaba tags: trunk
08:05
ChangeLog for scrollutil: Updated for version 1.19. check-in: cf05a6206d user: csaba tags: trunk
2023-06-28
17:03
Tablelist: Updated for version 6.22. See the ChangeLog for details. check-in: 807b670f48 user: csaba tags: trunk
16:56
ChangeLog for tablelist: Updated for version 6.22. check-in: b790850d79 user: csaba tags: trunk
2023-05-29
14:08
Implement the violin subcommand and the plotting of dendrograms check-in: f8eefc89f6 user: markus tags: trunk
2023-03-20
09:53
Released Mentry 3.17. check-in: b628a83959 user: csaba tags: trunk
09:51
Released Scrollutil 1.18. check-in: 4597e113b6 user: csaba tags: trunk
09:47
Released Tablelist 6.21. check-in: 79046b7896 user: csaba tags: trunk
2023-03-19
16:09
Solve the issue with the legend for the right axis as reported by Markus Freiberg (eb4101adc5). His patch had a small flaw though, so I constructed another solution. check-in: a3d09f8027 user: markus tags: trunk
2023-03-18
19:36
Procedure mwutil::getAncestorByClass significantly enhanced. check-in: a0a0f7a8b4 user: csaba tags: trunk
2023-03-17
20:52
Updated the file support/installation/actions.tcl. check-in: 54b70463cb user: csaba tags: trunk
10:45
Mentry: Updated for version 3.17. See the ChangeLog for details. check-in: df23da1bb1 user: csaba tags: trunk
10:43
ChangeLog for mentry: Updated for version 3.17. check-in: a65570b9bf user: csaba tags: trunk
10:33
Scrollutil: Updated for version 1.18. See the ChangeLog for details. check-in: 4755270fab user: csaba tags: trunk
10:27
ChangeLog for scrollutil: Updated for version 1.18. check-in: 0b59189c33 user: csaba tags: trunk
10:17
Tablelist: Updated for version 6.21. See the ChangeLog for details. check-in: 97989e811c user: csaba tags: trunk
10:04
ChangeLog for tablelist: Updated for version 6.21. check-in: ac3bae76a9 user: csaba tags: trunk
2023-01-06
16:52
fix: mishandling of locking when center is not defined yet check-in: 8ec6486cee user: aku tags: trunk
16:51
fix: comment typo check-in: ff3eda55dd user: aku tags: trunk
16:50
fix: mishandling of unnamed things check-in: 6f121fc7e7 user: aku tags: trunk
2023-01-05
21:36
chore: remove scratch notes check-in: 9cfe1417de user: aku tags: trunk
21:25
demo point clustering, cluster points in map display chore: updated demo apps affected by API changes in the point mem store constructor feat: reworked default cluster style of map point display, enabled showing the cluster size, when present feat: reworked point mem store to perform point clustering (on construction) note: store/display interaction - The display does not know about clusters versus points, except in styling. The store does __zoom-level dependent__ visibility checking, and knows for each level which clusters and locations are relevant. This removes the need for any kind of complex compression logic in the display. From its point of view it has a simple set of points to show, like all the other displays just show sets of tracks, etc. For the other stores it just happens that the set of items to show is not dependent on the zoom level, and compression/simpification is per item, instead of across them note: No clustering ahead of time. The clustering is a simple greedy algorithm. Likely O(n**2). No boost through data structures for spatial indexing (rtree, ...). No boost through making use of the zoom hierarchy (i.e. no clustering the clusters from the previous deeper zoom level, always from the raw points). Overall good enough for demoing the principles. For higher perf write a new store and supporting apps making use of ahead-of-time construction, hierarchical optimization, spatial indices, etc. check-in: ee753081e0 user: aku tags: trunk
2023-01-03
21:36
map demo layers: checkbuttons for selective display; added point display check-in: 7360564fe5 user: aku tags: trunk
20:13
fix typo of config option in rectangle editor check-in: bcac690c98 user: aku tags: trunk
19:15
fix issue introduced by commit [4883607147]. the fix for late processing of construction options moved them to early, and got then undone by the default settings for the data and create callbacks :( moved things again check-in: 6d87728bc7 user: aku tags: trunk
2022-12-15
20:21
Added missing README explaining the basic behaviours of the map demo applications check-in: a4a3dd03b7 user: aku tags: trunk
19:06
Integrated branch `canvas-edit-and-map` providing updates to the `canvas::edit::*` packages, and a new set of `map::*` packages demonstrating display of tiled maps with additional elements (areas, tracks (paths), boxes, and points) Regenerated docs (crosshair, tklib updates) check-in: 76668aeace user: aku tags: trunk
19:01
crosshair - Ticket [def37f133e] - Fix missing save of crosshair state when hiding. Version bumped to 1.2.1 With thanks to [email protected] for the report. Closed-Leaf check-in: f749f0c077 user: aku tags: canvas-edit-and-map
2022-12-14
21:41
more map work feat: basic point/feature display - no clustering chore: whitespace trimming check-in: 5b58f0634e user: aku tags: canvas-edit-and-map
21:40
fix: late processing of construction options check-in: 4883607147 user: aku tags: canvas-edit-and-map
2022-12-13
19:55
more map work fix: box reader result tweak: whitespace feat: draft multi-layer display check-in: e9b320561d user: aku tags: canvas-edit-and-map
2022-12-09
21:44
feat: continued work on map ... area, track support (display, entry, read, write, demo apps) ... "proper" geo file formats, in a sense, very raw reader/writer functions (validating readers) more example data (areas, tracks) to feed the demo apps beware: requires commit 6a73e00660 (branch: map-slippy-api-redone) of tcllib, or younger check-in: 9d2c991cf6 user: aku tags: canvas-edit-and-map
2022-12-08
22:10
feat: new module `map`, map related wuidgets and types, plus demo apps currently foundation + storage/entry/display of geo boxes Dependencies: `map::slippy` and `canvas::*` packages TODO: Support for select action on active element in map check-in: 09c7bc606e user: aku tags: canvas-edit-and-map
2022-12-06
20:12
# canvas::edit |Package | |New version |Notes| |--- |--- |---: |---| |points |EF,I,B |0.3 |Reworked internals, fixed bugs, extended set of options| |polyline |EF,B |0.2 |Ditto| |rectangle |n/a |0.1 |__NEW__| |circle |n/a |0.1 |__NEW__| Generally updated/wrote documentation, and regenerated the embedded forms ## canvas::edit::points Details - Enable post-creation (re)configuration of -create-cmd. This enables the insertion and chaining of custom processing by behaviours build on top of this one. - Default data command to give vertex moves a proper default behaviour (unconditionally accept). - New `-active-cmd` callback reporting when the mouse is entering/leaving a point (marker), and which. Enables the driving the dependent displays (like selecting in a table showing the points). - New options `-add-remove-point`, and `-drag-point` to customize the events used to trigger add/remove/drag of points. - Fixed missing list initialization in `clear`. - Fixed missing translation of point coordinates from viewport relative to canvas absolute. - Moved highlight handling into the canvas itself, by means of -activeXXX options. Dropped dependency on the `canvas::highlight` package. ## canvas::edit::polyline Details - Exposed configuration options of the underlying point editor as line editor options. - Added highlighting for the line segments of the polyline. Done by means of -activeXXX options in the canvas itself. - New option `-closed` to enable mode for editing a closed polyline, i.e. a polygon. - New option `-convex` to enable a polygon editing sub-mode forcing the polygon to be convex. - Fixed quadratic behaviour when clearing a line of many segments, by temporarily disabling complex processing in the point removal callback from the underlying point editor. I.e. not doing segment removal. - Completely reworked the user interaction for point insertion. - For closed lines, i.e. loops, insert points when clicking on an existing line segment. Note: Before we have a triangle (3 points) points are simply attached at the end of the line. - For open lines, insert a point when clicking on an existing line segment, xor extend the line at the nearest endpoint when the new point is not on a line segment. - Fixed mishandling of the `-create-cmd` where users would be able to break the polyline behaviours by customizing marker creation. ## canvas::edit::rectangle Details - Behavior for editing a rectangle in a canvas. - Generally the same options and behaviours like `edit::polyline`, modified to suit the different geometry. ## canvas::edit::circle Details - Behavior for editing a circle in a canvas. - Generally the same options and behaviours like `edit::polyline`, modified to suit the different geometry. check-in: b9573ab3d4 user: aku tags: canvas-edit-and-map
2022-10-24
15:09
* Released Scrollutil 1.17. check-in: e043913634 user: csaba tags: trunk
15:07
* Released Tablelist 6.20. check-in: be3044490c user: csaba tags: trunk
2022-10-22
15:38
* ChangeLog for tablelist: Updated. check-in: 10ad3e8f36 user: csaba tags: trunk
15:37
* CHANGES.txt: Renamed themepatch::(un)patchTheme to * scripts/tablelistUtil.tcl: themepatch::(un)patch. check-in: 3232deb361 user: csaba tags: trunk
15:36
* ChangeLog for scrollutil: Updated. check-in: 5f503edb2c user: csaba tags: trunk
15:35
* CHANGES.txt: Renamed * scripts/utils/themepatch.tcl: themepatch::(un)patchTheme * doc/scrollutil.html: to themepatch::(un)patch. * ../../examples/scrollutil/styleUtil.tcl: check-in: b90d99865c user: csaba tags: trunk
2022-10-21
19:23
* ChangeLog for scrollutil: Updated. check-in: 8a0bc2c42d user: csaba tags: trunk
19:22
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 7d9b781eab user: csaba tags: trunk
19:14
* ChangeLog for tablelist: Updated. check-in: ddba278b7e user: csaba tags: trunk
19:13
* scripts/tclIndex: Newly generated. check-in: 6bcdaafd32 user: csaba tags: trunk
19:12
* scripts/tablelistWidget.tcl: Added the "dumptostring" and "loadfromstring" subcommands. check-in: b68fbc0f9f user: csaba tags: trunk
19:11
* scripts/tablelistUtil.tcl: Redisplaying a column is no longer suppressed if the column is hidden; restricted the workaround for a crash on Mac OS X/11+ to the affected Tk releases 8.6.11, 8.6.12, and 8.7a5; added support for the case that the "default" theme was modified by invoking the "themepatch::patchTheme" command of the themepatch package (bundled with Scrollutil). check-in: 14e96886fe user: csaba tags: trunk
19:11
* scripts/tablelistBind.tcl: The argument of the "tablelist::getTablelistColumn" command now may also be the path name of a Tk core or tile checkbutton embedded into a header label; improvements related to moving a column interactively, especially on Mac OS X/11+. check-in: 05177292bf user: csaba tags: trunk
19:10
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 6f9273078f user: csaba tags: trunk
19:09
* *.tcl: Bumped the version number to 6.20. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: ef3375dd3e user: csaba tags: trunk
14:24
* ChangeLog for scrollutil: Updated. check-in: d039a246c6 user: csaba tags: trunk
14:23
* scripts/utils/themepatch.tcl: When patching a theme, protect the layouts of the other themes. check-in: e78d50f140 user: csaba tags: trunk
2022-10-20
10:17
* ChangeLog for scrollutil: Updated. check-in: fa0149226b user: csaba tags: trunk
10:17
* CHANGES.txt: Renamed the clampatch * scripts/utils/themepatch.tcl: package to themepatch and * scripts/utils/pkgIndex.tcl: extended it by support for * doc/scrollutil.html: the "default" theme. * ../../examples/scrollutil/styleUtil.tcl: check-in: cabfe819d9 user: csaba tags: trunk
10:14
* scrollutilCommon.tcl: Don't load the clampatch package. check-in: 9bd058d01c user: csaba tags: trunk
2022-10-17
12:40
* ChangeLog for scrollutil: Updated. check-in: c5edd8bbe6 user: csaba tags: trunk
12:39
* scripts/utils/clampatch.tcl: Minor improvements. check-in: cb2328b32e user: csaba tags: trunk
2022-10-16
17:40
* ChangeLog for scrollutil: Updated. check-in: 7067312966 user: csaba tags: trunk
17:38
* scripts/utils/clampatch.tcl: Improved the look of the selected * doc/TablelistConfig.png: ttk::checkbutton widgets of the patched "clam" theme. check-in: 2d7cb01c42 user: csaba tags: trunk
2022-10-14
17:27
* ChangeLog for scrollutil: Updated. check-in: daea9928b3 user: csaba tags: trunk
17:25
* ../../examples/scrollutil/*.tcl: The demo scripts "ScrolledNotebookDemo.tcl", "PlainNotebookDemo.tcl", and "PagesManDemo.tcl" now demonstrate the usage of the new "tabattrib", "hastabattrib", and "unsettabattrib" scrollednotebook and plainnotebook subcommands; minor changes in the files "*FrmContent.tcl". check-in: b2655bc0ef user: csaba tags: trunk
17:24
* doc/TablelistConfig.png: Updated screenshot. check-in: 75005a334e user: csaba tags: trunk
17:22
* scripts/utils/clampatch.tcl: Made the look and behavior of the * scripts/utils/pkgIndex.tcl: ttk::checkbutton and ttk::radiobutton widgets of the patched "clam" theme more fancy. check-in: 3019c5f047 user: csaba tags: trunk
17:21
* scripts/tclIndex: Newly generated. check-in: 34e05629cf user: csaba tags: trunk
17:20
* scripts/*.tcl: Added the "notebookpath" subcommand to the scrollednotebook widget; added the "attrib", "hasattrib", and "unsetattrib" subcommands to the scrollarea, scrollsync, scrollableframe, scrollednotebook, plainnotebook, and pagesman widgets; added the "tabattrib", "hastabattrib", and "unsettabattrib" subcommands to the scrollednotebook and plainnotebook widgets; added the "pageattrib", "haspageattrib", and "unsetpageattrib" subcommands to the pagesman widget. check-in: cf86ea07be user: csaba tags: trunk
17:18
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: e482376b3a user: csaba tags: trunk
17:17
* *.tcl: Bumped the version number to 1.17. * COPYRIGHT.txt: * README.txt: check-in: 841743b681 user: csaba tags: trunk
2022-10-08
14:34
canvas - edit::points - EF - Default style (item type, (highlight) color, radius) now configurable via options - Bindings separated for highlight, dragging, and editing, individually controllable - New methods to - Remove markers - Move markers (absolute, relative) - Retrieve the current marker - Modified `add` to return the marker tag, for use by removal and move methods Version bumped to 0.2 Documentation regenerated check-in: 472fb4585f user: aku tags: trunk
14:02
canvas - sqmap - fix comment typo check-in: d02203c38e user: aku tags: trunk
2022-08-22
16:23
* tooltip.man: Documented the "-tab" option and added an example for it; extended the description of the "configure" subcommand; several further improvements; bumped the version number to 1.6. check-in: a4d1e99aba user: csaba tags: trunk
16:23
* tooltip.tcl: Added support for ttk::notebook tabs; several further improvements; bumped the version number to 1.6. check-in: ee75fba92a user: csaba tags: trunk
16:22
* pkgIndex.tcl: Bumped the tooltip version number to 1.6. check-in: 70a73dc94a user: csaba tags: trunk
16:21
* ChangeLog for tooltip: Updated. check-in: aa7d9a4cd9 user: csaba tags: trunk
2022-08-12
09:40
* Released Mentry 3.16. check-in: aa615b27d6 user: csaba tags: trunk
09:38
* Released Wcb 3.8. check-in: 50b7275057 user: csaba tags: trunk
2022-08-04
17:06
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 39c1130659 user: csaba tags: trunk
17:04
* doc/wcbRef.html: Updated to the version included in Wcb 3.8. check-in: 6033e12050 user: csaba tags: trunk
17:04
* *.tcl: Bumped the version number to 3.16. * COPYRIGHT.txt: * README.txt: check-in: 97d9cbacf8 user: csaba tags: trunk
17:02
* ChangeLog for mentry: Updated. check-in: 3414ef631c user: csaba tags: trunk
17:01
* scripts/*.tcl: Updated the copyright information. * ../../examples/wcb/*.tcl: check-in: 6f31e5c384 user: csaba tags: trunk
17:00
* doc/*.html: The new name of the original widget command is now also referred to as "proxy command"; bumped the version number to 3.8. check-in: 2f0d2ac391 user: csaba tags: trunk
16:59
* CHANGES.txt: Updated to reflect the changes. check-in: 96ab832859 user: csaba tags: trunk
16:58
* *.tcl: Bumped the version number to 3.8; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 38bae8c37a user: csaba tags: trunk
16:57
* ChangeLog for wcb: Updated. check-in: dd48cf2e8d user: csaba tags: trunk
2022-08-03
11:01
* mentry_tile.tcl: Corrected the copyright information. check-in: 880ff37bf7 user: csaba tags: trunk
2022-07-14
15:44
* Released Scrollutil 1.16. check-in: b9a575471c user: csaba tags: trunk
13:54
* doc/scrollutil.html: Minor correction. check-in: 32b15f8ceb user: csaba tags: trunk
13:53
* ChangeLog for scrollutil: Updated. check-in: 2c11017bcb user: csaba tags: trunk
2022-06-27
16:06
* doc/TablelistConfig.png: Updated screenshot. check-in: 61ab2042d4 user: csaba tags: trunk
15:54
* scripts/utils/clampatch.tcl: Significantly improved the look and * scripts/utils/pkgIndex.tcl: behavior of the ttk::checkbutton and ttk::radiobutton widgets of the patched "clam" theme. check-in: c5615f0d27 user: csaba tags: trunk
15:53
* scripts/tclIndex: Newly generated. check-in: c22634a397 user: csaba tags: trunk
15:53
* scripts/scrollednotebook.tcl: The ttk::notebook contained in a scrollednotebook widget now automatically fills the entire width of the scrollednotebook, regardless of the number of tabs; eliminated three potential endless loops and fixed a few bugs related to the arrow buttons. check-in: 59389e35df user: csaba tags: trunk
15:52
* scripts/scrollableframe.tcl: Added the "autofillx" and "autofilly" scrollableframe subcommands. check-in: 91e94acd88 user: csaba tags: trunk
15:51
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: fb3cfaa68f user: csaba tags: trunk
15:50
* *.tcl: Bumped the version number to 1.16. * COPYRIGHT.txt: * README.txt: check-in: 8af33e7798 user: csaba tags: trunk
15:49
* ChangeLog for scrollutil: Updated. check-in: 9d92ec43bc user: csaba tags: trunk
2022-05-30
11:16
* Released Scrollutil 1.15. check-in: 6f867566af user: csaba tags: trunk
11:15
* Released Tablelist 6.19. check-in: c131845f97 user: csaba tags: trunk
08:48
* ../../examples/scrollutil/*.tcl: Many improvements, especially in "PagesManDemo.tcl" and the helper script "styleUtil.tcl", which is source'd in all demo scripts. check-in: 9431125a63 user: csaba tags: trunk
08:47
* doc/ScrollableFrmDemo2.png: Updated screenshots. * doc/ScrolledNotebookDemo.png: check-in: ddeb831716 user: csaba tags: trunk
08:46
* scripts/utils/pkgIndex.tcl: Made the detection of the desktop * scripts/utils/scaleutil.tcl: environment when calculating the scaling percentage corresponding to the display's DPI scaling level on X11 more reliable; removed the TEntry scaling for "vista" and "xpnative". check-in: 6ccf66fc95 user: csaba tags: trunk
08:45
* scripts/tclIndex: Newly generated. check-in: 1eb74cd40d user: csaba tags: trunk
08:44
* scripts/wheelEvent.tcl: Corrected a typo in the implementation of the scrollutil::addMouseWheelSupport command. check-in: 1e0f6311c6 user: csaba tags: trunk
08:42
* scripts/scrollableframe.tcl: Minor improvements. * scripts/scrollarea.tcl: check-in: d7ffb3794c user: csaba tags: trunk
08:42
* scripts/scrollednotebook.tcl: The scrollednotebook widget now provides two arrow buttons placed on demand in the top-left and top- right or bottom-left and bottom-right corners (depending on the notebook's style), and correctly interprets the x coordinate within an index of the form "@x,y" or passed to the "identify" subcommand as being relative to the scrollednotebook widget (rather than the ttk::notebook contained in the latter). check-in: 4c25737e3b user: csaba tags: trunk
08:41
* scripts/plainnotebook.tcl: Implemented the navigation between the selectable tabs via the mouse wheel, as well as with the keys "Down", "Up", "Control-Tab", and "Control-Shift-Tab". check-in: 600adfae00 user: csaba tags: trunk
08:40
* scripts/notebookImages.tcl: Added scrollutil::createLeftArrowImage and scrollutil::createRightArrowImage. check-in: dec144c992 user: csaba tags: trunk
08:40
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: b3589e466a user: csaba tags: trunk
08:39
* *.tcl: Bumped the version number to 1.15. * COPYRIGHT.txt: * README.txt: check-in: e56f1bf33e user: csaba tags: trunk
08:38
* ChangLog for scrollutil: Updated. check-in: 5930917d8d user: csaba tags: trunk
08:36
* scripts/utils/pkgIndex.tcl: Made the detection of the desktop * scripts/utils/scaleutil.tcl: environment when calculating the scaling percentage corresponding to the display's DPI scaling level on X11 more reliable; removed the TEntry scaling for "vista" and "xpnative". check-in: 7c684176fd user: csaba tags: trunk
08:35
* scripts/tclIndex: Newly generated. check-in: 8f4858de8e user: csaba tags: trunk
08:35
* scripts/tablelistWidget.tcl: The "get", "getcells", "getformatted", "getformattedcells", "getfullkeys", and "getkeys" subcommands now accept an optional argument with the possible values "-all", "-nonhidden", and "-viewable"; if the tablelist widget has no columns then the "deletecolumns" subcommand now returns immediately without any further action, like checking the validity of the column indices. check-in: 234c77185f user: csaba tags: trunk
08:34
* scripts/tablelistUtil.tcl: Fixed a bug related to making a hidden column visible again. check-in: 0c5a6dc3c1 user: csaba tags: trunk
08:34
* scripts/tablelistEdit.tcl: Moved part of the body of the doEditCell proc into the new proc configAutoFinishEditing. check-in: 6a6e117619 user: csaba tags: trunk
08:33
* scripts/tablelistBind.tcl: Made sure that the workaround for the problem that in Tk 8.6.11 and later on Mac OS X/11+ the idle callbacks are often fired at unexpected times won't lead to invocations of callbacks for already destroyed tablelist widgets. check-in: 1720d29518 user: csaba tags: trunk
08:32
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 2203c8c315 user: csaba tags: trunk
08:32
* *.tcl: Bumped the version number to 6.19. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: 86f19c36a6 user: csaba tags: trunk
08:30
* ChangeLog for tablelist: Updated. check-in: 171adedd0c user: csaba tags: trunk
2022-05-20
17:52
Updates to tooltip; thanks to Emiliano Gavilan for patch check-in: 2e8f464e96 user: kevin_walzer tags: trunk
2022-05-10
12:07
widget - dateentry - EF - Ticket [33464c80bf] Added support for text synchronisation in both directions. Thanks to [email protected] for report, patch, and patience. Leaf check-in: a80e4c80bb user: aku tags: tklib-0-8-rc
11:57
widget - dateentry - B - Ticket [2bcb3b11e7] Fixed missing list-quoting in pulevel command. Fixed mishandling of widget when disabled. Removed unused code. Version bumped to 0.97. Regenerated docs. With thanks to [email protected] for the report and patch, and patience. check-in: 5f960415f9 user: aku tags: tklib-0-8-rc
09:26
Bring release work into proper branch. check-in: 20d171e3df user: aku tags: tklib-0-8-rc
08:41
Updated sak tooling Updated docs Bumped bundle to 0.8. Added draft release READMEs check-in: fb6a0de8e2 user: aku tags: trunk
07:28
Create new branch named "tklib-0-8-rc" check-in: 154ccad083 user: aku tags: tklib-0-8-rc
2022-05-05
08:22
Fix: shtmlview setup of Markdown conversion. check-in: e84e94c3fd user: aku tags: trunk
2022-04-13
06:13
Document the changes to the drawing of the legend check-in: 50865e5795 user: markus tags: trunk
2022-04-12
19:25
Use the patch by Alexandru Dadalau to improve the appearance of the legend: the spacing is determined by the font size and the legend can be drawn in reverse order (this mimicks behaviour found in MS Excel, for instance) check-in: a8df88b405 user: markus tags: trunk
2022-04-08
18:46
Merged shtmlview branch, making it an official part of Tklib check-in: 1025ebd5ff user: aku tags: trunk
18:45
Merged from trunk, resolved conflicts Closed-Leaf check-in: 73375efb51 user: aku tags: shtmlview
2022-04-07
20:13
feat: update to latest shtmlview work from Detlef. Further. Rewrote the plugin system. Added documentation for the plugin packages. Added documentation for the viewer app. Moved mkdoc support into a plugin. Regenerated the documentation. check-in: 2061178207 user: aku tags: shtmlview
2022-04-04
15:43
feat: integration of latest upstream feature work chore: rewritten manpage. not done yet. feat: extracted app part of widget to app/ todo: app documentation. chore: regenerated docs check-in: d83b83f13e user: aku tags: shtmlview
2022-04-03
13:33
Correct a few deprecated commands in the man page (the changes made by aku were in a branch?) and include the change log. check-in: 3026891c3d user: markus tags: trunk
13:27
Add procedures for drawing a circle plot to the package. (Most of the code was already available but it was not documented and there was a small glitch in the positioning of the circle. Should probably use this solution for all circle-based plots, but that does mean an incompatibility. Note to self: this is for a future version - there are a few other things like that) check-in: ac8bbe4d2f user: markus tags: trunk
2022-03-29
21:16
chore: regenerated documentation, embedded/idoc check-in: d2bf5f0261 user: aku tags: shtmlview
21:15
chore: cleanup of trailing white space across all modules and examples. check-in: 6a1df9d556 user: aku tags: shtmlview
21:15
chore: cleanup of trailing white space across all modules and examples. fix: installer to now pull the documentation from idoc/. check-in: 0e2e485938 user: aku tags: shtmlview
21:11
chore: added support for module exclusions to the sak (local)doc chore: reworked localdoc interna to match tcllib's localdoc. We now have idoc/ for installer documentation, and embedded/ for web view from the repository website check-in: de35d2a1cb user: aku tags: shtmlview
21:07
fix: plotchart documentation, replaced deprecated `nl` commands with `para`. check-in: 7016836278 user: aku tags: shtmlview
21:06
New module: shtmlview, supplied by Detlef Groth. Ticket [be258bb286]. check-in: 32ee519551 user: aku tags: shtmlview
2022-03-22
10:48
* Released Tablelist 6.18. check-in: 21139efe0a user: csaba tags: trunk
10:46
* Released Scrollutil 1.14. check-in: 1d5e6da72a user: csaba tags: trunk
10:44
* Released Mentry 3.15. check-in: 49a307818f user: csaba tags: trunk
2022-03-17
20:45
* doc/plainnotebook.html: Corrected a typo. check-in: a7fdd3c25a user: csaba tags: trunk
20:37
* CHANGES.txt: Updated to reflect the changes. check-in: a9d440721e user: csaba tags: trunk
20:36
* scripts/plainnotebook.tcl: Using own styles for the title label as * doc/plainnotebook.html: well as the tabs created with the "addlabel" and "insertlabel" plainnotebook subcommands. check-in: 4d4ff4ef73 user: csaba tags: trunk
20:34
* scripts/scrollednotebook.tcl: Changed the handling * doc/scrollednotebook.html: of mouse events for * ../../examples/scrollutil/TtkNotebookDemo.tcl: the "closetab" element of a ttk:notebook tab. check-in: 3fe084d9cc user: csaba tags: trunk
20:33
* ChangeLog for scrollutil: Updated. check-in: 63820b7252 user: csaba tags: trunk
2022-03-14
18:24
* CHANGES.txt: Using "$ttk::currentTheme" as * doc/scrollutil.html: fallback if "[ttk::style theme use]" * ../../examples/scrollutil/*.tcl: is not supported (for Tk 8.4). check-in: 1aca5c9441 user: csaba tags: trunk
18:23
* ChangeLog for scrollutil: Updated. check-in: a7593387b1 user: csaba tags: trunk
2022-03-13
20:01
* ../../examples/mentry/*.tcl: Updated the copyright information. check-in: bc61fc44a8 user: csaba tags: trunk
20:00
* scripts/tclIndex: Newly generated. check-in: e9fa07111b user: csaba tags: trunk
19:59
* scripts/*.tcl: Fixed a bug related to the handling of the * scripts/mwutil/*.tcl: <<ThemeChanged>> event when the package Mentry rather than Mentry_tile was loaded into the interpreter; updated the copyright information. check-in: c33cafda70 user: csaba tags: trunk
19:58
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 9d25503701 user: csaba tags: trunk
19:57
* *.tcl: Bumped the version number to 3.15; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: c0243045fd user: csaba tags: trunk
19:56
* ChangeLog for mentry: Updated. check-in: 45225d164e user: csaba tags: trunk
17:46
* scripts/utils/*.tcl: Setting the default height of the ttk::treeview rows to a value based on the font's metrics; extensions related to the TSpinbox style; several further extensions and improvements. check-in: 9b4672076e user: csaba tags: trunk
17:43
* scripts/tclIndex: Newly generated. check-in: 0d1a0faf26 user: csaba tags: trunk
17:42
* scripts/*.tcl: Added support for the case that the "clam" theme was modified by invoking the "clampatch::patchClamTheme" command of the clampatch package (bundled with Scrollutil); when starting the editing session, the "-exportselection" option of the tablelist widget is now set to 0, and when the editing is finished or canceled, the option's original value is restored; made sure that the "-showeditcursor" configuration option will work as expected also in the special case that the application was cross-wrapped on Linux for Windows using freewrap; overhauled the workaround for the problem that in Tk 8.6.11 and later on Mac OS X/11+ the idle callbacks are often fired at unexpected times; fixed a bug related to the handling of the <<ThemeChanged>> event when the package Tablelist rather than Tablelist_tile was loaded into the interpreter; fixed a bug related to the mouse event handling for the header labels in the special case that there is another tablelist closely to the left of the widget in question. check-in: 3f4f4bc7a8 user: csaba tags: trunk
17:41
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: f5b47b7707 user: csaba tags: trunk
17:40
* *.tcl: Bumped the version number to 6.18. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: ccea074817 user: csaba tags: trunk
17:38
* ChangeLog for tablelist: Updated. check-in: 184644bfb4 user: csaba tags: trunk
17:30
* ChangeLog for scrollutil: Updated. check-in: dfe2f2ced8 user: csaba tags: trunk
17:29
* ../../examples/scrollutil/*.tcl: Replaced "$ttk::currentTheme" with "[ttk::style theme use]"; several further improvements. check-in: 6d61088cc5 user: csaba tags: trunk
17:27
* doc/ScrollableFrmDemo2.png: Updated screenshots. * doc/TablelistConfig.png: check-in: c07769449f user: csaba tags: trunk
17:25
* scripts/utils/clampatch.tcl: Added the clampatch package, whose * scripts/utils/pkgIndex.tcl: "clampatch::patchClamTheme" command makes the ttk::button widgets as well as the ttk::treeview and tablelist headers of the "clam" theme smaller and significantly improves the look and behavior of its ttk::checkbutton and ttk::radiobutton widgets. check-in: 282e317b4f user: csaba tags: trunk
17:20
* scripts/utils/scaleutil.tcl: Setting the default height of the ttk::treeview rows to a value based on the font's metrics; extensions related to the TSpinbox style; several further extensions and improvements. check-in: b1a1737214 user: csaba tags: trunk
17:17
* scripts/scrollednotebook.tcl: Minor improvements. check-in: 6b9a702eb9 user: csaba tags: trunk
17:17
* scripts/scrollarea.tcl: Fixed a bug related to changing the value of "-xscrollbarmode" or "-yscrollbarmode" scrollarea option from "none" to "static" or "dynamic". check-in: 4f5882a859 user: csaba tags: trunk
17:16
* scripts/plainnotebook.tcl: Added the plainnotebook "titlepath" subcommand; several further improvements. check-in: 517af126cb user: csaba tags: trunk
17:14
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: b1909a071f user: csaba tags: trunk
17:13
* *.tcl: Bumped the version number to 1.14. * COPYRIGHT.txt: * README.txt: check-in: 664734a92b user: csaba tags: trunk
17:12
* ChangeLog for scrollutil: Updated. check-in: e52f70a896 user: csaba tags: trunk
2022-02-13
14:59
Add heatmaps as a type of diagrams. Also fix a problem with changing the axis of logarithmic plots (ticket 8b8128917bd5ed232e1bfa7f13d4fb403d4551a0) Bumped version to 2.5.0 check-in: 1aba615479 user: markus tags: trunk
2022-01-10
15:43
* Released Scrollutil 1.13. check-in: b316c04263 user: csaba tags: trunk
15:41
* Released Tablelist 6.17. check-in: 8dd67ad097 user: csaba tags: trunk
2022-01-01
12:08
* *.tcl: Updated the copyright information. * COPYRIGHT.txt: * scripts/*.tcl: * scripts/utils/*.tcl: * ../../examples/scrollutil/*.tcl: * ../../examples/scrollutil/*.itk: check-in: 1377712e2f user: csaba tags: trunk
12:07
* ChangeLog for scrollutil: Updated. check-in: 7f711468bf user: csaba tags: trunk
11:36
* ../../examples/tablelist/serialParams.tcl: Corrected typo. check-in: 7d6121c411 user: csaba tags: trunk
11:17
* ChangeLog for tablelist: Updated. check-in: 3d7f406528 user: csaba tags: trunk
11:05
* *.tcl: Updated the copyright information. * COPYRIGHT.txt: * scripts/*.tcl: * scripts/utils/*.tcl: * ../../examples/tablelist/*.tcl: check-in: 377ea4f025 user: csaba tags: trunk
10:59
* ChangeLog for tablelist: Updated. check-in: a7df0fcb7c user: csaba tags: trunk
2021-12-29
13:47
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 2c141051e7 user: csaba tags: trunk
13:45
* scripts/tclIndex: Newly generated. check-in: 5978fbdc0f user: csaba tags: trunk
13:44
* ../../examples/scrollutil/*.tcl: Improved the demo scripts "*FrmDemo*.tcl" and "*NotebookDemo.tcl" by configuring their scrollable widget container(s) and notebook widget, respectively (e.g., setting the widget's width) from within an "after 50" script rather than preceding this step by an invocation of "update idletasks". check-in: fb7e43829b user: csaba tags: trunk
13:43
* scripts/scrollableframe.tcl: Added code that handles the virtual event <<NoManagedChild>>, sent by Tk 8.7a3 and later to the content frame of a scrollableframe when its last widget managed via pack or grid becomes unmanaged (see TIP 518). check-in: b93ab7f3e0 user: csaba tags: trunk
13:43
* scripts/scrollarea.tcl: Slightly improved. check-in: e44b82a34e user: csaba tags: trunk
13:42
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 5dfd6089d8 user: csaba tags: trunk
13:41
* *.tcl: Bumped the version number to 1.13. * COPYRIGHT.txt: * README.txt: check-in: 6abd4fcb95 user: csaba tags: trunk
13:40
* ChangeLog for scrollutil: Updated. check-in: 40e733ca30 user: csaba tags: trunk
13:39
* scripts/*.tcl: The virtual event <<TablelistCellUpdated>> is now only generated if the editing session has effectively changed the cell's content; worked around the problem that on Mac OS X/11+ the idle callbacks are often fired at unexpected times; fixed a bug related to the embedded ttk::checkbutton widgets when the package Tablelist rather than Tablelist_tile was loaded into the interpreter. check-in: af7d5dab6c user: csaba tags: trunk
13:37
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 8ad021a098 user: csaba tags: trunk
13:36
* doc/tablelistWidget.html: Extended the descriptions of the "-tooltipaddcommand" and "-tooltipdelcommand" options by hints showing how to use these options with version 1.3+ of the baltip package by Alex Plotnikov. check-in: 74e13663ed user: csaba tags: trunk
13:35
* *.tcl: Bumped the version number to 6.17. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: 76ea0752b5 user: csaba tags: trunk
13:33
* ChangeLog for tablelist: Updated. check-in: 7e88409a1c user: csaba tags: trunk
2021-12-21
10:23
* scripts/utils/pkgIndex.tcl: Bumped the scaleutil version to 1.7. check-in: f060d675f9 user: csaba tags: trunk
10:23
* scripts/utils/scaleutil.tcl: The scaleutil package now works "as is" with undroidwish and AndroWish, too; added a way to prevent this package from changing Tk's scaling factor when calculating the scaling percentage corresponding to the display's DPI scaling level on X11; fixed a bug related to setting the default height of the ttk::treeview rows for one of the themes provided by the awthemes package. check-in: db14e3e5d6 user: csaba tags: trunk
10:22
* ChangeLog for scrollutil: Updated. check-in: 0d39f7dc51 user: csaba tags: trunk
10:20
* scripts/utils/pkgIndex.tcl: Bumped the scaleutil version to 1.7. check-in: 8f31f891fd user: csaba tags: trunk
10:20
* scripts/utils/scaleutil.tcl: The scaleutil package now works "as is" with undroidwish and AndroWish, too; added a way to prevent this package from changing Tk's scaling factor when calculating the scaling percentage corresponding to the display's DPI scaling level on X11; fixed a bug related to setting the default height of the ttk::treeview rows for one of the themes provided by the awthemes package. check-in: a7f32fde26 user: csaba tags: trunk
10:19
* ChangeLog for tablelist: Updated. check-in: a405599794 user: csaba tags: trunk
2021-11-30
11:50
* tooltip.tcl, tooltip.man: Minor improvements. check-in: f025b6b4f0 user: csaba tags: trunk
11:49
* ChangeLog for tooltip: Updated. check-in: cc9cc1076e user: csaba tags: trunk
2021-11-27
20:16
* tooltip.man: Corrected the description of the "clear" subcommand; several further improvements; bumped the version number to 1.4.7. check-in: fcc0d93775 user: csaba tags: trunk
20:15
* tooltip.tcl: Made sure that the "clear" subcommand will work for widgets having spaces in their names, too; several further improvements; bumped the version number to 1.4.7. check-in: 1787c3c229 user: csaba tags: trunk
20:14
* pkgIndex.tcl: Bumped the tooltip version number to 1.4.7. check-in: ccd1cf8d68 user: csaba tags: trunk
20:14
* ChangeLog for tooltip: Updated. check-in: 8b0ecf33d8 user: csaba tags: trunk
2021-11-13
12:11
Dropped executable flag from files which do not require it. check-in: aab13dea8d user: aku tags: trunk
2021-11-11
16:04
* Released Scrollutil 1.12. check-in: 4d982f9749 user: csaba tags: trunk
16:03
* Released Tablelist 6.16. check-in: 54ffabdfb8 user: csaba tags: trunk
2021-11-10
15:53
* doc/*.html: Updated. check-in: 77eacd9dc3 user: csaba tags: trunk
15:52
* ChangeLog for scrollutil: Updated. check-in: 2cbce25766 user: csaba tags: trunk
15:51
* doc/*.html: Updated. check-in: edd477f49a user: csaba tags: trunk
15:50
* ChangeLog for tablelist: Updated. check-in: fa68be6aa6 user: csaba tags: trunk
2021-11-07
16:29
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 3f351ad834 user: csaba tags: trunk
16:28
* CHANGES.txt: Added the "-ignorefocus" optional argument to * scripts/wheelEvent.tcl: the "scrollutil::adaptWheelEventHandling" * doc/scrollutil.html: command. * doc/wheelEvent.html: check-in: 5267bbca09 user: csaba tags: trunk
16:26
* ChangeLog for scrollutil: Updated. check-in: 0851a661d4 user: csaba tags: trunk
16:24
* CHANGES.txt: Updated the handling of the mouse wheel * scripts/tablelistBind.tcl: events; changes related to TIP #577. * scripts/tablelistUtil.tcl: * scripts/tablelistWidget.tcl: * doc/tablelistWidget.html: check-in: 7abf5ec2ec user: csaba tags: trunk
16:23
* ChangeLog for tablelist: Updated. check-in: d2287412f7 user: csaba tags: trunk
16:14
* ChangeLog for tablelist: Updated. check-in: 7a3b998c43 user: csaba tags: trunk
2021-10-31
19:42
* ../../examples/scrollutil/styleUtil.tcl: Several improvements. * ../../examples/scrollutil/*FrmContent.tcl: check-in: d7919928c1 user: csaba tags: trunk
19:35
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 7445562aac user: csaba tags: trunk
19:34
* scripts/utils/pkgIndex.tcl: Significantly extended the procedure * scripts/utils/scaleutil.tcl: "scaleutil::scalingPercentage" and adapted to the changes made recently in the Tk library file "ttk/fonts.tcl". check-in: 4d2e43f20e user: csaba tags: trunk
19:33
* scripts/tclIndex: Newly generated. check-in: f3ee089222 user: csaba tags: trunk
19:33
* scripts/*.tcl: Added the "insert", "pagecget", "pageconfigure", and "window" pagesman subcommands; the pagesman "add" subcommand now updates the options of an existing page; improved the font handling in a plainnotebook widget; fixed a bug related to the handling of the <Destroy> event for a window embedded into a scrollarea or scrollsync widget. check-in: 1b66abac2d user: csaba tags: trunk
19:31
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 7413e182ec user: csaba tags: trunk
19:30
* *.tcl: Bumped the version number to 1.12. * COPYRIGHT.txt: * README.txt: check-in: 8102ad399a user: csaba tags: trunk
19:29
* ChangeLog for scrollutil: Updated. check-in: 6a635c1f12 user: csaba tags: trunk
18:01
* scripts/utils/scaleutilMisc.tcl: Using the new scaleutil::scale procedure. check-in: 716227ce78 user: csaba tags: trunk
17:52
* scripts/utils/pkgIndex.tcl: Significantly extended the procedure * scripts/utils/scaleutil.tcl: "scaleutil::scalingPercentage" and adapted to the changes made recently in the Tk library file "ttk/fonts.tcl". check-in: 0d2b560986 user: csaba tags: trunk
17:46
* scripts/tclIndex: Newly generated. check-in: 13c622c931 user: csaba tags: trunk
17:46
* scripts/*.tcl: Scaling the default vertical padding of the header labels for the themes "clam", "vista", and "xpnative; extended the "itemtodict" subcommand by an optional argument that specifies the column indices of the elements that are to be ignored when building the result dictionary; improvements related to the appearance of the (temporarily or persistently) embedded ttk::checkbutton widgets; fixed a bug related to the "cellbbox" subcommand. check-in: e1a3afef3e user: csaba tags: trunk
17:44
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 29770e49c9 user: csaba tags: trunk
17:43
* *.tcl: Bumped the version number to 6.16. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: ba04917bc8 user: csaba tags: trunk
17:40
* ChangeLog for tablelist: Updated. check-in: bc0989e55c user: csaba tags: trunk
2021-09-13
15:51
* Released Tablelist 6.15.1. check-in: 72e4dbf28c user: csaba tags: trunk
2021-09-12
12:13
* scripts/tablelistUtil.tcl: Guarded against potential endless loops, triggered in the previous Tablelist release by the presence of hidden columns and a strictly positive value of the "-titlecolumns" option. check-in: 14369e509d user: csaba tags: trunk
12:12
* CHANGES.txt: Updated to reflect the changes. check-in: 6e331f648d user: csaba tags: trunk
12:12
* *.tcl: Bumped the version number to 6.15.1. * COPYRIGHT.txt: * README.txt: * doc/index.html: * doc/tablelist.html: check-in: 40c6519451 user: csaba tags: trunk
12:10
* ChangeLog for tablelist: Updated. check-in: 7c643587ef user: csaba tags: trunk
2021-09-07
16:29
* Released Tablelist 6.15. check-in: d7bc933d03 user: csaba tags: trunk
2021-09-06
15:55
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.15. check-in: 2bb466b950 user: csaba tags: trunk
15:53
* scripts/utils/pkgIndex.tcl: Fixed a bug related to the supported * scripts/utils/scaleutil.tcl: scaling percentages on Windows. check-in: ebbe09d0ab user: csaba tags: trunk
15:52
* scripts/tclIndex: Newly generated. check-in: c61a8b4563 user: csaba tags: trunk
15:51
* scripts/*.tcl: Added the "dumptofile" and "loadfromfile" subcommands; the "dicttoitem" subcommand now simply ignores those keys that are no valid column indices; added binding for <<TkWorldChanged>> with %d set to "FontChanged" (see TIP 608); adapted the sort rank bitmaps used in multi-column sorting to the display's scaling percentage; worked around a serious regression in Tk 8.6 regarding the text widget's "see" subcommand; further code optimizations; fixed a bug related to the "searchcolumn" subcommand with the "-descend" option, which in addition no longer depends on the interpreter's recursion limit; fixed some bugs related to the "deletecolumns" subcommand by adapting its implementation to changes made in current Mac OS versions. check-in: 0d6d6fc884 user: csaba tags: trunk
15:51
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: d3e7e71b22 user: csaba tags: trunk
15:48
* *.tcl: Bumped the version number to 6.15. * COPYRIGHT.txt: * README.txt: check-in: b39a3b3a36 user: csaba tags: trunk
15:47
* ChangeLog for tablelist: Updated. check-in: 42079bd023 user: csaba tags: trunk
2021-09-02
16:04
* Released Scrollutil 1.11. check-in: f2303957c2 user: csaba tags: trunk
16:03
* Released Mentry 3.14. check-in: 41b31c2637 user: csaba tags: trunk
13:51
* scripts/plainnotebook.tcl: Minor improvements related to the fonts. check-in: 8e32c7f8aa user: csaba tags: trunk
13:50
* ChangeLog for scrollutil: Updated. check-in: 71c330771d user: csaba tags: trunk
2021-08-25
19:22
* ../../examples/mentry/phonenumber(_tile).tcl: Added bindings that * ../../examples/mentry/ethernetaddr(_tile).tcl: handle <<Paste>> events in the entry components of the mentry widgets of types "EthernetAddr" and "PhoneNumber". check-in: e5ba0c6e8b user: csaba tags: trunk
19:21
* scripts/tclIndex: Newly generated. check-in: e74d376010 user: csaba tags: trunk
19:21
* scripts/*.tcl: Extended the "adjustentry" subcommand by an optional second string argument and used this extended form in the implementation of the "mentry::fixedPointMentry" command; added binding for <<TkWorldChanged>> with %d set to "FontChanged" (see TIP 608); added bindings that handle <<Paste>> events in the entry components of the mentry widgets of types "IPAddr" and "IPv6Addr. check-in: 4f2ca75160 user: csaba tags: trunk
19:18
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 07b956d921 user: csaba tags: trunk
19:17
* *.tcl: Bumped the version number to 3.14. * COPYRIGHT.txt: * README.txt: check-in: b0a1a1517d user: csaba tags: trunk
19:16
* ChangeLog for mentry: Updated. check-in: 7f65fd176b user: csaba tags: trunk
2021-08-24
16:54
* scripts/plainnotebook.tcl: Reworked the binding script for <<TkWorldChanged>> with %d set to "FontChanged". check-in: 818b158315 user: csaba tags: trunk
16:53
* ChangeLog for scrollutil: Updated. check-in: c13b71f57f user: csaba tags: trunk
13:50
* scripts/tclIndex: Newly generated. check-in: 31c1976b81 user: csaba tags: trunk
13:50
* scripts/plainnotebook.tcl: Added binding for <<TkWorldChanged>> with %d set to "FontChanged" (see TIP 608). check-in: 4bebc66f69 user: csaba tags: trunk
13:49
* doc/pagesman.html: Minor corrections. * doc/scrollednotebook.html: * scripts/scrollednotebook.tcl: check-in: aaa6dd905b user: csaba tags: trunk
13:47
* ChangeLog for scrollutil: Updated. check-in: bd162bdbe3 user: csaba tags: trunk
2021-08-23
18:55
* ../../examples/scrollutil/folder*.gif: Added image files. check-in: 648399af02 user: csaba tags: trunk
18:54
* ../../examples/scrollutil/file*.gif: Updated image files. check-in: e9490d9302 user: csaba tags: trunk
18:53
* ../../examples/scrollutil/styleUtil.tcl: Many improvements. * ../../examples/scrollutil/TtkNotebookDemo.tcl: check-in: e2f87b9dd9 user: csaba tags: trunk
18:52
* ../../examples/scrollutil/ScrolledNotebookDemo.tcl: Now makes use of the "-forgetcommand" and "-leavecommand" scrollednotebook options. check-in: 750462172c user: csaba tags: trunk
18:52
* ../../examples/scrollutil/PlainNotebookDemo.tcl: Added demo scripts. * ../../examples/scrollutil/PagesManDemo.tcl: check-in: 581ee3b470 user: csaba tags: trunk
18:50
* doc/ScrolledNotebookDemo.png: Updated screenshot. check-in: be564ccaf7 user: csaba tags: trunk
18:50
* doc/PlainNotebookDemo.png: Added screenshots. * doc/PagesManDemo.png: * doc/PagesManDemoImages.png: check-in: 4d10795c30 user: csaba tags: trunk
18:48
* scripts/utils/pkgIndex.tcl: Fixed a bug related to the supported * scripts/utils/scaleutil.tcl: scaling percentages on Windows. check-in: 32867efce4 user: csaba tags: trunk
18:47
* scripts/tclIndex: Newly generated. check-in: 2e46e92dea user: csaba tags: trunk
18:47
* scripts/*.tcl: Added the "-setfocus" scrollarea configuration option; added the "-forgetcommand", "-leavecommand", and "-movabletabs" scrollednotebook configuration options; added the plainnotebook and pagesman widgets. check-in: 2d0f96c288 user: csaba tags: trunk
18:45
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 897778a989 user: csaba tags: trunk
18:44
* *.tcl: Bumped the version number to 1.11; corrected the * COPYRIGHT.txt: required tile version from 0.6 to 0.8. * README.txt: check-in: 018fa9dfe6 user: csaba tags: trunk
18:43
* ChangeLog for scrollutil: Updated. check-in: 520e21444b user: csaba tags: trunk
2021-06-29
22:05
chatwidget: support multiline topics and fix pane sizes on re-map. The topic display is changed to be a small text widget rather than an entry widget with automatic scrolling to handle channels with long topic messages. On redisplay of a tab the panes would revert to default sizes due to the <Map> binding being left in place. Corrected to remove the <Map> binding once used to set the default pane sizes. check-in: 46abecb483 user: patthoyts tags: trunk
2021-06-26
12:35
chatwidget: handle dark themes without reliance on the option database. check-in: 71347f3386 user: patthoyts tags: trunk
2021-06-20
00:04
chatwidget: support dark color themes and handle deleted tabs in chatstate. check-in: 9f82621ea1 user: patthoyts tags: trunk
2021-05-28
09:07
* Released Scrollutil 1.10. check-in: 881c88c7c2 user: csaba tags: trunk
09:07
* Released Tablelist 6.14. check-in: d6b79e947e user: csaba tags: trunk
2021-05-27
11:20
* doc/scrollednotebook.html: Improved the "FURTHER BINDINGS" section. check-in: d2d807ce1c user: csaba tags: trunk
11:19
* ChangeLog for scrollutil: Updated. check-in: adef3c3c0e user: csaba tags: trunk
2021-05-26
17:34
* scripts/scrollednotebook.tcl: Cosmetic improvements. check-in: b4bd1b370b user: csaba tags: trunk
17:33
* ChangeLog for scrollutil: Updated. check-in: b86d7ef8b9 user: csaba tags: trunk
2021-05-25
10:17
* scripts/tclIndex: Newly generated. check-in: 0b0f8e7ded user: csaba tags: trunk
10:17
* CHANGES.txt: Numerous improvements and cleanup. * scripts/scrollednotebook.tcl: check-in: 296c30a28b user: csaba tags: trunk
10:16
* ChangeLog for scrollutil: Updated. check-in: 9753bb7211 user: csaba tags: trunk
2021-05-21
19:51
* doc/scrollednotebook.html: Slightly improved. check-in: 352cb819d3 user: csaba tags: trunk
19:50
* ChangeLog for scrollutil: Updated. check-in: 2eaf140d12 user: csaba tags: trunk
11:32
* scripts/tclIndex: Newly generated. check-in: 2de5720d98 user: csaba tags: trunk
11:31
* CHANGES.txt: Added the "closetabstate" * scripts/scrollednotebook.tcl: scrollednotebook widget subcommand; * doc/scrollednotebook.html: made sure that a "-padding" tab option query will always return the value specified by the application. check-in: 8d49a071bc user: csaba tags: trunk
11:30
* ChangeLog for scrollutil: Updated. check-in: 9e9261208b user: csaba tags: trunk
2021-05-18
16:47
* CHANGES.txt: Slightly improved. check-in: 3f400029f5 user: csaba tags: trunk
16:46
* ChangeLog for scrollutil: Updated. check-in: 31c9f700c8 user: csaba tags: trunk
2021-05-17
09:35
* scripts/tclIndex: Newly generated. check-in: 2a09cf3bf7 user: csaba tags: trunk
09:35
* scripts/wheelEvent.tcl: Minor improvement. check-in: 3526f538a1 user: csaba tags: trunk
09:34
* CHANGES.txt: Added the "scrollutil::closetabstate" * scrollutil_tile.tcl: command. * scripts/scrollednotebook.tcl: * doc/scrollednotebook.html: check-in: 6056ed317e user: csaba tags: trunk
09:32
* ChangeLog for scrollutil: Updated. check-in: d90a295073 user: csaba tags: trunk
2021-05-15
12:16
* scripts/scrollednotebook.tcl: Improved the look of the "closetab" element. check-in: bed5dc217e user: csaba tags: trunk
12:15
* ChangeLog for scrollutil: Updated. check-in: bd46d194df user: csaba tags: trunk
08:12
* scripts/utils/scaleutil.tcl: Removed some holdovers from the previous version which are not compatible with the new one. check-in: 1e7c8174d9 user: csaba tags: trunk
08:11
* ChangeLog for scrollutil: Updated. check-in: 544312752a user: csaba tags: trunk
08:10
* scripts/utils/scaleutil.tcl: Removed some holdovers from the previous version which are not compatible with the new one. check-in: 9b69598ea2 user: csaba tags: trunk
08:08
* ChangeLog for tablelist: Updated. check-in: 4f0fa318b3 user: csaba tags: trunk
2021-05-14
16:52
* ../../examples/scrollutil/file*.gif: Added image files. check-in: efb96d24e2 user: csaba tags: trunk
16:50
* ../../examples/scrollutil/*NotebookDemo.tcl: The tabs now have images and are closable. check-in: 26c3de710c user: csaba tags: trunk
16:50
* ../../examples/scrollutil/*FrmContent.tcl: Several improvements. check-in: 98a36361ca user: csaba tags: trunk
16:49
* doc/ScrollableFrmDemo2.png: Updated screenshots. * doc/ScrolledNotebookDemo.png: check-in: 8c7fb5f3d9 user: csaba tags: trunk
16:48
* scripts/utils/pkgIndex.tcl: On X11 only correct the sizes of the * scripts/utils/scaleutil.tcl: standard fonts and set the scaling factor if the display's scaling percentage is > 100; don't change the scaling factor if the scaling percentage was derived from it. check-in: 12c7f9aa60 user: csaba tags: trunk
16:47
* scripts/tclIndex: Newly generated. check-in: 81b3518ec9 user: csaba tags: trunk
16:47
* scripts/scrollednotebook.tcl: Added the "closetab" scalable style element, along with the "scrollutil::addclosetab" and "scrollutil::removeclosetab" commands. check-in: fdd5748667 user: csaba tags: trunk
16:46
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 58b25b250b user: csaba tags: trunk
16:45
* *.tcl: Bumped the version number to 1.10. * COPYRIGHT.txt: * README.txt: check-in: 8f84923813 user: csaba tags: trunk
16:45
* ChangeLog: Updated. check-in: 6dfee35dcb user: csaba tags: trunk
16:42
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.14; the demo scripts "bwidget*.tcl", "iwidgets*.tcl", "miscWidgets*.tcl", and "tileWidgets.tcl" now use the new "-labelwindow" column configuration option and "labelwindowpath" subcommand; the demo scripts "embeddedWindows*.tcl" now use the "-stretchwindow" option at column level and embed the windows into the cells by means of the "fillcolumn" subcommand. check-in: 66a1b77e45 user: csaba tags: trunk
16:39
* doc/bwidget.png: Updated screenshots. * doc/tileWidgets.png: check-in: 3b89dc39f5 user: csaba tags: trunk
16:38
* scripts/utils/pkgIndex.tcl: On X11 only correct the sizes of the * scripts/utils/scaleutil.tcl: standard fonts and set the scaling factor if the display's scaling percentage is > 100; don't change the scaling factor if the scaling percentage was derived from it. check-in: f22ea19572 user: csaba tags: trunk
16:37
* scripts/tclIndex: Newly generated. check-in: 0526f36e6d user: csaba tags: trunk
16:34
* scripts/*.tcl: Added the "-labelwindow" column configuration option, with the possible values "checkbutton" and "ttk::checkbutton"; added the "labelwindowpath" subcommand; added the virtual event <<TablelistActivate>>, generated whenever the active row or cell changes due to user interaction; if the value of the "-titlecolums" option is positive then <Shift-MouseWheel> now scrolls the tablelist widget by one column only; the "-stretchwindow", "-windowdestroy", and "-windowupdate" options are now supported at column level, too; the "fillcolumn" and "header fillcolumn" subcommands now can embed an image or window in all body/header cells of the specified column. check-in: 25bb0477a2 user: csaba tags: trunk
16:34
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 6735ac7895 user: csaba tags: trunk
16:33
* *.tcl: Bumped the version number to 6.14. * COPYRIGHT.txt: * README.txt: check-in: 0837d72114 user: csaba tags: trunk
16:32
* ChangeLog: Updated. check-in: 425ac44a62 user: csaba tags: trunk
2021-04-14
11:09
* Released Mentry 3.13. check-in: 57a24b2a8a user: csaba tags: trunk
11:08
* Released Scrollutil 1.9. check-in: 8f70f46f9c user: csaba tags: trunk
11:06
* Released Tablelist 6.13. check-in: eacdb7aeab user: csaba tags: trunk
2021-04-10
15:50
* scripts/mwutil/*.tcl: Updated the mwutil package to version 2.19, like in Tablelist6.13. check-in: 1571b00c29 user: csaba tags: trunk
15:49
* scripts/tclIndex: Newly generated. check-in: b52bcd6a07 user: csaba tags: trunk
15:48
* scripts/mentryThemes.tcl: Reworked the awthemes support and extended * scripts/mentryWidget.tcl: it by support for the "awbreezedark" theme. check-in: c50e9f2cee user: csaba tags: trunk
15:48
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: d972b4ff15 user: csaba tags: trunk
15:46
* *.tcl: Bumped the version number to 3.13. * COPYRIGHT.txt: * README.txt: check-in: 7c2131af30 user: csaba tags: trunk
15:45
* ChangeLog: Updated. check-in: cd2d70e805 user: csaba tags: trunk
13:44
* scripts/tablelistWidget.tcl: Fixed a holdover from earlier versions. check-in: 3a2d0cb5a2 user: csaba tags: trunk
13:43
* ChangeLog: Updated. check-in: 74fa2f83e2 user: csaba tags: trunk
2021-04-09
16:14
* scripts/tclIndex: Newly generated. check-in: 340cc38222 user: csaba tags: trunk
16:13
* CHANGES.txt: Reworked and extended the * scripts/tablelistThemes.tcl: awthemes support. * scripts/tablelistUtil.tcl: * ../../examples/tablelist/tileWidgets.tcl: check-in: 9563de9c5c user: csaba tags: trunk
16:11
* ChangeLog: Updated. check-in: f7569b6071 user: csaba tags: trunk
2021-04-08
16:48
* scripts/tclIndex: Newly generated. check-in: ff047e4088 user: csaba tags: trunk
16:48
* scrollutilCommon.tcl: Moved the containsPointer proc from * scripts/scrollarea.tcl: scrollarea.tcl to mwutil.tcl. * scripts/utils/mwutil.tcl: * scripts/utils/pkgIndex.tcl: check-in: 308f8a9bbc user: csaba tags: trunk
16:27
* ChangeLog: Updated. check-in: 0980a6bf4f user: csaba tags: trunk
16:12
* tablelistCommon.tcl: Various improvements, related mainly to * scripts/tablelistBind.tcl: the awthemes support and macOS 11. * scripts/tablelistConfig.tcl: * scripts/tablelistThemes.tcl: * scripts/tablelistUtil.tcl: * scripts/tablelistWidget.tcl: * scripts/utils/mwutil.tcl: * scripts/utils/pkgIndex.tcl: check-in: 0d5f10b20d user: csaba tags: trunk
16:10
* ChangeLog: Updated. check-in: 56a5e4c3ba user: csaba tags: trunk
2021-04-06
12:35
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: bc4b4ce531 user: csaba tags: trunk
12:34
* ChangeLog: Updated. check-in: b18c0eac06 user: csaba tags: trunk
11:29
* scripts/tclIndex: Newly generated. check-in: ef5b27ec96 user: csaba tags: trunk
11:28
* scripts/tablelistEdit.tcl: Improved the editing with the aid of a ttk::menubutton widget. check-in: 30bffa9c2e user: csaba tags: trunk
11:27
* CHANGES.txt: Added support for the * scripts/tablelistThemes.tcl: "awbreezedark" theme. * doc/tablelist.html: * doc/tablelistWidget.html: * ../../examples/tablelist/config_tile.tcl: * ../../examples/tablelist/option_tile.tcl: check-in: 0bd6b91b0d user: csaba tags: trunk
11:22
* ChangeLog: Updated. check-in: 0782f5d5ec user: csaba tags: trunk
2021-04-03
14:31
* CHANGES.txt: Big Sur support slightly improved. * scripts/tablelistConfig.tcl: * scripts/tablelistThemes.tcl: check-in: ae6a8bf079 user: csaba tags: trunk
14:29
* ChangeLog: Updated. check-in: 52fde5af7c user: csaba tags: trunk
2021-04-02
14:58
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 1ca26f1606 user: csaba tags: trunk
14:57
* doc/*.html: Minor improvements related to Mac OS X and 11. check-in: 4a1d48ea31 user: csaba tags: trunk
14:56
* ChangeLog: Updated. check-in: 277dfc9688 user: csaba tags: trunk
14:42
* ChangeLog: Corrected two typos. check-in: c931bec4fe user: csaba tags: trunk
14:41
* ../../examples/tablelist/*.tcl: Improvements in the demo scripts. check-in: 201e0ca043 user: csaba tags: trunk
14:40
* doc/aqua.png: Updated screenshot. check-in: 0b384c9fdc user: csaba tags: trunk
14:39
* doc/aqua11.png: Added screenshot. check-in: de2f29cdab user: csaba tags: trunk
14:37
* scripts/utils/pkgIndex.tcl: Fixed a bug related to font scaling on * scripts/utils/scaleutil.tcl: X11. check-in: bb5d7cc654 user: csaba tags: trunk
14:36
* scripts/tclIndex: Newly generated. check-in: 98dd9fed21 user: csaba tags: trunk
14:35
* scripts/*.tcl: The "expand(all)" and "collapse(all)" subcommands no longer depend on the interpreter's recursion limit; drastically reduced the memory consumption of tablelist widgets displaying a deeply nested tree structure and significantly improved their performance; added the tree style "aqua11", which is now the default on macOS 11; fixed a bug related to the interactive row move operation. check-in: 346b5d6279 user: csaba tags: trunk
14:34
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 3f2b7c1b8c user: csaba tags: trunk
14:33
* *.tcl: Bumped the version number to 6.13. * COPYRIGHT.txt: * README.txt: check-in: 3bac872a8f user: csaba tags: trunk
14:32
* ChangeLog: Updated. check-in: bf47431f1e user: csaba tags: trunk
2021-03-23
09:11
* CHANGES.txt: Fixed two typos in the implementation of the * scripts/wheelEvent.tcl: horizontal scrolling with the mouse wheel on X11 via "scrollutil::addMouseWheelSupport". check-in: e4249d3e54 user: csaba tags: trunk
09:10
* ChangeLog: Updated. check-in: a951df7937 user: csaba tags: trunk
2021-03-21
19:47
* ../../examples/scrollutil/styleUtil.tcl: Improvements for the "aqua" theme. check-in: d1f810d6b1 user: csaba tags: trunk
19:46
* ChangeLog: Updated. check-in: 845fa89a03 user: csaba tags: trunk
2021-03-12
20:34
* ../../examples/scrollutil/SuScrollableFrmContent.tcl: Minor * ../../examples/scrollutil/SuScrollableFrmDemo1.tcl: improvements. check-in: 0b843da666 user: csaba tags: trunk
20:33
* ../../examples/scrollutil/ScrolledNotebookDemo.tcl: Added 2 new demo * ../../examples/scrollutil/TtkNotebookDemo.tcl: scripts. check-in: 766aaddc45 user: csaba tags: trunk
20:32
* doc/ScrolledNotebookDemo.png: Added screenshot. check-in: 042f2b2345 user: csaba tags: trunk
20:32
* scripts/utils/pkgIndex.tcl: Fixed a bug related to font scaling on * scripts/utils/scaleutil.tcl: X11. check-in: 8b3104402c user: csaba tags: trunk
20:31
* scripts/tclIndex: Newly generated. check-in: f650e3d729 user: csaba tags: trunk
20:30
* scripts/*.tcl: The "autosize" scrollableframe subcommand now sets the widget's width and/or height with a delay of 100 ms, rather than invoking "update idletasks"; added the "xview <units>" and "yview <units>" scrollableframe subcommands; added the scrollednotebook widget; implemented the navigation between the tabs of a ttk::notebook or scrollednotebook widget via the mouse wheel (TIP 591) and the support for moving the tabs with the mouse; fixed a bug related to the scrollbar mode "static" of the scrollarea widget. check-in: 048c726730 user: csaba tags: trunk
20:29
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 985646ab60 user: csaba tags: trunk
20:28
* *.tcl: Bumped the version number to 1.9. * COPYRIGHT.txt: * README.txt: check-in: 58e1f0dbb5 user: csaba tags: trunk
20:27
* Changelog: Updated. check-in: 0ab9211cb4 user: csaba tags: trunk
2021-03-03
21:34
chatwidget - B - Ticket [b073f17fa0] Fix error on repetitive [names show] and [names hide]. Bumped to version 1.1.2. check-in: 26eaf04814 user: gay tags: trunk
20:59
chatwidget - B - Ticket [b073f17fa0] Fix error on empty name list. Bumped to version 1.1.1. check-in: 8cd54c996c user: gay tags: trunk
2021-02-03
12:08
* Released Mentry 3.12. check-in: 5149bde9c5 user: csaba tags: trunk
12:07
* Released Scrollutil 1.8. check-in: d7f8cffb7b user: csaba tags: trunk
12:04
* Released Tablelist 6.12. check-in: 9c0b5d41fb user: csaba tags: trunk
2021-02-02
17:44
* doc/ScrollableFrmDemo2.png: Updated for latest Tablelist * ../../examples/scrollutil/*Content.tcl: changes. check-in: 9775ad5e3f user: csaba tags: trunk
17:43
* ChangeLog: Updated. check-in: e83413b3dd user: csaba tags: trunk
17:30
* CHANGES.txt: Renamed "-editendonmodifclick" to * scripts/tablelistBind.tcl: "-editendonmodclick". * scripts/tablelistConfig.tcl: * scripts/tablelistWidget.tcl: * doc/tablelistWidget.html: check-in: a34176db04 user: csaba tags: trunk
17:29
* ChangeLog: Updated. check-in: 81f94de4ef user: csaba tags: trunk
16:21
* CHANGES.txt: Added the "-editendonmodifclick" * scripts/tablelistBind.tcl: configuration option; improvements * scripts/tablelistConfig.tcl: related to the termination of * scripts/tablelistEdit.tcl: interactive cell editing. * scripts/tablelistWidget.tcl: * doc/tablelistWidget.html: check-in: 025ce7d39d user: csaba tags: trunk
16:19
* ChangeLog: Updated. check-in: 1ce297b215 user: csaba tags: trunk
2021-02-01
17:35
* ../../examples/scrollutil/*.tcl: Demo scripts using scrollabe widget containers slightly improved again. check-in: bc6bd6d880 user: csaba tags: trunk
16:22
* ../../examples/scrollutil/*.tcl: Demo scripts using scrollabe widget containers slightly improved. check-in: a694b760d8 user: csaba tags: trunk
16:20
* ChangeLog: Updated. check-in: 49d57e1484 user: csaba tags: trunk
10:47
* ../../examples/mentry/*.tcl: Updated the copyright information. check-in: da58795bb5 user: csaba tags: trunk
10:45
* scripts/*.tcl: Added support for the platform-independent * scripts/mwutil/*.tcl: handling of mouse wheel events (TIP 474); updated the mwutil package to version 2.18, like in Tablelist6.12; updated the copyright information. check-in: bb6df6f23e user: csaba tags: trunk
10:44
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 4e2a668e0a user: csaba tags: trunk
10:43
* *.tcl: Bumped the version number to 3.12; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 86a3b283ac user: csaba tags: trunk
10:42
* ChangeLog: Updated. check-in: 4f7b225bca user: csaba tags: trunk
10:38
* ../../examples/scrollutil/*.tcl: Using the "autosize" scrollableframe subcommand; several improvements; updated the copyright information. check-in: 4ba81389bd user: csaba tags: trunk
10:37
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 974f4872f6 user: csaba tags: trunk
10:36
* scripts/utils/*.tcl: Fixed a regression related to font scaling on X11 if the display's DPI scaling level is > 100 %, introduced in the previous release; updated the copyright information. check-in: 93a0a0d8ef user: csaba tags: trunk
10:35
* scripts/tclIndex: Newly generated. check-in: de6298c610 user: csaba tags: trunk
10:34
* scripts/*.tcl: Added support for the platform-independent * scripts/utils/mwutil.tcl: handling of mouse wheel events (TIP 474); added the "autosize" scrollableframe subcommand; changed the default width and height of the scrollableframe widget to 10c and 7c, respectively; updated the mwutil package to version 2.18, like in Tablelist6.12; updated the copyright information. check-in: 439f3a1fe9 user: csaba tags: trunk
10:28
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 103bd168a7 user: csaba tags: trunk
10:27
* *.tcl: Bumped the version number to 1.8; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 136bb26bdb user: csaba tags: trunk
10:26
* ChangeLog: Updated. check-in: e4c077fe1b user: csaba tags: trunk
10:24
* scripts/utils/*.tcl: Improved the font scaling on X11 in the calendar component of an iwidgets::dateentry widget used for interactive cell editing; fixed a regression related to font scaling on X11 if the display's DPI scaling level is > 100 %, introduced in the previous release; the file scaleutilMisc.tcl now implements the new scaleutilmisc package; updated the copyright information. check-in: 1a768ee3dd user: csaba tags: trunk
10:22
* scripts/tclIndex: Newly generated. check-in: 4fde9da33c user: csaba tags: trunk
10:22
* scripts/*.tcl: Added support for the platform-independent * scripts/utils/mwutil.tcl: handling of mouse wheel events (TIP 474); added the "-editendonfocusout" and "-itembackground" configuration options; added the "autoscrolltarget" and "stopautoscroll" subcommands; fixed a few long-standing issues related to the "yview" subcommand; updated the copyright information. check-in: dd678adb24 user: csaba tags: trunk
10:20
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 45af386447 user: csaba tags: trunk
10:19
* *.tcl: Bumped the version number to 6.12; * COPYRIGHT.txt: updated the copyright information. * README.txt: * ../../examples/tablelist/*.tcl: check-in: 866e23e32e user: csaba tags: trunk
10:18
ChangeLog: Updated. check-in: 57fb51a160 user: csaba tags: trunk
2021-01-10
10:54
* support/installation/actions.tcl: Proc _tab now passes 1 as 3rd argument to xcopy. check-in: 29e6d0e6da user: csaba tags: trunk
10:53
* ChangeLog: Updated. check-in: 817c03b8f5 user: csaba tags: trunk
2020-12-09
15:56
* scripts/scrollarea.tcl: Trace procedure slightly improved. check-in: 400d4a137c user: csaba tags: trunk
15:55
* ChangeLog: Updated. check-in: 0d70b5a489 user: csaba tags: trunk
15:51
* scripts/tablelistWidget.tcl: Trace procedure slightly improved. check-in: a378b5ec56 user: csaba tags: trunk
15:50
* ChangeLog: Updated. check-in: 2a7aa61960 user: csaba tags: trunk
2020-12-03
20:30
* scripts/tclIndex: Newly generated. check-in: d104aff3c2 user: csaba tags: trunk
20:29
* scripts/tablelistThemes.tcl: Added support for awthemes * scripts/tablelistUtil.tcl: 10.0. * ../../examples/tablelist/config_tile.tcl: * ../../examples/tablelist/option_tile.tcl: * ../../examples/tablelist/tileWidgets.tcl: check-in: ea33b37d1c user: csaba tags: trunk
20:28
* ChangeLog: Updated. check-in: bf1a33bd38 user: csaba tags: trunk
20:26
* scripts/tclIndex: Newly generated. check-in: 46e825bb94 user: csaba tags: trunk
20:25
* scripts/mentryThemes.tcl: Added support for awthemes 10.0. * scripts/mentryWidget.tcl: check-in: c9cb478af6 user: csaba tags: trunk
20:24
* ChangeLog: Updated. check-in: dd0729d1d1 user: csaba tags: trunk
2020-12-01
20:49
* README.txt: Corrected: "http" -> "https". * doc/mentry.html: check-in: 53c950eb82 user: csaba tags: trunk
20:48
* ChangeLog: Updated. check-in: 12b8ee6395 user: csaba tags: trunk
20:47
* README.txt: Corrected: "http" -> "https". * doc/wcb.html: check-in: ebc1fd79b9 user: csaba tags: trunk
20:46
* ChangLog: Updated. check-in: bf4a6c4f9c user: csaba tags: trunk
12:20
* scripts/tclIndex: Newly generated. check-in: 48d54f36d1 user: csaba tags: trunk
12:19
* scripts/tablelistBind.tcl: Improvements in the bindings for <Shift-Button-1> and <Control-Button-1>. check-in: 66e7540847 user: csaba tags: trunk
12:18
* ChangeLog: Updated. check-in: 68cee924e6 user: csaba tags: trunk
2020-11-28
11:47
* scripts/tablelistBind.tcl: Minor improvements. * scripts/tablelistUtil.tcl: check-in: 6432e24bd7 user: csaba tags: trunk
11:46
* ChangeLog: Updated. check-in: 7f5895673e user: csaba tags: trunk
2020-11-25
20:57
* scripts/tablelistWidget.tcl: Slightly improved. check-in: 57306614a2 user: csaba tags: trunk
20:56
* ChangeLog: Updated. check-in: 81582b8117 user: csaba tags: trunk
2020-11-22
15:42
* ../../examples/tablelist/config_tile.tcl: Made TIP 278 conformant. check-in: 9214b39cb1 user: csaba tags: trunk
15:41
* ChangeLog: Updated. check-in: 6c626cf0e0 user: csaba tags: trunk
2020-11-21
15:34
* scripts/tablelistBind.tcl: Minor improvements. * scripts/tablelistUtil.tcl: * scripts/tablelistWidget.tcl: * doc/tablelist.html: * ../../examples/tablelist/embeddedWindows*.tcl: check-in: 61a7e8d43e user: csaba tags: trunk
15:30
* ChangeLog: Updated. check-in: e94db1e473 user: csaba tags: trunk
2020-11-14
18:26
* doc/tablelistWidget.html: Slightly improved. check-in: 7647f4120c user: csaba tags: trunk
18:25
* doc/scrollableframe.html: Slightly improved. check-in: d84333ac33 user: csaba tags: trunk
18:24
* ChangeLog: Updated. check-in: 91ba25ad91 user: csaba tags: trunk
18:24
* ChangeLog: Updated. check-in: dbb430fb46 user: csaba tags: trunk
2020-11-08
20:21
* scripts/utils/scaleutil.tcl: Corrected a typo. check-in: 68eacd0a4d user: csaba tags: trunk
20:20
* ChangeLog: Updated. check-in: dcfa9614cb user: csaba tags: trunk
20:19
* scripts/utils/scaleutil.tcl: Corrected a typo. check-in: 71a1a68cfe user: csaba tags: trunk
20:18
* ChangeLog: Updated. check-in: 220c6b9f45 user: csaba tags: trunk
2020-11-07
16:34
* scripts/utils/scaleutil.tcl: Minor improvement. check-in: 59f138ce7b user: csaba tags: trunk
16:33
* ChangeLog: Updated. check-in: cfca7ac100 user: csaba tags: trunk
16:28
* scripts/utils/pkgIndex.tcl: Moved part of scaleutil.tcl into the new file * scripts/utils/scaleutil.tcl: scaleutilMisc.tcl. * scripts/utils/scaleutilMisc.tcl: check-in: 2eb02f9e5d user: csaba tags: trunk
16:26
* tablelistCommon.tcl: Updated the scaleutil version. check-in: 0e9dbf7893 user: csaba tags: trunk
16:24
* ChangeLog: Updated. check-in: 8500c68bc1 user: csaba tags: trunk
2020-11-06
10:17
* ChangeLog: Corrected the date. check-in: aeb876fd77 user: csaba tags: trunk
10:15
* scripts/mentryDateTime.tcl: Improved the mouse wheel event handling. * scripts/mentryIPAddr.tcl: * scripts/mentryIPv6Addr.tcl: check-in: 8d5f180540 user: csaba tags: trunk
10:14
* ChangeLog: Updated. check-in: 1877dd060e user: csaba tags: trunk
2020-11-05
17:53
* scripts/tclIndex: Newly generated. check-in: a7824d0d0e user: csaba tags: trunk
17:53
* scripts/tablelistBind.tcl: Cleanup for mouse wheel handling. check-in: 754b328e98 user: csaba tags: trunk
17:52
* ChangeLog: Updated. check-in: d46145a453 user: csaba tags: trunk
2020-11-03
15:40
* scripts/wheelEvent.tcl: Minor improvement. check-in: c3a8eaab14 user: csaba tags: trunk
15:38
* ChangeLog: Updated. check-in: 162f9ed9f3 user: csaba tags: trunk
2020-10-20
10:27
* scripts/mentryThemes.tcl: Layout improvements for several themes. * scripts/mentryWidget.tcl: check-in: d36710bf93 user: csaba tags: trunk
10:25
* ChangeLog: Updated. check-in: 8228989442 user: csaba tags: trunk
2020-10-17
18:49
* scripts/tclIndex: Newly generated. check-in: 2066a03fc7 user: csaba tags: trunk
18:49
* CHANGES.txt: Improvements and updates related to * scripts/tablelistThemes.tcl: awthemes 9.4. * scripts/tablelistUtil.tcl: * doc/tablelist.html: * doc/tablelistWidget.html: * ../../examples/tablelist/*.tcl: check-in: 0b8567a93d user: csaba tags: trunk
18:45
* ChangeLog: Updated. check-in: 7897e7c4f3 user: csaba tags: trunk
18:44
* scripts/tclIndex: Newly generated. check-in: 5d919d87a0 user: csaba tags: trunk
18:43
* CHANGES.txt: Improvements and updates related to * scripts/mentryThemes.tcl: awthemes 9.4. check-in: 944b6e5bee user: csaba tags: trunk
18:40
* ChangeLog: Updated. check-in: 85250ed494 user: csaba tags: trunk
2020-10-14
17:24
* scripts/tclIndex: Newly generated. check-in: 957064b570 user: csaba tags: trunk
17:23
* CHANGES.txt: Minor corrections. * doc/tablelist.html: check-in: 7efb45cc73 user: csaba tags: trunk
17:21
* CHANGES.txt: Minor correction. check-in: 169e9476dc user: csaba tags: trunk
16:58
* doc/scrollutil.html: Minor correction. check-in: df9975c703 user: csaba tags: trunk
16:58
* ChangeLog: Updated. check-in: 8e1b8cf1b1 user: csaba tags: trunk
16:53
* scripts/tclIndex: Newly generated. check-in: 03c62006a3 user: csaba tags: trunk
16:52
* CHANGES.txt: Added support for all the themes * scripts/tablelistThemes.tcl: provided by the awthemes package. * doc/tablelist.html: * doc/tablelistWidget.html: * ../../examples/tablelist/*.tcl: check-in: 8042810ffa user: csaba tags: trunk
16:50
* ChangeLog: Updated. check-in: 3db00d7cde user: csaba tags: trunk
16:49
* scripts/tclIndex: Newly generated. check-in: 62d23ccf90 user: csaba tags: trunk
16:48
* CHANGES.txt: Added support for all the themes provided * scripts/mentryThemes.tcl: by the awthemes package. * scripts/mentryWidget.tcl: check-in: 82f8e2ef8a user: csaba tags: trunk
16:46
* ChangeLog: Updated. check-in: 2f05953f25 user: csaba tags: trunk
2020-10-10
10:04
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 0cfe8f6fcf user: csaba tags: trunk
10:03
* scripts/utils/scaleutil.tcl: Improvements related to the X11 fonts. check-in: 766a4adbfb user: csaba tags: trunk
10:02
* ChangeLog: Updated. check-in: a30e067fcd user: csaba tags: trunk
08:01
* CHANGES.txt: Minor correction. check-in: 9c931169f2 user: csaba tags: trunk
08:00
* CHANGES.txt: Minor correction. check-in: b97a09d95c user: csaba tags: trunk
2020-10-09
19:13
* scripts/tclIndex: Newly generated. check-in: f0281aaa0f user: csaba tags: trunk
19:12
* scripts/utils/scaleutil.tcl: Improvements related to the X11 fonts. check-in: e800246534 user: csaba tags: trunk
19:11
* scripts/tablelistImages.tcl: Added the tree styles "white100", * scripts/tablelistWidget.tcl: "white125", ..., "white200". * doc/tablelistWidget.html: * doc/white*.png: check-in: ccb9b21394 user: csaba tags: trunk
19:09
* scripts/tablelistEdit.tcl: Added support for the "awdark" theme. * scripts/tablelistThemes.tcl: * doc/tablelist.html: * ../../examples/tablelist/*.tcl: check-in: 22bb646529 user: csaba tags: trunk
19:04
* CHANGES.txt: Updated. check-in: b52d1c6d7e user: csaba tags: trunk
19:03
* ChangeLog: Updated. check-in: 1eb30eb486 user: csaba tags: trunk
18:23
* scripts/tclIndex: Newly generated. check-in: c412361e47 user: csaba tags: trunk
18:22
* CHANGES.txt: Added support for the "awdark" theme; many * scripts/mentryThemes.tcl: improvements for Mentry_tile. * scripts/mentryWidget.tcl: check-in: 7cc48152fe user: csaba tags: trunk
18:20
* ChangeLog: Updated. check-in: 2a1e3d53b5 user: csaba tags: trunk
2020-10-03
14:01
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: 58a79bb498 user: csaba tags: trunk
14:00
* scripts/utils/mwutil.tcl: Updated. check-in: 975fb58b28 user: csaba tags: trunk
14:00
* ChangeLog: Updated. check-in: f68ff37f38 user: csaba tags: trunk
11:49
* CHANGES.txt: Dropped the requirement that changing the * scripts/mwutil/mwutil.tcl: theme is done using the "ttk::setTheme" * doc/mentry.html: command, which was necessary for older * doc/mentryThemes.html: tile versions. check-in: 8c4b5ea985 user: csaba tags: trunk
11:47
* ChangeLog: Updated. check-in: 3b158026a0 user: csaba tags: trunk
11:46
* CHANGES.txt: Dropped the requirement that changing the * scripts/utils/mwutil.tcl: theme is done using the "ttk::setTheme" * doc/tablelist.html: command, which was necessary for older tile * doc/tablelistThemes.html: versions. check-in: 70eb824f2c user: csaba tags: trunk
11:45
* ChangeLog: Updated. check-in: 46581fd957 user: csaba tags: trunk
2020-09-24
14:12
* tablelistWidget.tcl: Minor cosmetic improvement. check-in: ea8fd0700d user: csaba tags: trunk
13:49
* doc/scrollableframe.html: Restored the mwutil::getScrollInfo2 * scripts/scrollsync.tcl: command. * scripts/utils/mwutil.tcl: check-in: f768b63414 user: csaba tags: trunk
13:47
* ChangeLog: Updated. check-in: 3a31b0199a user: csaba tags: trunk
13:41
* scripts/tablelistWidget.tcl: Restored the mwutil::getScrollInfo2 * scripts/utils/mwutil.tcl: command. check-in: 412b2e18a0 user: csaba tags: trunk
13:39
* ChangeLog: Updated. check-in: ea177d3e4a user: csaba tags: trunk
13:35
* scripts/mwutil/mwutil.tcl: Restored the getScrollInfo2 command. check-in: dc035ceed6 user: csaba tags: trunk
13:32
* ChangeLog: Updated. check-in: 3a0d0a112e user: csaba tags: trunk
2020-09-23
11:12
* doc/scrollarea.html: Description of the "-lockinterval" option slightly extended. check-in: c9ab1bf207 user: csaba tags: trunk
11:11
* scripts/scrollarea.tcl: Activated the scrollbar locking in unmapped state, too. check-in: 38df94a7c1 user: csaba tags: trunk
11:10
* ChangeLog: Updated. check-in: 4c364f96e6 user: csaba tags: trunk
2020-09-20
17:02
* ChangeLog: Extended. check-in: 5700235969 user: csaba tags: trunk
16:57
* doc/*.png: Updated the screenshots. check-in: 4c211f0f02 user: csaba tags: trunk
16:54
* ../../examples/wcb/*.tcl: Made the demo-scripts scaling-aware; updated the copyright information. check-in: b1d06c442e user: csaba tags: trunk
16:52
* doc/stylesheet.css: Updated. check-in: b1e5316631 user: csaba tags: trunk
16:51
* scripts/*.tcl: Updated the copyright information. check-in: a13a06f562 user: csaba tags: trunk
16:50
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 6de93b9197 user: csaba tags: trunk
16:49
* *.tcl: Bumped the version number to 3.7; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 45d6a93b48 user: csaba tags: trunk
16:48
* ChangeLog: Updated for Wcb 3.7. check-in: c634fc5bcd user: csaba tags: trunk
13:08
* ../../examples/mentry/option.tcl: Improvement related to font scalabilty. check-in: dcdd9b7f04 user: csaba tags: trunk
13:07
* doc/wcbRef.html: Updated to the version included in Wcb 3.7. check-in: a58d668e28 user: csaba tags: trunk
13:06
* ChangeLog: Updated. check-in: 770075bba4 user: csaba tags: trunk
13:04
* ../../examples/tablelist/*.tcl: Improvements related to font scalabilty. check-in: 3e23457770 user: csaba tags: trunk
13:03
* CHANGES.txt: Updated. * doc/tablelist.html: check-in: 786f0a4e8d user: csaba tags: trunk
13:02
* ChangeLog: Updated. check-in: 4a1aeae15b user: csaba tags: trunk
2020-09-19
18:26
* scripts/scrollableframe.tcl: Corrected the invocations of seerectSubCmd from within seeSubCmd. check-in: 89d217619e user: csaba tags: trunk
18:24
* ChangeLog: Updated. check-in: 5ff0b6817c user: csaba tags: trunk
16:20
* CHANGES.txt: Set the recommended maximum for the value of the "-lockinterval" scrollarea option to 300. check-in: 20c6803271 user: csaba tags: trunk
16:19
* ChangeLog: Updated. check-in: c69f93ac51 user: csaba tags: trunk
13:43
* doc/scrollarea.html: Description of the "-lockinterval" option slightly extended. check-in: abcb83415a user: csaba tags: trunk
13:43
* scripts/scrollableframe.tcl: Minor improvements related to the * doc/scrollableframe.html: "seerect" subcommand. check-in: 8ef781a80a user: csaba tags: trunk
13:41
* ChangeLog: Updated. check-in: 4b5ae82af4 user: csaba tags: trunk
2020-09-15
19:13
* CHANGES.txt: Corrected a typo. check-in: 01caba68db user: csaba tags: trunk
19:12
* ChangeLog: Updated. check-in: 55fac3d39c user: csaba tags: trunk
16:33
* scripts/tclIndex: Newly generated. check-in: 0d44c622a3 user: csaba tags: trunk
16:32
* scrollutilCommon.tcl: Added the command * scripts/wheelEvent.tcl: "scrollutil::disableScrollingByWheel". check-in: 63eab91d39 user: csaba tags: trunk
16:30
* scripts/scrollableframe.tcl: Added the "seerect" scrollableframe subcommand. check-in: 221bbcb6af user: csaba tags: trunk
16:30
* CHANGES.txt: Updated to reflect the changes. * doc/scrollableframe.html: * doc/wheelEvent.html: check-in: 296f3ca676 user: csaba tags: trunk
16:28
* ChangeLog: Updated. check-in: b3eb5581a4 user: csaba tags: trunk
2020-09-08
16:53
* ../../examples/scrollutil/*.tcl: With Tk 8.6.10 or later, the demo- scripts now fully support the Dark Mode appearance on Mac OS 10.14 and later. check-in: 25218af6d9 user: csaba tags: trunk
16:51
* doc/ScrollableFrmDemo2.png: Updated screenshots. * doc/ScrolledTablelist.png: check-in: 4523ee6a4e user: csaba tags: trunk
16:49
* scripts/tclIndex: Newly generated. check-in: 5cf0dbd334 user: csaba tags: trunk
16:48
* scripts/utils: Moved mwutil.tcl and scaleutil.tcl to * scripts/utils/mwutil.tcl: the new subdirectory utils and made them * scripts/utils/scaleutil.tcl: to packages; updated mwutil.tcl to * scripts/utils/pkgIndex.tcl: version 2.17, like in Tablelist 6.11. check-in: 78b93d9380 user: csaba tags: trunk
16:47
* scripts/*.tcl: Added the "-autohidescrollbars" scrollarea configuration option; the scrollableframe widget is now automatically registered for scrolling with the mouse wheel at creation time; reworked the invocations of "package vcompare", taking into account that Tcl versions earlier than 8.5 did not support the letters "a" and "b" in version numbers. check-in: 489302de93 user: csaba tags: trunk
16:44
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: a7c1d47ce0 user: csaba tags: trunk
16:43
* *.tcl: Bumped the version number to 1.7. * COPYRIGHT.txt: * README.txt: check-in: 36effdc955 user: csaba tags: trunk
16:40
* Updated for Scrollutil 1.7. check-in: 695dca021c user: csaba tags: trunk
15:08
* ../../examples/mentry/*.tcl: Made the demo-scripts scaling-aware; with Tk 8.6.10 or later, they now fully support the Dark Mode appearance on Mac OS 10.14 and later; updated the copyright information. check-in: 76bd6bc6ec user: csaba tags: trunk
15:07
* doc/*.png: Updated the screenshots. check-in: 56afae3127 user: csaba tags: trunk
15:06
* doc/stylesheet.css: Updated. check-in: 311a97e1e6 user: csaba tags: trunk
15:05
* scripts/tclIndex: Newly generated. check-in: b5d62984d6 user: csaba tags: trunk
15:02
* scripts/mwutil: Moved mwutil.tcl to the new subdirectory * scripts/mwutil/mwutil.tcl: mwutil and made it to a package; updated * scripts/mwutil/pkgIndex.tcl: to version 2.17, like in Tablelist 6.11. check-in: 4c46642802 user: csaba tags: trunk
15:01
* scripts/*.tcl: Adapted the "aqua" theme support to Tk releases 8.6.10 and 8.6.11, including the support for the Dark Mode appearance; handling the virtual events <<LightAqua>> and <<DarkAqua>> by updating the overall appearance of the mentry widgets; added the virtual event <<MentryThemeDefaultsChanged>> and sent to the main window when handling the virtual events <<ThemeChanged>>, <<LightAqua>>, and <<DarkAqua>>; reworked the invocations of "package vcompare", taking into account that Tcl versions earlier than 8.5 did not support the letters "a" and "b" in version numbers; updated the copyright information. check-in: 8619e64505 user: csaba tags: trunk
14:58
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 5fcbf0c8fc user: csaba tags: trunk
14:57
* mentryCommon.tcl: Replaces the former mentryPublic.tcl; bumped the version number to 3.11; updated the copyright information. check-in: b8f5ff6cad user: csaba tags: trunk
14:56
* *.tcl: Bumped the version number to 3.11; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: bca8ccdc2a user: csaba tags: trunk
14:54
* Updated for Mentry 3.11. check-in: a0b063fe73 user: csaba tags: trunk
14:43
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.11; with Tk 8.6.10 or later, the demo-scripts browse(Tree)_tile.tcl, config_tile.tcl, dirViewer_tile.tcl, embeddedWindows_tile.tcl, and tileWidgets.tcl now fully support the Dark Mode appearance on Mac OS 10.14 and later. check-in: fc449d499c user: csaba tags: trunk
14:41
* scripts/tclIndex: Newly generated. check-in: 8253ac2aeb user: csaba tags: trunk
14:40
* scripts/utils: Moved mwutil.tcl and scaleutil.tcl to * scripts/utils/mwutil.tcl: the new subdirectory utils and made them * scripts/utils/scaleutil.tcl: to packages. * scripts/utils/pkgIndex.tcl: check-in: 1f461ec4cf user: csaba tags: trunk
14:37
* scripts/*.tcl: Updated the "aqua" theme support and extended it by support for the Dark Mode appearance; handling the virtual events <<LightAqua>> and <<DarkAqua>> by updating the overall appearance of the tablelist widgets; added the virtual event <<TablelistThemeDefaultsChanged>> and sent to the main window when handling the virtual events <<ThemeChanged>>, <<LightAqua>>, and <<DarkAqua>>; improvements related to laying out the widget used for interactive cell editing; reworked the invocations of "package vcompare", taking into account that Tcl versions earlier than 8.5 did not support the letters "a" and "b" in version numbers. check-in: ecbe661c04 user: csaba tags: trunk
14:35
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 9488faa015 user: csaba tags: trunk
14:34
* tablelistCommon.tcl: Replaces the former tablelistPublic.tcl; bumped the version number to 6.11. check-in: ccb558d122 user: csaba tags: trunk
14:33
* *.tcl: Bumped the version number to 6.11. * COPYRIGHT.txt: * README.txt: check-in: 05e419aa4e user: csaba tags: trunk
14:31
* Updated for Tablelist 6.11. check-in: 50edf49b39 user: csaba tags: trunk
2020-06-27
16:32
* CHANGES.txt: Minor improvements. * doc/scrollutil.html: check-in: ddfa0c90a2 user: csaba tags: trunk
16:30
* CHANGES.txt: Minor improvements. * doc/scrollutil.html: check-in: ff80fe5dbb user: csaba tags: trunk
16:30
* CHANGES.txt: Minor improvements. * scripts/scaleutil.tcl: * doc/tablelist.html: check-in: 60c006d1a8 user: csaba tags: trunk
16:29
* CHANGES.txt: Minor improvements. * scripts/scaleutil.tcl: * doc/tablelist.html: check-in: 7829bf2a6c user: csaba tags: trunk
2020-06-25
18:33
* ../../examples/scrollutil/*FrmContent.tcl: Minor improvements. * ../../examples/scrollutil/Sync*tcl: check-in: 3729a9f120 user: csaba tags: trunk
18:32
* scripts/scaleutil.tcl: Made sure that the scaled default width of the Tk core scrollbar on X11 won't get overridden by an unscaled resource database value. check-in: 734e8d7a9f user: csaba tags: trunk
18:31
* scripts/scaleutil.tcl: Made sure that the scaled default width of the Tk core scrollbar on X11 won't get overridden by an unscaled resource database value. * ../../examples/scrollutil/*FrmContent.tcl: Minor improvements. * ../../examples/scrollutil/Sync*tcl: check-in: fca62021f8 user: csaba tags: trunk
18:20
* scripts/scaleutil.tcl: Made sure that the scaled default width of the Tk core scrollbar on X11 won't get overridden by an unscaled resource database value. check-in: b1af1d6908 user: csaba tags: trunk
18:19
* scripts/scaleutil.tcl: Made sure that the scaled default width of the Tk core scrollbar on X11 won't get overridden by an unscaled resource database value. check-in: d35285e49f user: csaba tags: trunk
2020-06-23
19:33
* ../../examples/scrollutil/*FrmDemo1.tcl: Worked around an accuracy * ../../examples/scrollutil/*FrmContent.tcl: problem related to the scaling on Cinnamon. check-in: b8a546538d user: csaba tags: trunk
19:31
* ../../examples/scrollutil/*FrmDemo1.tcl: Worked around an accuracy * ../../examples/scrollutil/*FrmContent.tcl: problem related to the scaling on Cinnamon. check-in: 6be65a0ed6 user: csaba tags: trunk
10:02
* ../../examples/scrollutil/*.tcl: Made the demo-scripts fully scaling-aware. check-in: bba3c2b679 user: csaba tags: trunk
10:00
* doc/*.png Updated screenshots. check-in: 187fa91cd7 user: csaba tags: trunk
09:59
* doc/stylesheet.css: Updated. check-in: b94196d0e9 user: csaba tags: trunk
09:58
* scripts/tclIndex: Newly generated. check-in: 439a75261e user: csaba tags: trunk
09:57
* scripts/wheelEvent.tcl: Adapted the bindings to TIP 563, meaning that the mouse wheel now will scroll a horizontal or vertical scrollbar regardless of whether the "Shift" key is down or not. check-in: 2d552bd381 user: csaba tags: trunk
09:56
* scripts/scrollarea.tcl: Added the read-only public variable "scrollutil::scalingpct" and set it to 100, 125, 150, 175, or 200, correspondig to the display's DPI scaling level. check-in: d47b54cd78 user: csaba tags: trunk
09:55
* scripts/scaleutil.tcl: New file containing scaling-related stuff: getting the display's DPI scaling percentage; scaling the default width of the Tk core scrollbars on X11, the default width of the ttk::scrollbar widget in a few built-in themes, the arrows of the ttk::combobox, ttk::spinbox, and ttk::menubutton widgets, and the indicators of the ttk::checkbutton and ttk::radiobutton widgets; a workaround for a long-standing scaling-related bug in the implementation of the ttk::checkbutton and ttk::radiobutton widgets in the "vista" and "xpnative" themes. check-in: 7b9cee071f user: csaba tags: trunk
09:54
* scripts/mwutil.tcl: Updated. check-in: 2788da0211 user: csaba tags: trunk
09:52
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 014399cfac user: csaba tags: trunk
09:52
* *.tcl: Bumped the version number to 1.6. * COPYRIGHT.txt: * README.txt: check-in: 78c98b0f10 user: csaba tags: trunk
09:49
* Changes for the new Scrollutil version 1.6. check-in: 1b22e0c9ab user: csaba tags: trunk
09:42
* ../../examples/tablelist/*.xbm: Removed comp.xbm and leaf.xbm; added (comp|leaf)100.xbm, (comp|leaf)125.xbm, ..., (comp|leaf)200.xbm. check-in: 226079a6e0 user: csaba tags: trunk
09:32
* ../../examples/tablelist/*.gif: Removed checked.gif, unchecked.gif, and open.gif; added (checked|unchecked|openAction)100.gif, (checked|unchecked|openAction)125.gif, ..., (checked|unchecked|openAction)200.gif. check-in: 6125334d6d user: csaba tags: trunk
09:25
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.10; made all demo-scripts fully scaling-aware. check-in: ff3ff82069 user: csaba tags: trunk
09:23
* doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/plain200.png: * doc/styles.png: * doc/tileWidgets.png: check-in: 0d4946b2e4 user: csaba tags: trunk
09:21
* doc/stylesheet.css: Updated. check-in: 9777e9ef50 user: csaba tags: trunk
09:20
* scripts/tclIndex: Newly generated. check-in: 3169ce4828 user: csaba tags: trunk
09:19
* scripts/scaleutil.tcl: New file containing scaling-related stuff: getting the display's DPI scaling percentage; scaling the default width of the Tk core scrollbars on X11, the default width of the ttk::scrollbar widget in a few built-in themes, the arrows of the ttk::combobox, ttk::spinbox, and ttk::menubutton widgets, and the indicators of the ttk::checkbutton and ttk::radiobutton widgets; a workaround for a long-standing scaling-related bug in the implementation of the ttk::checkbutton and ttk::radiobutton widgets in the "vista" and "xpnative" themes; procedures for scaling several widgets used for interactive cell editing. check-in: e0e150515f user: csaba tags: trunk
09:17
* scripts/*.tcl: Made the variable "tablelist::scalingpct" read-only; automatic scaling of the default arrow style on the windowing system "x11" and for a few tile themes; made sure that the widgets used for interactive cell editing will appear properly scaled. check-in: 06484d736e user: csaba tags: trunk
09:14
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 2bd15d69a4 user: csaba tags: trunk
09:13
* *.tcl: Bumped the version number to 6.10. * COPYRIGHT.txt: * README.txt: check-in: adcd21e30e user: csaba tags: trunk
09:12
* Changes for the new Tablelist version 6.10. check-in: 2e27116b22 user: csaba tags: trunk
2020-06-01
10:28
Add support for Taylor diagrams (increase the package's version to 2.5.0) check-in: d59a943f39 user: markus tags: trunk
2020-04-21
17:36
* ../../examples/tablelist/*.gif: Removed clsdFolder.gif, openFolder.gif, and file.gif; added (clsd|open)Folder100.gif, (clsd|open)Folder125.gif, ..., (clsd|open)Folder200.gif; added file100.gif, file125.gif, .., file200.gif. check-in: 8fbf7a73f0 user: csaba tags: trunk
17:34
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.9; updated the copyright information; the scripts "dirViewer.tcl" and "dirViewer_tile.tcl" now also demonstrate how to use the variable "tablelist::scalingpct" for developing scaling-aware applications. check-in: af1787933e user: csaba tags: trunk
17:19
* doc/adwaita.png: Updated screenshots. * doc/arrowStyles.png: * doc/arrowStyles_vista.png: * doc/dirViewer.png: * doc/ubuntuMate.png: * doc/win10.png: check-in: 1359443902 user: csaba tags: trunk
17:14
* doc/bicolor*png: Renamed (bicolor|classic|plain)1.png, ..., * doc/classic*.png: (bicolor|classic|plain)4.png to * doc/plain*.png: (bicolor|classic|plain)100.png, (bicolor|classic|plain)125.png, (bicolor|classic|plain)150.png, and (bicolor|classic|plain)200.png; updated screenshots; added (bicolor|classic|plain)175.png. check-in: 6ffa4e402c user: csaba tags: trunk
16:59
* scripts/tclIndex: Newly generated. check-in: 8d0b192f41 user: csaba tags: trunk
16:58
* scripts/*.tcl: Significantly extended and improved the code for initializing the variable "tablelist::scalingpct", especially on X11; added the percentage value 175 and the corresponding arrow styles "flat13x7", "flatAngle13x7", and "photo13x7"; removed the arrow styles "flat5x3" and "flat5x4"; changed the tree style names "(bicolor|classic|plain)1", ..., "(bicolor|classic|plain)4" to "(bicolor|classic|plain)100", "(bicolor|classic|plain)125", "(bicolor|classic|plain)150", and "(bicolor|classic|plain)200"; added the tree styles "(bicolor|classic|plain)175"; updated the tree styles "adwaita", "ubuntuMate", and "win10"; made the "refreshsorting" subcommand by orders of magnitude faster; fixed an issue related to the bindings for the edit window; fixed a bug related to the "expand" subcommand for a list of indices; updated the copyright information. check-in: 526e68681b user: csaba tags: trunk
16:57
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 3bb5a3d6fb user: csaba tags: trunk
16:56
* *.tcl: Bumped the version number to 6.9; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 1998c22155 user: csaba tags: trunk
16:52
* *.tcl: Bumped the version number to 6.9; updated the * COPYRIGHT.txt: copyright information. * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Significantly extended and improved the code for initializing the variable "tablelist::scalingpct", especially on X11; added the percentage value 175 and the corresponding arrow styles "flat13x7", "flatAngle13x7", and "photo13x7"; removed the arrow styles "flat5x3" and "flat5x4"; changed the tree style names "(bicolor|classic|plain)1", ..., "(bicolor|classic|plain)4" to "(bicolor|classic|plain)100", "(bicolor|classic|plain)125", "(bicolor|classic|plain)150", and "(bicolor|classic|plain)200"; added the tree styles "(bicolor|classic|plain)175"; updated the tree styles "adwaita", "ubuntuMate", and "win10"; made the "refreshsorting" subcommand by orders of magnitude faster; fixed an issue related to the bindings for the edit window; fixed a bug related to the "expand" subcommand for a list of indices; updated the copyright information. * scripts/tclIndex: Newly generated. * doc/bicolor*png: Renamed (bicolor|classic|plain)1.png, ..., * doc/classic*.png: (bicolor|classic|plain)4.png to * doc/plain*.png: (bicolor|classic|plain)100.png, (bicolor|classic|plain)125.png, (bicolor|classic|plain)150.png, and (bicolor|classic|plain)200.png; updated screenshots; added (bicolor|classic|plain)175.png. * doc/adwaita.png: Updated screenshots. * doc/arrowStyles.png: * doc/arrowStyles_vista.png: * doc/dirViewer.png: * doc/scrollbars.png: * doc/ubuntuMate.png: * doc/win10.png: * ../../examples/tablelist/*.tcl: Bumped the version number to 6.9; updated the copyright information; the scripts "dirViewer.tcl" and "dirViewer_tile.tcl" now also demonstrate how to use the variable "tablelist::scalingpct" for developing scaling-aware applications. * ../../examples/tablelist/*.gif: Removed clsdFolder.gif, openFolder.gif, and file.gif; added (clsd|open)Folder100.gif, (clsd|open)Folder125.gif, ..., (clsd|open)Folder200.gif; added file100.gif, file125.gif, .., file200.gif. check-in: f27ed7358c user: csaba tags: trunk
2020-04-16
23:54
Clean up Fossil commit warnings (fossil test-commit-warning) by removing carriage returns, switching to UTF-8 where appropriate, and configuring Fossil to ignore known binaries. check-in: 41c28aaff2 user: andy tags: trunk
2020-02-09
20:52
Integrated Tklib 0.7 RC into trunk. Updated release information. Tagged Tklib 0.7 Release. check-in: 4a6cbb19d1 user: aku tags: trunk, tklib-0.7, release
20:45
Updated .tap information. Closed-Leaf check-in: 7fbc0db947 user: aku tags: tklib-0-7-rc
20:42
Regenerated local documentation for scrollutil update. check-in: 50d59b6817 user: aku tags: tklib-0-7-rc
2020-02-07
16:36
Merged the changes for Scrollutil 1.5 from trunk to release. check-in: dc658ef333 user: csaba tags: tklib-0-7-rc
2020-02-06
14:09
* doc/scrollutil.html: Minor improvements. check-in: f38162f408 user: csaba tags: trunk
14:08
* doc/scrollutil.html: Minor improvements. check-in: e686a78bf1 user: csaba tags: trunk
2020-02-05
18:14
* ../../examples/scrollutil/ScrolledText.tcl: Added. check-in: 2b1ce120ca user: csaba tags: trunk
18:13
* ../../examples/scrollutil/*.tcl: Several improvements. check-in: e494e6a49b user: csaba tags: trunk
18:12
* doc/ScrolledText.png: Added. check-in: cfd796f297 user: csaba tags: trunk
18:10
* doc/*.html: Updated to reflect the changes; several improvements. check-in: 8bea1af980 user: csaba tags: trunk
18:10
* scripts/tclIndex: Newly generated. check-in: f72a365dc0 user: csaba tags: trunk
18:09
* 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. check-in: ff86f0ffea user: csaba tags: trunk
18:08
* scripts/scrollarea.tcl: Improved the handling of the case that the scrollbar lock prevented a scrollbar of a scrollarea widget from being unmapped. check-in: bddf6d5624 user: csaba tags: trunk
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
2020-01-13
01:16
Merged README fixes from trunk to release. check-in: 4498e3a6bb user: aku tags: tklib-0-7-rc
2020-01-10
16:00
* README.txt: Updated the version number. check-in: 41393b6c9d user: csaba tags: trunk
15:58
* README.txt: Updated the version number. check-in: 838e61fb0a user: csaba tags: trunk
2020-01-09
07:42
Remove superflous return left over from placeholder code. check-in: c336885e89 user: aku tags: tklib-0-7-rc
07:40
Documentation work. - Extended `sak localdoc` to detect pre-made HML documentation (*) and integrate it with the HTML files derived from the doctools files. - Copy the found HTML documentation into the proper destination directory. - Rewrite the TOC files and insert the found modules in the proper location (lists are lexicographically sorted). This code strongly depends on the TOC html format generated by doctools to ease parsing of the HTML. - Regenerated the embedded docs. (Ad *) All modules by Csaba Nemethi (mentry, scrollutil, tablelist, wcb). check-in: 102ae1ec10 user: aku tags: tklib-0-7-rc
07:35
Tweak generation of main index, nicer indent, plus code to undo it in the output. check-in: ccbf817c05 user: aku tags: tklib-0-7-rc
05:07
Updated .tap file (TDK TclApp PackageDef) check-in: 8a27eef2af user: aku tags: tklib-0-7-rc
2020-01-08
04:11
Bump release version to 0.7. check-in: 3e45d98429 user: aku tags: tklib-0-7-rc
04:05
Merge scrollutil from trunk. Updated release README. check-in: 033de041f7 user: aku tags: tklib-0-7-rc
04:02
Updated README check-in: 1de184fef7 user: aku tags: tklib-0-7-rc
2020-01-07
20:19
* ../../examples/scrollutil/*: Minor improvements; updated the copyright information. check-in: fe0f43f466 user: csaba tags: trunk
20:17
* doc/*.html: Updated to reflect the changes; several improvements. check-in: f4bc0092d4 user: csaba tags: trunk
20:16
* scripts/tclIndex: Newly generated. check-in: a0945a732b user: csaba tags: trunk
20:16
* scripts/mwutil.tcl: Minor improvemets; updated the copyright * scripts/scrollableframe.tcl: information. check-in: e9f23d6140 user: csaba tags: trunk
20:14
* scripts/wheelEvent.tcl: Added the command "scrollutil::addMouseWheelSupport; created mouse wheel event class bindings for the ttk::scrollbar widget; automatically invoking "scrollutil::adaptWheelEventHandling" for the scrollbars of the scrollarea whose widget was passed to this command; added the missing pieces of code related to the bindings for mouse buttons 6 and 7 in Tk 8.7.a3 or later on X11; updated the copyright information. check-in: c85b76b140 user: csaba tags: trunk
20:12
* scripts/scrollsync.tcl: Added the command "scrollutil::getscrollsync"; updated the copyright information. check-in: c057d9cbc0 user: csaba tags: trunk
20:11
* scripts/scrollarea.tcl: Added the command "scrollutil::getscrollarea"; updated the copyright information. check-in: 3bf8af4be5 user: csaba tags: trunk
20:10
* CHANGES.txt: Updated to reflect the changes. * README.txt: check-in: c453978ddf user: csaba tags: trunk
20:10
* *.tcl: Bumped the version number to 1.4; updated the copyright * COPYRIGHT.txt: information. check-in: daccdae90d user: csaba tags: trunk
20:08
* *.tcl: Bumped the version number to 1.4; updated the copyright * COPYRIGHT.txt: information. * CHANGES.txt: Updated to reflect the changes. * README.txt: * scripts/scrollarea.tcl: Added the command "scrollutil::getscrollarea"; updated the copyright information. * scripts/scrollsync.tcl: Added the command "scrollutil::getscrollsync"; updated the copyright information. * scripts/wheelEvent.tcl: Added the command "scrollutil::addMouseWheelSupport; created mouse wheel event class bindings for the ttk::scrollbar widget; automatically invoking "scrollutil::adaptWheelEventHandling" for the scrollbars of the scrollarea whose widget was passed to this command; added the missing pieces of code related to the bindings for mouse buttons 6 and 7 in Tk 8.7.a3 or later on X11; updated the copyright information. * scripts/mwutil.tcl: Minor improvemets; updated the copyright * scripts/scrollableframe.tcl: information. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes; several improvements. * ../../examples/scrollutil/*: Minor improvements; updated the copyright information. check-in: 1d6b94ddd6 user: csaba tags: trunk
2020-01-06
23:47
Documentation work datefield fixed syntax errors. plotchart fixed warning. Regenerated embedded docs. check-in: 11d00d4997 user: aku tags: tklib-0-7-rc
23:37
ntext: Added missing guard against bad Tcl/Tk core version to index. persistentSelection: As above, and added missing Tcl/Tk requirements to implementation as well. check-in: ac61145e68 user: aku tags: tklib-0-7-rc
23:29
Updated RC work to trunk changes since last look. check-in: 480d59fdb1 user: aku tags: tklib-0-7-rc
2019-12-30
02:07
Refine implementation of notifywindow; use native window styles on macOS and Windows check-in: c99cf4ab07 user: kevin_walzer tags: trunk
2019-12-12
18:45
* ../../examples/scrollutil/SyncListboxes.tcl: Minor improvement. check-in: 85729f60ff user: csaba tags: trunk
18:43
* ../../examples/scrollutil/SyncListboxes.tcl: Minor improvement. check-in: 6488fa564e user: csaba tags: trunk
17:14
* scripts/tablelistBind.tcl: Improvements related to the "aqua" theme. * scripts/tablelistThemes.tcl: * scripts/tablelistUtil.tcl: * scripts/tablelistWidget.tcl: check-in: 4d7bb46f46 user: csaba tags: trunk
17:13
* scripts/tablelistBind.tcl: Improvements related to the "aqua" theme. * scripts/tablelistThemes.tcl: * scripts/tablelistUtil.tcl: * scripts/tablelistWidget.tcl: check-in: 6c43f49f16 user: csaba tags: trunk
2019-12-11
19:28
* doc/*.png: Updated. check-in: 7e75121c7c user: csaba tags: trunk
19:26
* doc/*.png: Updated. check-in: 74fb8efe1d user: csaba tags: trunk
18:51
* ../../examples/scrollutil/styleUtil.tcl: Added. * ../../examples/scrollutil/*.tcl: Numerous improvements. check-in: b468886fe9 user: csaba tags: trunk
18:44
* scripts/wheelEvent.tcl: Added support for nested scrollable widget containers; improved the units computation for "(x|y)view scroll" within the bindings for mouse wheel events; for Tk 8.7.a3 and above on X11, added bindings for horizontal scrolling with the aid of the (virtual) mouse buttons 6 and 7. check-in: 0ad662bf85 user: csaba tags: trunk
18:43
* scripts/scrollableframe.tcl: Added the "scan" subcommand, along with mouse event bindings invoking the latter; significantly improved the handling of the "-width", "-height", "-borderwidth", and "-highlightthickness" options. check-in: 929fe40a3f user: csaba tags: trunk
18:42
* scripts/scrollsync.tcl: Important improvement related to the master widget. check-in: 196dffc5d7 user: csaba tags: trunk
18:42
* scripts/scrollarea.tcl: Using ttk::scrollbar widgets on Mac OS X, too, provided that the Tk release is 8.6.10 or later. check-in: 844588ec82 user: csaba tags: trunk
18:41
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 89bc75ba5e user: csaba tags: trunk
18:40
* *.tcl: Bumped the version number to 1.3. * COPYRIGHT.txt: * README.txt: check-in: 979ff5cf0f user: csaba tags: trunk
18:39
Small correction. check-in: 1554aed82b user: csaba tags: trunk
18:34
* *.tcl: Bumped the version number to 1.3. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/scrollarea.tcl: Using ttk::scrollbar widgets on Mac OS X, too, provided that the Tk release is 8.6.10 or later. * scripts/scrollsync.tcl: Important improvement related to the master widget. * scripts/scrollableframe.tcl: Added the "scan" subcommand, along with mouse event bindings invoking the latter; significantly improved the handling of the "-width", "-height", "-borderwidth", and "-highlightthickness" options. * scripts/wheelEvent.tcl: Added support for nested scrollable widget containers; improved the units computation for "(x|y)view scroll" within the bindings for mouse wheel events; for Tk 8.7.a3 and above on X11, added bindings for horizontal scrolling with the aid of the (virtual) mouse buttons 6 and 7. * scripts/tclIndex: Newly generated. * ../../examples/scrollutil/styleUtil.tcl: Added. * ../../examples/scrollutil/*.tcl: Bumped the version number to 1.3; numerous improvements. check-in: e94b8491ea user: csaba tags: trunk
10:55
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.8; using ttk::scrollbar widgets for the "aqua" theme, too, provided that the Tk release is 8.6.10 or later. check-in: e7fea598b5 user: csaba tags: trunk
10:54
* scripts/tclIndex: Newly generated. check-in: 7af22bad22 user: csaba tags: trunk
10:52
* scripts/*.tcl: Updated and significantly improved the support for Windows 10; adapted the "aqua" theme support to Tk release 8.6.10; improved the units computation for "(x|y)view scroll" within the bindings for mouse wheel events; for Tk 8.7.a3 and above on X11, added bindings for horizontal scrolling with the aid of the (virtual) mouse buttons 6 and 7. check-in: 4db55ad601 user: csaba tags: trunk
10:51
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: e5e27a47f3 user: csaba tags: trunk
10:50
* *.tcl: Bumped the version number to 6.8. * COPYRIGHT.txt: * README.txt: check-in: 5e3f82f13f user: csaba tags: trunk
10:49
* *.tcl: Bumped the version number to 6.8. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Updated and significantly improved the support for Windows 10; adapted the "aqua" theme support to Tk release 8.6.10; improved the units computation for "(x|y)view scroll" within the bindings for mouse wheel events; for Tk 8.7.a3 and above on X11, added bindings for horizontal scrolling with the aid of the (virtual) mouse buttons 6 and 7. * scripts/tclIndex: Newly generated. * ../../examples/tablelist/*.tcl: Bumped the version number to 6.8; using ttk::scrollbar widgets for the "aqua" theme, too, provided that the Tk release is 8.6.10 or later. check-in: 3f01c86134 user: csaba tags: trunk
2019-10-22
14:38
* README.txt: Slightly extended. * doc/scrollutil.html: check-in: c62e762c5d user: csaba tags: trunk
14:32
* README.txt: Slightly extended. * doc/scrollutil.html: check-in: f6f45df995 user: csaba tags: trunk
13:32
* doc/wheelEvent.html: Slightly extended. check-in: 08e0c1c21f user: csaba tags: trunk
13:31
* doc/wheelEvent.html: Slightly extended. check-in: b9ca49d501 user: csaba tags: trunk
09:20
* doc/scrollableframe.html: Extended the description of the "see" subcommand. check-in: f16d51d8fb user: csaba tags: trunk
09:19
* scripts/scrollableframe.tcl: Improvement related to the "see" subcommand. check-in: 5d8b2f34b5 user: csaba tags: trunk
09:19
* scripts/scrollableframe.tcl: Improvement related to the "see" subcommand. * doc/scrollableframe.html: Extended the description of the "see" subcommand. check-in: 75e68d84d9 user: csaba tags: trunk
2019-10-21
19:12
* doc/scrollableframe.html: Minor improvement. check-in: cda9516227 user: csaba tags: trunk
19:12
* doc/scrollableframe.html: Minor improvement. check-in: 841c93005a user: csaba tags: trunk
17:21
* doc/scrollableframe.html: Minor correction. check-in: 1e82cea42a user: csaba tags: trunk
17:20
* scripts/scrollableframe.tcl: Minor improvement. check-in: 80ffa62d60 user: csaba tags: trunk
17:19
* scripts/scrollableframe.tcl: Minor improvement. * doc/scrollableframe.html: Minor correction. check-in: 3257c94cda user: csaba tags: trunk
13:30
* doc/*.html: Bumped the version number to 3.10; various improvements. check-in: a440495ea8 user: csaba tags: trunk
13:29
* doc/stylesheet.css: Updated. check-in: 87ce388a38 user: csaba tags: trunk
13:28
* scripts/tclIndex: Newly generated. check-in: 18473137e7 user: csaba tags: trunk
13:27
* scripts/mwutil.tcl: Updated to the same version 2.15 as in Tablelist release 6.7. check-in: 60cdfbf809 user: csaba tags: trunk
13:27
* CHANGES.txt: Updated to reflect the changes. check-in: 1e9bbb52f6 user: csaba tags: trunk
13:26
* mentryPublic.tcl: Bumped the version number to 3.10; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. check-in: 1d92071429 user: csaba tags: trunk
13:26
* pkgIndex.tcl: Bumped the version number to 3.10. * mentry.tcl: * mentry_tile.tcl: * COPYRIGHT.txt: * README.txt: check-in: 08594080f4 user: csaba tags: trunk
13:25
* pkgIndex.tcl: Bumped the version number to 3.10. * mentry.tcl: * mentry_tile.tcl: * COPYRIGHT.txt: * README.txt: * mentryPublic.tcl: Bumped the version number to 3.10; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. * CHANGES.txt: Updated to reflect the changes. * scripts/mwutil.tcl: Updated to the same version 2.15 as in Tablelist release 6.7. * scripts/tclIndex: Newly generated. * doc/stylesheet.css: Updated. * doc/*.html: Bumped the version number to 3.10; various improvements. check-in: 82b54be324 user: csaba tags: trunk
2019-10-20
12:30
* pkgIndex.tcl: Bumped the version number to 1.2. * scrollutil.tcl: * scrollutil_tile.tcl: * COPYRIGHT.txt: * README.txt: check-in: 9ca3f170a3 user: csaba tags: trunk
12:29
* pkgIndex.tcl: Bumped the version number to 1.2. * scrollutil.tcl: * scrollutil_tile.tcl: * COPYRIGHT.txt: * README.txt: check-in: 642ddc7477 user: csaba tags: trunk
11:34
* ../../examples/scrollutil/ScrolledFrm*.tcl: Updated. check-in: 837f5ecc0f user: csaba tags: trunk
11:33
* ../../examples/scrollutil/ScrollableFrm*.tcl: Updated and renamed to BwScrollableFrm*.tcl. check-in: 66a8a3e04c user: csaba tags: trunk
11:28
* ../../examples/scrollutil/SuScrollableFrm*.tcl: Added. check-in: 1460ca6b69 user: csaba tags: trunk
11:26
* doc/ScrollableFrmDemo2.png: Updated screenshot. check-in: caa63a05ac user: csaba tags: trunk
11:25
* doc/scrollableframe.html: Added. check-in: c65354de30 user: csaba tags: trunk
11:24
* doc/*.html: Updated to reflect the changes; various improvements. check-in: 30fd6dd976 user: csaba tags: trunk
11:22
* doc/stylesheet.css: Updated. check-in: 74ce914f96 user: csaba tags: trunk
11:22
* scripts/tclIndex: Newly generated. check-in: fcf62fda53 user: csaba tags: trunk
11:21
* scripts/*.tcl: Added the scrollableframe widget; significant improvements and bug fixes related to the scrollarea and scrollsync widgets. check-in: 6360430e2d user: csaba tags: trunk
11:19
* CHANGES.txt: Updated to reflect the changes. check-in: 25e27381ac user: csaba tags: trunk
11:18
* scrollutilCommon.tcl: Bumped the version number to 1.2; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. check-in: fd7cb6f8ba user: csaba tags: trunk
11:17
* pkgIndex.tcl: Bumped the version number to 1.2. * scrollutil.tcl: * scrollutil_tile.tcl: * COPYRIGHT.txt: * README.txt: * scrollutilCommon.tcl: Bumped the version number to 1.2; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added the scrollableframe widget; significant improvements and bug fixes related to the scrollarea and scrollsync widgets. * scripts/tclIndex: Newly generated. * doc/stylesheet.css: Updated. * doc/*.html: Updated to reflect the changes; various improvements. * doc/scrollableframe.html: Added. * doc/ScrollableFrmDemo2.png: Updated screenshot. * ../../examples/scrollutil/SuScrollableFrm*.tcl: Added. * ../../examples/scrollutil/ScrollableFrm*.tcl: Updated and renamed to BwScrollableFrm*.tcl. * ../../examples/scrollutil/ScrolledFrm*.tcl: Updated. check-in: ffd306b22a user: csaba tags: trunk
11:15
* doc/*.html: Updated to reflect the changes; various improvements. check-in: 1ccf75b336 user: csaba tags: trunk
11:14
* doc/stylesheet.css: Updated. check-in: f7aa729b99 user: csaba tags: trunk
11:13
* scripts/tclIndex: Newly generated. check-in: 0d8581e01a user: csaba tags: trunk
11:13
* scripts/*.tcl: Optimized the horizontal scrolling by units; many improvements related to the "aqua" theme; made sure that the commands specified as the values of the "-xscrollcommand" and "-yscrollcommand" options will only be invoked if the view's data have changed; fixed a bug related to the "scan" subcommand; several further improvements and minor bug fixes. check-in: 28079883c8 user: csaba tags: trunk
11:12
* CHANGES.txt: Updated to reflect the changes. check-in: 408c42da5f user: csaba tags: trunk
11:11
* tablelistPublic.tcl: Bumped the version number to 6.7; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. check-in: 7d3c05654e user: csaba tags: trunk
11:10
* pkgIndex.tcl: Bumped the version number to 6.7. * tablelist.tcl: * tablelist_tile.tcl: * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: 3eb525af84 user: csaba tags: trunk
11:08
* pkgIndex.tcl: Bumped the version number to 6.7. * tablelist.tcl: * tablelist_tile.tcl: * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: * tablelistPublic.tcl: Bumped the version number to 6.7; no longer creating aliases in the "::tk" namespace for Tk commands for which that namespace already contains a command of the same name. * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Optimized the horizontal scrolling by units; many improvements related to the "aqua" theme; made sure that the commands specified as the values of the "-xscrollcommand" and "-yscrollcommand" options will only be invoked if the view's data have changed; fixed a bug related to the "scan" subcommand; several further improvements and minor bug fixes. * scripts/tclIndex: Newly generated. * doc/stylesheet.css: Updated. * doc/*.html: Updated to reflect the changes; various improvements. check-in: 491bdef384 user: csaba tags: trunk
2019-09-08
16:27
datefield with additional "-format" option to support Dates for German and ISO including MouseWheel-binding. Ticket [fa7e485702] check-in: 121f091d01 user: oehhar tags: trunk
2019-09-06
13:03
merge trunk Leaf check-in: 2d9c2d10ac user: oehhar tags: rfe-fa7e485702
2019-09-03
13:10
* doc/scrollutil.html Slightly extended. check-in: 9649a254c8 user: csaba tags: trunk
13:09
* doc/scrollutil.html Slightly extended. check-in: a441f84d42 user: csaba tags: trunk
2019-08-31
11:50
* ../../examples/scrollutil/SyncListboxes.tcl Minor improvements. * doc/SyncListboxes.png Updated. * doc/scrollutil.html check-in: 2ab23f3c56 user: csaba tags: trunk
11:50
* doc/SyncListboxes.png Updated. * doc/scrollutil.html check-in: a35b1f45a4 user: csaba tags: trunk
11:48
* ../../examples/scrollutil/SyncListboxes.tcl Minor improvements. check-in: 6f29b93901 user: csaba tags: trunk
2019-08-29
15:11
* Added scrollutil to tklib. check-in: bee3def5b3 user: csaba tags: trunk
15:07
* Added scrollutil to tklib. check-in: 79135e1b84 user: csaba tags: trunk
15:04
* Added scrollutil to tklib. check-in: 47ad53ef2b user: csaba tags: trunk
2019-08-23
04:36
Fixing various issues in `widgetPlus`: - Added feedback section to docs. - Added VERSION variable at top of docs for easier future change. - Modified package index to limit package provision to 8.5+ environments. - Put Tcl/Tk version checks at the top of all test files. - Fixed access to `argv` (may not exist). Dropped `eval`. - Added initializations for a number of global variables used in the tests. - Fixed 8.5/8.6 error message differences in entry/spinbox testsuites. General: - Moved sak test shell registry to `$HOME/.Tklib`. Removes the collision with the tets shell registry used by Tcllib. (Different shells needed, with sets of supporting packages). check-in: 1665ab8165 user: aku tags: tklib-0-7-rc
2019-08-22
16:57
Refixed embedded docs in confusion over different checkouts. check-in: 14dec96fba user: aku tags: tklib-0-7-rc
16:38
Begin work on release 0.7. Draft READMEs. Regenerated docs. check-in: b55b66c1fb user: aku tags: tklib-0-7-rc
2019-08-21
18:58
Regenerated docs. check-in: e3bb02ef4e user: aku tags: trunk
18:43
Drop executable flag from plotchart files. check-in: a9ed144cf4 user: aku tags: trunk
18:12
widgetl - widget::list* - Bump package versions for fix in shared message catalog. Bump docs. check-in: b3642cceb5 user: andreask tags: trunk
17:34
Added new module `notifywindow` to the installer. check-in: 6f7b3314e1 user: andreask tags: trunk
2019-07-13
15:37
* CHANGES.txt: Updated. check-in: 54c2f95a9d user: csaba tags: trunk
15:37
* scripts/tablelistMove.tcl: Fixed a bug related to the "move" subcommand. check-in: 07de0bf92a user: csaba tags: trunk
15:36
* scripts/tablelistMove.tcl: Fixed a bug related to the "move" subcommand. * CHANGES.txt: Updated. check-in: e0c0113e74 user: csaba tags: trunk
11:36
* scripts/tablelistConfig.tcl: Removed the restrictions related to the * scripts/tablelistWidget.tcl: scrollutil::scrollarea widget. check-in: 7c4cbab18a user: csaba tags: trunk
11:35
* scripts/tablelistConfig.tcl: Removed the restrictions related to the * scripts/tablelistWidget.tcl: scrollutil::scrollarea widget. check-in: cff7e48b2a user: csaba tags: trunk
2019-07-08
13:20
* scripts/tablelistWidget.tcl: Reverted the change in the procedure tablelist::vertMoveTo. check-in: c3fa72d839 user: csaba tags: trunk
13:18
* scripts/tablelistWidget.tcl: Reverted the change in the procedure tablelist::vertMoveTo. check-in: 6397e132ea user: csaba tags: trunk
2019-07-06
17:50
* doc/adwaita.png: Updated screenshots. * doc/arrowStyles_vista.png: check-in: 4713178d5f user: csaba tags: trunk
17:47
* doc/*.html: Updated to reflect the changes; improved and extended the description of the "-height" option in the reference manual; added references to the new Scrollutil package and an example showing how the scrollutil::scrollarea widget can be used to make the creation of a scrolled tablelist quite simple. check-in: deffd2c563 user: csaba tags: trunk
17:46
* scripts/tclIndex: Newly generated. check-in: ed5bcd155e user: csaba tags: trunk
17:45
* scripts/*.tcl: Added mouse bindings for column-wise cell selection; new "-selectfiltercommand" widget and column configuration option; improved the interactive editing of multi-line cells; updated the tree style "adwaita"; eliminated the flickering in the presence of header items; fixed a bug related to the error handling in the tablelist configuration at widget creation time in the presence of the "-columntitles" option; several further improvements and minor bug fixes. check-in: fc0d29135d user: csaba tags: trunk
17:44
* CHANGES.txt: Updated to reflect the changes. check-in: a75f6e044b user: csaba tags: trunk
17:42
* *.tcl: Bumped the version number to 6.6. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: 4c96acabfd user: csaba tags: trunk
17:40
* *.tcl: Bumped the version number to 6.6. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added mouse bindings for column-wise cell selection; new "-selectfiltercommand" widget and column configuration option; improved the interactive editing of multi-line cells; updated the tree style "adwaita"; eliminated the flickering in the presence of header items; fixed a bug related to the error handling in the tablelist configuration at widget creation time in the presence of the "-columntitles" option; several further improvements and minor bug fixes. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes; improved and extended the description of the "-height" option in the reference manual; added references to the new Scrollutil package and an example showing how the scrollutil::scrollarea widget can be used to make the creation of a scrolled tablelist quite simple. * doc/adwaita.png: Updated screenshots. * doc/arrowStyles_vista.png: check-in: 2f55658c7e user: csaba tags: trunk
2019-05-01
17:23
* CHANGES.txt: Slightly extended. check-in: 95e8c7eccc user: csaba tags: trunk
17:22
* CHANGES.txt: Slightly extended. check-in: f550c7866e user: csaba tags: trunk
15:32
* doc/mentry.html: Minor improvements. * doc/mentryDateTime.html: check-in: 6d7e08ad15 user: csaba tags: trunk
15:32
* doc/mentry.html: Minor improvements. * doc/mentryDateTime.html: check-in: cd2233fc69 user: csaba tags: trunk
2019-04-23
19:10
* ../../examples/mentry/*.tcl: Updated the copyright information. check-in: 285912d914 user: csaba tags: trunk
19:09
(no comment) check-in: a4f2510329 user: csaba tags: trunk
19:05
* scripts/tclIndex: Newly generated. check-in: 2c11c6560a user: csaba tags: trunk
19:05
* scripts/*.tcl: Included the same version of "mwutil.tcl" as in Tablelist release 6.5; corrected two typos related to the "hasattrib" and "unsetattrib" subcommands; updated the copyright information. check-in: 7b953edc6e user: csaba tags: trunk
19:04
* doc/*.html: Bumped the version number to 3.9. check-in: d31c6843c3 user: csaba tags: trunk
19:03
* CHANGES.txt: Updated to reflect the changes. check-in: bdddec3cb3 user: csaba tags: trunk
19:03
* *.tcl: Bumped the version number to 3.9; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: ff6a319d0b user: csaba tags: trunk
19:02
* *.tcl: Bumped the version number to 3.9; updated the * COPYRIGHT.txt: copyright information. * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: Bumped the version number to 3.9. * scripts/*.tcl: Included the same version of "mwutil.tcl" as in Tablelist release 6.5; corrected two typos related to the "hasattrib" and "unsetattrib" subcommands; updated the copyright information. * scripts/tclIndex: Newly generated. * ../../examples/*.tcl: Updated the copyright information. check-in: 71f8d1c2f6 user: csaba tags: trunk
2019-04-18
11:35
* CHANGES.txt: Slightly extended. check-in: 7068da144d user: csaba tags: trunk
11:34
* CHANGES.txt: Slightly extended. check-in: f407a6d508 user: csaba tags: trunk
2019-04-14
17:59
* doc/scrollbars.png: Updated screenshot. check-in: d7f9752a41 user: csaba tags: trunk
17:58
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.5; minor improvements. check-in: c081481da1 user: csaba tags: trunk
17:57
* scripts/tclIndex: Newly generated. check-in: f4c9da9ab8 user: csaba tags: trunk
17:55
* scripts/*.tcl: Added support for the virtual events <<TablelistHeaderHeightChanged>> and <<TablelistTitleColsWidthChanged>>; optimized the vertical scrolling by units; minor improvement related to the appearance of embedded checkbuttons on X11; fixed a bug related to the "-showlabels" option; fixed a few bugs specific to Mac OS X Aqua; fixed a bug related to the handling of mouse wheel events during interactive cell editing; fixed a bug related to the "move" subcommand; several further improvements. check-in: e57892b0e0 user: csaba tags: trunk
17:53
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: f69915cd76 user: csaba tags: trunk
17:52
* *.tcl: Bumped the version number to 6.5. * COPYRIGHT.txt: * README.txt: check-in: 2033efc1a1 user: csaba tags: trunk
17:49
* *.tcl: Bumped the version number to 6.5. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Added support for the virtual events <<TablelistHeaderHeightChanged>> and <<TablelistTitleColsWidthChanged>>; optimized the vertical scrolling by units; minor improvement related to the appearance of embedded checkbuttons on X11; fixed a bug related to the "-showlabels" option; fixed a few bugs specific to Mac OS X Aqua; fixed a bug related to the handling of mouse wheel events during interactive cell editing; fixed a bug related to the "move" subcommand; several further improvements. * scripts/tclIndex: Newly generated. * ../../examples/tablelist/*.tcl: Bumped the version number to 6.5; minor improvements. * doc/scrollbars.png: Updated screenshot. check-in: 2518138059 user: csaba tags: trunk
2019-01-07
19:24
* ../../examples/tablelist/*.tcl: Bumped the version number to 6.4; minor bug fixes; updated the copyright information. check-in: f82f93d4e7 user: csaba tags: trunk
19:21
* scripts/tclIndex: Newly generated. check-in: daf5383477 user: csaba tags: trunk
19:20
* scripts/*.tcl: Added the "-xmousewheelwindow" and "-ymousewheelwindow" configuration options; optimized the deletion of a list of items; improved the performance of the vertical scrolling; eliminated a potential endless loop triggered by key navigation with the "aqua" theme and selection type "cell"; fixed two regressions introduced in Tablelist 6.3, related to (1) the handling of the "-listvariable" option when using Itcl 3.x and (2) clearing the multiple or extended selection; further improvements and minor bug fixes; updated the copyright information. check-in: 20637f9fa8 user: csaba tags: trunk
19:19
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 142a3c721a user: csaba tags: trunk
19:19
* *.tcl: Bumped the version number to 6.4; updated the * COPYRIGHT.txt: copyright information. * README.txt: check-in: 057c7523dc user: csaba tags: trunk
19:17
* *.tcl: Bumped the version number to 6.4; updated the * COPYRIGHT.txt: copyright information. * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Added the "-xmousewheelwindow" and "-ymousewheelwindow" configuration options; optimized the deletion of a list of items; improved the performance of the vertical scrolling; eliminated a potential endless loop triggered by key navigation with the "aqua" theme and selection type "cell"; fixed two regressions introduced in Tablelist 6.3, related to (1) the handling of the "-listvariable" option when using Itcl 3.x and (2) clearing the multiple or extended selection; further improvements and minor bug fixes; updated the copyright information. * scripts/tclIndex: Newly generated. * ../../examples/tablelist/*.tcl: Bumped the version number to 6.4; minor bug fixes; updated the copyright information. check-in: e8fdeb9f97 user: csaba tags: trunk
2018-12-27
16:15
Apply the patches by Alexandru - http://core.tcl.tk/tcllib/tktview/8c91e46800f569566ac60c7ded7c321b52f67a15 check-in: 15b81478b8 user: markus tags: trunk
2018-10-10
10:07
* Added code for copying the file pencil.cur. check-in: 6bb2600073 user: csaba tags: trunk
2018-10-08
12:01
* ../../examples/mentry/*.tcl: Various updates. check-in: 9c762ea11f user: csaba tags: trunk
12:01
* scripts/tclIndex: Newly generated. check-in: 2143e793d5 user: csaba tags: trunk
12:00
* scripts/*.tcl: Added support for the themes "aquativo", "Arc", and "clearlooks"; updated the support for several other themes; included the same version of "mwutil.tcl" as in Tablelist release 6.3; several code improvements and minor bug fixes; updated the copyright information. check-in: e8f3b60322 user: csaba tags: trunk
11:59
* doc/*.png: Updated the screenshots. check-in: f518d8a0b1 user: csaba tags: trunk
11:58
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: ac31280d08 user: csaba tags: trunk
11:57
* COPYRIGHT.txt: Bumped the version number to 3.8. * README.txt: check-in: b0bd46180f user: csaba tags: trunk
11:56
* *.tcl: Bumped the version number to 3.8; adapted to some changes in future Tcl and Tk releases (TIP 278, independent Tcl and Tk versions); updated the copyright information. check-in: 5f2613d733 user: csaba tags: trunk
11:48
* *.tcl: Bumped the version number to 3.8; adapted to some changes in future Tcl and Tk releases (TIP 278, independent Tcl and Tk versions); updated the copyright information. * COPYRIGHT.txt: Bumped the version number to 3.8. * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * doc/*.png: Updated the screenshots. * scripts/*.tcl: Added support for the themes "aquativo", "Arc", and "clearlooks"; updated the support for several other themes; included the same version of "mwutil.tcl" as in Tablelist release 6.3; several code improvements and minor bug fixes; updated the copyright information. * scripts/tclIndex: Newly generated. * ../../examples/mentry/*.tcl: Various updates. check-in: d2299ad020 user: csaba tags: trunk
11:35
* ../../examples/wcb/*.tcl: Various updates. check-in: cd4a401e8a user: csaba tags: trunk
11:34
* scripts/tclIndex: Newly generated. check-in: 39b373e941 user: csaba tags: trunk
11:34
* scripts/*.tcl: Adapted to TIP 278; updated the copyright information. check-in: 3f2a7d4694 user: csaba tags: trunk
11:33
* doc/*.png: Updated the screenshots. check-in: c308fc6d72 user: csaba tags: trunk
11:31
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 3b47857c04 user: csaba tags: trunk
11:30
* COPYRIGHT.txt: Bumped the version number to 3.6. * README.txt: check-in: a34c5daca2 user: csaba tags: trunk
11:29
* *.tcl: Bumped the version number to 3.6; adapted to some changes in future Tcl and Tk releases (TIP 278, independent Tcl and Tk versions); updated the copyright information. check-in: 4c0364833d user: csaba tags: trunk
11:28
* *.tcl: Bumped the version number to 3.6; adapted to some changes in future Tcl and Tk releases (TIP 278, independent Tcl and Tk versions); updated the copyright information. * COPYRIGHT.txt: Bumped the version number to 3.6. * README.txt: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * doc/*.png: Updated the screenshots. * scripts/*.tcl: Adapted to TIP 278; updated the copyright information. * scripts/tclIndex: Newly generated. * ../../examples/wcb/*.tcl: Various updates. check-in: f19578d90f user: csaba tags: trunk
2018-09-21
12:28
Bugfix to widgetPlus - adapt to stricter error checking in lreplace; bump version to 1.0b2 check-in: 7bbd844ae7 user: kjnash tags: trunk
2018-09-19
16:42
* scripts/tablelistConfig.tcl: Fixed a bug related to the "rowconfigure" * scripts/tablelistWidget.tcl: subcommand, introduced in Tablelist 6.0. check-in: e09adbba00 user: csaba tags: trunk
16:41
* CHANGES.txt: Slightly extended. check-in: f14088c695 user: csaba tags: trunk
16:39
* CHANGES.txt: Slightly extended. * scripts/tablelistConfig.tcl: Fixed a bug related to the "rowconfigure" * scripts/tablelistWidget.tcl: subcommand, introduced in Tablelist 6.0. check-in: e6082401d8 user: csaba tags: trunk
2018-09-01
14:56
* scripts/tablelistConfig.tcl: Minor changes for TIP 278 conformance. * scripts/tablelistThemes.tcl: * scripts/tablelistUtil.tcl: check-in: 6c3d0a40c8 user: csaba tags: trunk
14:54
* scripts/tablelistConfig.tcl: Minor changes for TIP 278 conformance. * scripts/tablelistThemes.tcl: * scripts/tablelistUtil.tcl: check-in: 88aa4f48d9 user: csaba tags: trunk
2018-08-28
08:49
* scripts/tablelistWidget.tcl: Bugfixes and further optimizations. check-in: 8ab74ace4e user: csaba tags: trunk
08:47
* CHANGES.txt: Slightly extended. check-in: 27418ecb4b user: csaba tags: trunk
08:46
* CHANGES.txt: Slightly extended. * scripts/tablelistWidget.tcl: Bugfixes and further optimizations. check-in: 96547ec16e user: csaba tags: trunk
2018-08-18
11:16
* CHANGES.txt: Updated to reflect the changes committed yesterday. check-in: 76640e5824 user: csaba tags: trunk
2018-08-17
14:49
* tablelistPublic.tcl: Adapted to some changes in future Tcl and Tk * tablelist.tcl releases (TIP 278, independent Tcl and Tk * tablelist_tile.tcl versions). * scripts/mwutil.tcl check-in: 2b043765a2 user: csaba tags: trunk
14:47
* tablelistPublic.tcl: Adapted to some changes in future Tcl and Tk * tablelist.tcl releases (TIP 278, independent Tcl and Tk * tablelist_tile.tcl versions). * scripts/mwutil.tcl check-in: ee2e42b142 user: csaba tags: trunk
2018-08-16
15:40
* doc/scrollbars.png: Added screenshot. check-in: 454b2f3dfe user: csaba tags: trunk
15:38
* doc/browseTree.png: Updated screenshots. * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: check-in: b112682099 user: csaba tags: trunk
15:36
* scripts/tclIndex: Newly generated. check-in: ee08fb60f1 user: csaba tags: trunk
15:35
* scripts/*.tcl: Added the "-showbusycursor" configuration option and the "setbusycursor" and "restorecursor" subcommands; the "-stretch" option is no longer ignored if the width was specified as zero or less; enhancements related to managing both scrollbars with the aid of the "cornerpath" subcommand; optimizations in the item insertion and the selection-related code; improved the interactive cell editing with the aid of the ctext widget; made the overall handling of the "-listvariable" option much more robust; fixed some bugs related to the "-maxwidth" column configuration option, the "-displayondemand" option, and the tooltip support; further improvements and minor bug fixes. check-in: b7c2018908 user: csaba tags: trunk
15:34
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: b93fd4c3c6 user: csaba tags: trunk
15:32
* *.tcl: Bumped the version number to 6.3. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: 9195755580 user: csaba tags: trunk
15:29
* *.tcl: Bumped the version number to 6.3. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Added the "-showbusycursor" configuration option and the "setbusycursor" and "restorecursor" subcommands; the "-stretch" option is no longer ignored if the width was specified as zero or less; enhancements related to managing both scrollbars with the aid of the "cornerpath" subcommand; optimizations in the item insertion and the selection-related code; improved the interactive cell editing with the aid of the ctext widget; made the overall handling of the "-listvariable" option much more robust; fixed some bugs related to the "-maxwidth" column configuration option, the "-displayondemand" option, and the tooltip support; further improvements and minor bug fixes. * scripts/tclIndex: Newly generated. * doc/browseTree.png: Updated screenshots. * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/scrollbars.png: Added screenshot. check-in: bfc5fcdb7e user: csaba tags: trunk
2018-06-05
09:13
* doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/styles.png: * doc/tileWidgets.png: check-in: 38dd8ebab8 user: csaba tags: trunk
09:10
* CHANGES.txt: Updated to reflect the changes. check-in: 8dd5f662ad user: csaba tags: trunk
09:10
* doc/tablelist.html: Using the "cornerpath" subcommand not * doc/tablelistWidget.html: only on Mac OS X Aqua but also on * ../../examples/tablelist/*.tcl: X11. check-in: 93f99bbfcb user: csaba tags: trunk
09:08
* doc/tablelist.html: Using the "cornerpath" subcommand not * doc/tablelistWidget.html: only on Mac OS X Aqua but also on * ../../examples/tablelist/*.tcl: X11. * CHANGES.txt: Updated to reflect the changes. * doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/styles.png: * doc/tileWidgets.png: check-in: a50b5d4b49 user: csaba tags: trunk
2018-05-25
14:13
* doc/browseTree.png: Updated. * doc/tablelist.html: check-in: fb7c07e483 user: csaba tags: trunk
14:12
* doc/browseTree.png: Updated. * doc/tablelist.html: check-in: ffedfc6e6f user: csaba tags: trunk
11:47
* doc/tablelist.html: Minor correction. check-in: 40344118ce user: csaba tags: trunk
11:45
* doc/tablelist.html: Minor correction. check-in: 3f55dbba85 user: csaba tags: trunk
2018-05-22
15:15
* doc/arrowStyles_vista.png: Updated screenshots. * doc/browse.png: * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/styles.png: * doc/tileWidgets.png: check-in: d256964abe user: csaba tags: trunk
15:13
* scripts/tclIndex: Newly generated. check-in: 16ed81745a user: csaba tags: trunk
15:12
* scripts/*.tcl: Added the "-labelvalign" column configuration option; the "collapse" and "expand" subcommands now accept a list of indices as first argument; significantly improved the overall performance of tablelist widgets containing a tree structure, embedded images, or multi-line cells; important improvements related to the scanning performance and behavior; changed the default arrow style "flat7x5" to "flat8x4" on the windowing system "x11" and for some tile themes; fixed some bugs related to the interactive cell editing and the handling of the "-listvariable" option in connection with snit widgetadaptors; further code improvements and minor bug fixes. check-in: 9272f306f2 user: csaba tags: trunk
15:11
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 78cc158b58 user: csaba tags: trunk
15:09
* *.tcl: Bumped the version number to 6.2. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: check-in: c76e46a3a6 user: csaba tags: trunk
15:06
* *.tcl: Bumped the version number to 6.2. * COPYRIGHT.txt: * README.txt: * ../../examples/tablelist/*.tcl: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Added the "-labelvalign" column configuration option; the "collapse" and "expand" subcommands now accept a list of indices as first argument; significantly improved the overall performance of tablelist widgets containing a tree structure, embedded images, or multi-line cells; important improvements related to the scanning performance and behavior; changed the default arrow style "flat7x5" to "flat8x4" on the windowing system "x11" and for some tile themes; fixed some bugs related to the interactive cell editing and the handling of the "-listvariable" option in connection with snit widgetadaptors; further code improvements and minor bug fixes. * scripts/tclIndex: Newly generated. * doc/arrowStyles_vista.png: Updated screenshots. * doc/browse.png: * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/styles.png: * doc/tileWidgets.png: check-in: 5d8592d6b9 user: csaba tags: trunk
2018-03-05
14:38
* *.tcl: Bumped the version number to 6.1; * COPYRIGHT.txt: updated the copyright information. * README.txt: * ../../examples/tablelist/*.tcl: check-in: 4523a4fc89 user: csaba tags: trunk
14:37
* doc/*.html: Updated to reflect the changes; more on the "bodytag" subcommand in connection with embedded images etc. as drag sources. check-in: 1d46677c32 user: csaba tags: trunk
14:36
* scripts/*.tcl: Added the "-imagebackground" cell configuration option; updated the copyright information. check-in: 6c58141815 user: csaba tags: trunk
14:05
* CHANGES.txt: Updated to reflect the changes. check-in: 950b307ab9 user: csaba tags: trunk
14:05
* *.tcl: Bumped the version number to 6.1; * COPYRIGHT.txt: updated the copyright information. * README.txt: * ../../examples/tablelist/*.tcl: check-in: c0ff7999c9 user: csaba tags: trunk
14:02
* *.tcl: Bumped the version number to 6.1; * COPYRIGHT.txt: updated the copyright information. * README.txt: * ../../examples/tablelist/*.tcl: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added the "-imagebackground" cell configuration option; updated the copyright information. * doc/*.html: Updated to reflect the changes; more on the "bodytag" subcommand in connection with embedded images etc. as drag sources. check-in: b322b3c52f user: csaba tags: trunk
2018-02-19
19:15
bugfix - include widgetPlus examples in build check-in: 7982d88df2 user: kjnash tags: trunk
2018-02-17
18:32
Regenerate Documentation check-in: 2b6c84b609 user: kjnash tags: trunk
18:25
Update ntext to 1.0b3. Bugfix. See modules/ntext/ChangeLog for details. check-in: 8ce27858c2 user: kjnash tags: trunk
18:10
Add modules widgetPlus and persistentSelection check-in: c77a6c2319 user: kjnash tags: trunk
2018-02-12
18:41
* CHANGES.txt: Updated. check-in: 5273a50eb6 user: csaba tags: trunk
18:40
* CHANGES.txt: Updated. check-in: eaeb334405 user: csaba tags: trunk
2018-01-27
15:51
Update ntext to 1.0b2. See modules/ntext/ChangeLog for details. check-in: a03ef7cf73 user: kjnash tags: trunk
2018-01-10
18:07
commit updated embedded docs (2016) check-in: 008f99db54 user: kjnash tags: trunk
2018-01-08
21:27
* scripts/tablelistUtil.tcl: Inserted the missing "]" in line #6448. check-in: d52918f722 user: csaba tags: trunk
21:24
* *.tcl: Bumped the version number to 6.0.1. * COPYRIGHT.txt: * README.txt: * doc/index.html: * doc/tablelist.html: * CHANGES.txt: Updated to reflect the changes. * scripts/tablelistUtil.tcl: Inserted the missing "]" in line #6448. check-in: 6a90c0d2c4 user: csaba tags: trunk
21:01
* scripts/tablelistUtil.tcl: Inserted the missing "]""in line #6448. check-in: ee66f8a00c user: csaba tags: trunk
21:00
* CHANGES.txt: Updated to reflect the changes. check-in: 7d6f9d460b user: csaba tags: trunk
20:59
* *.tcl: Bumped the version number to 6.0.1. * COPYRIGHT.txt: * README.txt: * doc/index.html: * doc/tablelist.html: check-in: 6f9830d3d3 user: csaba tags: trunk
20:57
* *.tcl: Bumped the version number to 6.0.1. * COPYRIGHT.txt: * README.txt: * doc/index.html: * doc/tablelist.html: * CHANGES.txt: Updated to reflect the changes. * scripts/tablelistUtil.tcl: Inserted the missing "]""in line #6448. check-in: bf6d0aae94 user: csaba tags: trunk
2017-12-24
13:50
Create new branch named "magicsplat" Leaf check-in: d5797813c8 user: apnadkarni tags: magicsplat
2017-12-06
16:20
* ../../examples/*.tcl: Bumped the version number to 6.0; updates and minor improvements. check-in: cf5a739ebd user: csaba tags: trunk
16:17
* doc/dirViewer.png: Updated screenshots * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: check-in: 52bd7c8ae2 user: csaba tags: trunk
16:15
* doc/*.html: Updated to reflect the changes. check-in: 9794662fea user: csaba tags: trunk
16:14
* scripts/tclIndex: Newly generated. check-in: 5a3f555112 user: csaba tags: trunk
16:12
* scripts/*.tcl: Added support for header items (aka title rows), added the "embed(ttk)checkbutton" and "embed(ttk)checkbuttons" subcommands; compatibility with the revised implementation of the text widget; support for Tcl-only "dict" implementations; deleting all items has become by orders of magnitude faster; guarded against invocations of the "update" command when displaying the tooltip; "xview" and "yview" now work as expected even if the decimal point is different from "."; numerous further improvements. check-in: 54a135f5c4 user: csaba tags: trunk
16:11
* CHANGES.txt: Updated to reflect the changes. check-in: dfa9d9f16d user: csaba tags: trunk
16:10
* *.tcl: Bumped the version number to 6.0. * COPYRIGHT.txt: * README.txt: check-in: 17f1da4e63 user: csaba tags: trunk
16:06
* *.tcl: Bumped the version number to 6.0. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added support for header items (aka title rows), added the "embed(ttk)checkbutton" and "embed(ttk)checkbuttons" subcommands; compatibility with the revised implementation of the text widget; support for Tcl-only "dict" implementations; deleting all items has become by orders of magnitude faster; guarded against invocations of the "update" command when displaying the tooltip; "xview" and "yview" now work as expected even if the decimal point is different from "."; numerous further improvements. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes. * doc/dirViewer.png: Updated screenshots * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * ../../examples/*.tcl: Bumped the version number to 6.0; updates and minor improvements. check-in: c5b9f11fb3 user: csaba tags: trunk
2017-09-17
08:37
Add documentation for the "createNormalPlot" command and its subcommands. As the implementation was already there, the version number needed no change. check-in: a6c2dcb8c9 user: markus tags: trunk
2017-08-08
21:17
Remove one unnecessary execute bit. Note: this check-in failed to actually do anything, apparently due to a Fossil bug concerning delta manifests. Fossil should have emitted an F card for modules/ctext/REGRESSION with the same checksum as in the baseline, but taking away the "x" permission. Probably the reason it didn't is because the checksum didn't change. check-in: 51a28014e5 user: tdc7675 tags: trunk
21:13
Correct UTF-8 encoding check-in: 046de04961 user: tdc7675 tags: trunk
2017-06-24
19:24
* CHANGES.txt: Updated to reflect the changes. check-in: 3b78d812a5 user: csaba tags: trunk
19:23
* scripts/tablelistWdget.tcl: Fixed a bug related to excluding the "dicttoitem" and "itemtodict" subcommands for Tk 8.4 and earlier. check-in: e93edff4c3 user: csaba tags: trunk
19:22
* scripts/tablelistWdget.tcl: Fixed a bug related to excluding the "dicttoitem" and "itemtodict" subcommands for Tk 8.4 and earlier. * CHANGES.txt: Updated to reflect the changes. check-in: e86c9d05e3 user: csaba tags: trunk
15:27
* scripts/tablelistWidget.tcl: Minor cleanup. check-in: ed8fdc3f44 user: csaba tags: trunk
15:26
* scripts/tablelistWidget.tcl: Minor cleanup. check-in: d821256a8e user: csaba tags: trunk
2017-06-23
20:20
* scripts/tablelistWidget.tcl: Corrected a typo. check-in: 715637547c user: csaba tags: trunk
20:19
* scripts/tablelistWidget.tcl: Corrected a typo. check-in: 8d7bcf0846 user: csaba tags: trunk
19:29
* ../../examples/*.tcl: Bumped the version number to 5.18; minor improvements. check-in: 18f1384176 user: csaba tags: trunk
19:28
* doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/tileWidgets.png: check-in: 990c285ba9 user: csaba tags: trunk
19:27
* doc/*.html: Updated to reflect the changes; more on the "-formatcommand" column configuration option in connection with "-sortmode integer|real"; minor improvements. check-in: 4b6ceb783a user: csaba tags: trunk
19:26
* scripts/tclIndex: Newly generated. check-in: 615bc19bd5 user: csaba tags: trunk
19:25
* scripts/*.tcl: Improved the performance of the vertical scrolling; added the "-displayondemand" configuration option; added the "tablelist::delaySashPosUpdates" command; added support for the themes "Arc" and "clearlooks"; updated the support for a few other themes; fixed a bug related to retrieving the current cell selection; numerous further improvements. check-in: 666c99cc23 user: csaba tags: trunk
19:25
* CHANGES.txt: Updated to reflect the changes. check-in: 691b136407 user: csaba tags: trunk
19:24
* *.tcl: Bumped the version number to 5.18. * COPYRIGHT.txt: * README.txt: check-in: c04ab4bce7 user: csaba tags: trunk
19:23
* *.tcl: Bumped the version number to 5.18. * COPYRIGHT.txt: * README.txt: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Improved the performance of the vertical scrolling; added the "-displayondemand" configuration option; added the "tablelist::delaySashPosUpdates" command; added support for the themes "Arc" and "clearlooks"; updated the support for a few other themes; fixed a bug related to retrieving the current cell selection; numerous further improvements. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes; more on the "-formatcommand" column configuration option in connection with "-sortmode integer|real"; minor improvements. * doc/browse.png: Updated screenshots. * doc/browseTree.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows.png: * doc/embeddedWindows_tile.png: * doc/tileWidgets.png: * ../../examples/*.tcl: Bumped the version number to 5.18; minor improvements. check-in: 81f31de920 user: csaba tags: trunk
2017-05-26
09:23
Update the rdial package in the controlwidgets module to version 0.7 - support for mouse wheels on Windows and Linux. OSX not tested yet. check-in: f6771d4dd6 user: markus tags: trunk
2017-04-04
07:26
datefield with additional "-format" option to support Dates for German and ISO including MouseWheel-binding. Ticket [fa7e485702] check-in: 5634c2dfd1 user: oehhar tags: rfe-fa7e485702
2017-04-01
15:02
Regenerate Documentation check-in: ae1cf5fefc user: kjnash tags: trunk
2017-03-31
17:13
Module ntext - update to 1.0b1 check-in: 10d06551a6 user: kjnash tags: trunk
17:03
Tidy example code and require v1.0; set v1.0 in man pages check-in: 142072ec0e user: kjnash tags: trunk
2017-03-30
18:00
Correct a small bug in the configuration of the plaintext annotations (reported by Nick Matthews) check-in: 63dbc64d55 user: markus tags: trunk
16:09
Adjust comments for Aqua check-in: 1e330f1b2e user: kjnash tags: trunk
11:44
Adjust docs check-in: 055ff384a9 user: kjnash tags: trunk
2017-03-29
15:18
Adjust comments in ntext.tcl check-in: 95cffa9b8b user: kjnash tags: trunk
2017-03-22
13:15
* *.tcl: Bumped the version number to 5.17. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: check-in: d863e00674 user: csaba tags: trunk
13:08
* doc/*.png: Updated screenshots. check-in: 09b4205155 user: csaba tags: trunk
13:06
* doc/arc.png: Added screenshots. * doc/blueMenta.png: * doc/menta.png: * doc/ubuntuMate.png: * doc/ubuntu3.png: check-in: 61c705891f user: csaba tags: trunk
13:04
* scripts/tclIndex: Newly generated. check-in: 0834f4a24b user: csaba tags: trunk
13:04
* scripts/*.tcl: Added the tree styles "arc", "blueMenta", "menta", "ubuntuMate", and "ubuntu3"; added the "dicttoitem" and "itemtodict" subcommands; added support for the virtual event <<TablelistViewUpdated>>; added bindings for toggling the selection state of individual items and elements; added support for the keyboard shortcuts <Control-a> and <Shift-Control-A> as alternatives to <Control-slash> and <Control-backslash>; improvements related to vertical scrolling. check-in: 1d0d9cbed6 user: csaba tags: trunk
13:03
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 1e5f771358 user: csaba tags: trunk
13:02
* *.tcl: Bumped the version number to 5.17. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: check-in: 7b2ef697b7 user: csaba tags: trunk
13:01
* *.tcl: Bumped the version number to 5.17. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/*.tcl: Added the tree styles "arc", "blueMenta", "menta", "ubuntuMate", and "ubuntu3"; added the "dicttoitem" and "itemtodict" subcommands; added support for the virtual event <<TablelistViewUpdated>>; added bindings for toggling the selection state of individual items and elements; added support for the keyboard shortcuts <Control-a> and <Shift-Control-A> as alternatives to <Control-slash> and <Control-backslash>; improvements related to vertical scrolling. * scripts/tclIndex: Newly generated. * doc/arc.png: Added screenshots. * doc/blueMenta.png: * doc/menta.png: * doc/ubuntuMate.png: * doc/ubuntu3.png: * doc/*.png: Updated screenshots. check-in: 6c4771ff77 user: csaba tags: trunk
2017-03-21
11:48
Correct a problem with the bindlast command for dot objects check-in: 4d3bce3fac user: markus tags: trunk
2017-03-14
18:53
Add the minmax command as well as a small demonstration script. Now: version 2.4.1 check-in: f8a67fd482 user: markus tags: trunk
09:25
Add examples/ntext/ntextDemoMacScrolling.tcl check-in: d7f0ac5564 user: kjnash tags: trunk
05:19
Describe the configuration options for the new "region" command. check-in: 864938d870 user: markus tags: trunk
2017-03-13
22:37
Add separators when deleting selection. Take care over placement of anchor and its gravity. Stop expansion/contraction of the selection at the "wrong" end, in operations that are intended to alter the selection ar the cursor end. Minor changes to docs and demos. check-in: 96ab062f5a user: kjnash tags: trunk
19:36
Add a method "region" for xy-type plots and extend the method plotlist to the logarithmic variants. More extensions to follow check-in: bfab80e3e6 user: markus tags: trunk
2017-03-12
11:02
Deprecate the procedure polarToPixel and implement the -shownumbers option for polar plots (Issue found by Steve Landers) check-in: b5ee8e9a32 user: markus tags: trunk
2017-03-10
14:58
Update *-doc targets in Makefile.in to adapt to changes in sak.tcl check-in: 4a80b13d5b user: kjnash tags: trunk
2017-03-09
13:13
Sync with Tk library/text.tcl; bump version to 1.0b1 check-in: c2b8327bfa user: kjnash tags: trunk
2017-03-08
23:00
Changes From Mac making 0.9b5 check-in: a5fb2a4319 user: kjnash tags: trunk
2016-11-25
09:31
Update the error message to include all options (the new one, "--" was missing) check-in: b54e97d840 user: markus tags: trunk
2016-11-24
12:20
Apply the patch by stwo (http://core.tcl.tk/tklib/tktview?name=3106443fffffffff) to make it possible for the message of a tooltip to start with a hyphen. check-in: 644ebcf31d user: markus tags: trunk
2016-08-30
20:32
* scripts/tablelistWidget.tcl: Worked around a text widget issue in Tk 8.6.6. check-in: bb6b6da7e1 user: csaba tags: trunk
20:32
* CHANGES.txt: Updated to reflect the change. check-in: 3aa217cefe user: csaba tags: trunk
20:30
* scripts/tablelistWidget.tcl: Worked around a text widget issue in Tk 8.6.6. * CHANGES.txt: Updated to reflect the above change. check-in: afec01e7fe user: csaba tags: trunk
2016-08-25
20:57
* CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: * doc/*.png: check-in: 5f7464fd92 user: csaba tags: trunk
20:55
* scripts/tclIndex: Newly generated. check-in: c29118ec3e user: csaba tags: trunk
20:54
* scripts/tablelistImages.tcl: Added the tree style "mint2"; improved a * scripts/tablelistWidget.tcl: few tree styles. check-in: 5f10bdd860 user: csaba tags: trunk
20:53
* scripts/tablelistImages.tcl: Added the tree style "mint2"; improved a * scripts/tablelistWidget.tcl: few tree styles. * scripts/tclIndex: Newly generated. * CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: * doc/*.png: check-in: 3575ef8fd5 user: csaba tags: trunk
2016-08-09
20:57
* scripts/tablelistBind.tcl: Added the "-autofinishediting" option; * scripts/tablelistConfig.tcl: adapted the implementation of the * scripts/tablelistEdit.tcl: "delete" subcommand to the changed text * scripts/tablelistWidget.tcl: widget behavior in Tk 8.6.5. * CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: 2d65a1c4cf user: csaba tags: trunk
20:56
* CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: c05bfeb47a user: csaba tags: trunk
20:55
* CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: 20861e8214 user: csaba tags: trunk
20:52
* scripts/tablelistBind.tcl: Added the "-autofinishediting" option; * scripts/tablelistConfig.tcl: adapted the implementation of the * scripts/tablelistEdit.tcl: "delete" subcommand to the changed text * scripts/tablelistWidget.tcl: widget behavior in Tk 8.6.5. * CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: 699ebff4d5 user: csaba tags: trunk
2016-06-15
19:18
* ../../examples/*.tcl: Bumped the version number to 5.16. check-in: ef19af2e1d user: csaba tags: trunk
19:16
* doc/arrowStyles_vista.png: Added screenshot. check-in: 7d5c4d09b7 user: csaba tags: trunk
19:14
* doc/ambiance.png: Updated screenshots. * doc/arrowStyles.png: * doc/bicolor*.png: * doc/browse*.png: * doc/bwidget.png: * doc/classic*.png: * doc/config.png: * doc/dirViewer.png: * doc/dust*.png: * doc/embeddedWindows*.png: * doc/plain*.png: * doc/radiance.png: * doc/styles.png: * doc/tileWidgets.png: check-in: 4ddb08c7c0 user: csaba tags: trunk
19:11
* scripts/tclIndex: Newly generated. check-in: 0f5780b8e7 user: csaba tags: trunk
19:11
* scripts/tablelistConfig.tcl: Made the sort arrows look more native on * scripts/tablelistEdit.tcl: Windows Vista and later; support for * scripts/tablelistImages.tcl: fully qualified edit window names of the * scripts/tablelistThemes.tcl: form "::ttk::*"; improvements related to * scripts/tablelistUtil.tcl: the "move" and "movecolumn" subcommands * scripts/tablelistWidget.tcl: and to the deletion of the images used in sort arrows; drastically increased the speed of the "collapse" and "collapseall" subcommands with the "-fully" option; fixed a bug related to the "curcellselection" subcommand. check-in: 773c582da7 user: csaba tags: trunk
19:09
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 55cce1b314 user: csaba tags: trunk
19:08
* *.tcl: Bumped the version number to 5.16. * COPYRIGHT.txt: * README.txt: check-in: 48718ff61e user: csaba tags: trunk
19:06
* *.tcl: Bumped the version number to 5.16. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/tablelistConfig.tcl: Made the sort arrows look more native on * scripts/tablelistEdit.tcl: Windows Vista and later; support for * scripts/tablelistImages.tcl: fully qualified edit window names of the * scripts/tablelistThemes.tcl: form "::ttk::*"; improvements related to * scripts/tablelistUtil.tcl: the "move" and "movecolumn" subcommands * scripts/tablelistWidget.tcl: and to the deletion of the images used in sort arrows; drastically increased the speed of the "collapse" and "collapseall" subcommands with the "-fully" option; fixed a bug related to the "curcellselection" subcommand. * scripts/tclIndex: Newly generated. * doc/ambiance.png: Updated screenshots. * doc/arrowStyles.png: * doc/bicolor*.png: * doc/browse*.png: * doc/bwidget.png: * doc/classic*.png: * doc/config.png: * doc/dirViewer.png: * doc/dust*.png: * doc/embeddedWindows*.png: * doc/plain*.png: * doc/radiance.png: * doc/styles.png: * doc/tileWidgets.png: * doc/arrowStyles_vista.png: Added screenshot. check-in: f2aad4848e user: csaba tags: trunk
2016-05-08
09:51
Various small issues (clearing the canvas and corrections in the documentation) check-in: d9f5aa72f6 user: markus tags: trunk
2016-02-22
17:54
Pulling in fixes from trunk Leaf check-in: 8981263761 user: tne tags: hypnotoad
17:54
Closing a fork check-in: b5e25ec1f2 user: tne tags: hypnotoad
2015-12-28
19:25
* ../../examples/*.tcl: Bumped the version number to 5.15. check-in: 40613d89df user: csaba tags: trunk
19:24
* doc/win10.png: Added screenshot. check-in: 61d1e611ac user: csaba tags: trunk
19:23
* doc/arrowStyles.png: Updated screenshots. * doc/browse*.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows*.png: * doc/styles.png: * doc/tileWidgets.png: * doc/vista*.png: * doc/win7*.png: check-in: c5aa255a83 user: csaba tags: trunk
19:21
* scripts/tclIndex: Newly generated. check-in: ed8ab66ca3 user: csaba tags: trunk
19:20
* scripts/tablelistConfig.tcl: Added the tree style "win10" and the * scripts/tablelistEdit.tcl: arrow styles "flatAngle11x6" and * scripts/tablelistImages.tcl: "flatAngle15x8"; Worked around a text * scripts/tablelistThemes.tcl: widget bug introduced in Tk 8.5.18 and * scripts/tablelistWidget.tcl: 8.6.4; Fixed a bug that prevented the subcommands "see end", "see last", and "yview moveto 1" from working as expected if the tablelist widget contains multi-line cells or large images. check-in: 94b3c494dc user: csaba tags: trunk
19:18
* CHANGES.txt: Updated to reflect the changes. * doc/*.html: check-in: 3ffcbea335 user: csaba tags: trunk
19:17
* *.tcl: Bumped the version number to 5.15. * COPYRIGHT.txt: * README.txt: check-in: f62559caf2 user: csaba tags: trunk
19:15
* *.tcl: Bumped the version number to 5.15. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: * CHANGES.txt: Updated to reflect the changes. * doc/*.html: * scripts/tablelistConfig.tcl: Added the tree style "win10" and the * scripts/tablelistEdit.tcl: arrow styles "flatAngle11x6" and * scripts/tablelistImages.tcl: "flatAngle15x8"; Worked around a text * scripts/tablelistThemes.tcl: widget bug introduced in Tk 8.5.18 and * scripts/tablelistWidget.tcl: 8.6.4; Fixed a bug that prevented the subcommands "see end", "see last", and "yview moveto 1" from working as expected if the tablelist widget contains multi-line cells or large images. * scripts/tclIndex: Newly generated. * doc/arrowStyles.png: Updated screenshots. * doc/browse*.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows*.png: * doc/styles.png: * doc/tileWidgets.png: * doc/vista*.png: * doc/win7*.png: * doc/win10.png: Added screenshot. check-in: 9a988e2a2d user: csaba tags: trunk
2015-10-15
22:26
Updated the shed to the latest format and SHA1 tags Closed-Leaf check-in: 965fecf45b user: hypnotoad tags: trunk
16:35
Revamped the shed spec.. again check-in: 78899e07db user: hypnotoad tags: trunk
15:13
Updated the shed spec check-in: 6cc7cb0492 user: hypnotoad tags: trunk
2015-09-26
02:10
Updated to the latest SHED standard check-in: 5d33982d12 user: hypnotoad tags: trunk
2015-09-25
01:55
Further refinements to TOOL check-in: 10a2e33cfc user: hypnotoad tags: trunk
2015-09-24
19:44
Updated the SHED definition to the latest standard. Added a "make shed" to update the manifest check-in: 67891721cd user: hypnotoad tags: trunk
2015-09-21
10:39
Added a TOOL-style description check-in: 2bf46644ed user: hypnotoad tags: trunk
2015-09-20
13:44
Correct a small typo in the example check-in: 296358b22c user: markus tags: trunk
2015-08-22
20:46
* CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: 4ae9f0db58 user: csaba tags: trunk
20:44
* scripts/tclIndex: Newly generated. check-in: 3c830f69a7 user: csaba tags: trunk
20:44
* scripts/tablelistConfig.tcl: Added automatic scaling for the default * scripts/tablelistImages.tcl: arrow style on Windows Vista and later; * scripts/tablelistThemes.tcl: Minor scaling-related improvemnts. * scripts/tablelistWidget.tcl: check-in: 7d477511eb user: csaba tags: trunk
20:43
* scripts/tablelistConfig.tcl: Added automatic scaling for the default * scripts/tablelistImages.tcl: arrow style on Windows Vista and later; * scripts/tablelistThemes.tcl: Minor scaling-related improvemnts. * scripts/tablelistWidget.tcl: * scripts/tclIndex: Newly generated. * CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: 5e3ffb8d82 user: csaba tags: trunk
2015-08-19
19:53
* scripts/tablelistImages.tcl: Added automatic scaling for the tree styles "vistaAero", "vistaClassic", "win7Aero", and "win7Classic on Windows 7 and later. * scripts/tclIndex: Newly generated. * CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: * doc/vistaAero.png: Updated screenshots. * doc/win7Aero.png: check-in: 214b43f47d user: csaba tags: trunk
19:52
* doc/vistaAero.png: Updated screenshots. * doc/win7Aero.png: check-in: a511a9ece5 user: csaba tags: trunk
19:50
* CHANGES.txt: Updated to reflect the changes. * doc/tablelistWidget.html: check-in: e8ccc9d0aa user: csaba tags: trunk
19:49
* scripts/tclIndex: Newly generated. check-in: 5552060420 user: csaba tags: trunk
19:49
* scripts/tablelistImages.tcl: Added automatic scaling for the tree styles "vistaAero", "vistaClassic", "win7Aero", and "win7Classic on Windows 7 and later. check-in: e0c4fc58fe user: csaba tags: trunk
2015-08-10
20:37
* scripts/tablelistEdit.tcl: Minor improvements. * doc/tablelistWidget.html: check-in: 9bad44ee8f user: csaba tags: trunk
20:36
* scripts/tablelistEdit.tcl: Minor improvements. * doc/tablelistWidget.html: check-in: 12d71491bc user: csaba tags: trunk
2015-08-07
20:41
* doc/bicolor*.png: Updated screenshots. * doc/classic*.png: * doc/plain*.png: * doc/tablelistWidget.html: check-in: 76cb15c3aa user: csaba tags: trunk
20:39
* scripts/tablelistImages.tcl: Improved a few tree styles. check-in: 26510711a7 user: csaba tags: trunk
20:38
* scripts/tablelistImages.tcl: Improved a few tree styles. * doc/bicolor*.png: Updated screenshots. * doc/classic*.png: * doc/plain*.png: * doc/tablelistWidget.html: check-in: 74fe306996 user: csaba tags: trunk
2015-07-30
21:03
* ../../examples/*.gif: Updated images. check-in: 20d00448f0 user: csaba tags: trunk
21:02
* ../../examples/*.tcl: Bumped the version number to 5.14. check-in: 3fdb27a18a user: csaba tags: trunk
21:00
* doc/bicolor*.png: Added screenshots. * doc/classic*.png: * doc/plain*.png: * doc/ubuntu2.png: * doc/yuyo.png: check-in: 6b59f02f5c user: csaba tags: trunk
20:58
* doc/arrowStyles.png: Updated screenshots. * doc/baghira.png: * doc/browse*.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows*.png: * doc/klearlooks.png: * doc/oxygen*.png: * doc/phase.png: * doc/plasti*.png: * doc/styles.png: * doc/tileWidgets.png: check-in: 37bd118785 user: csaba tags: trunk
20:55
* doc/*.html: Updated to reflect the changes. check-in: 6b1ffe4a4c user: csaba tags: trunk
20:54
* scripts/tclIndex: Newly generated. check-in: dac8ae69d5 user: csaba tags: trunk
20:54
* scripts/*.tcl: Added the "-colorizecommand" configuration option; The "curcellselection" and "curselection" subcommands now accept an optional argument; Added the arrow style "flat8x4"; Added the tree styles "ubuntu2", "yuyo", "plain1", ..., "plain4", "bicolor1", ..., "bicolor4", and "classic1", ..., "classic4"; Changes related to the default arrow color and style; In case of "-selecttype cell", the row containing the active cell is now displayed with raised relief; Guarded against invocations of the "update" command from within binding scripts associated with the <<TablelistSelect>> virtual event; Worked around some unexpected events in certain X11 environments, which prevented Tablelist 5.13 from starting the interactive cell editing in such environments. check-in: f6248dff9a user: csaba tags: trunk
20:50
* CHANGES.txt: Updated to reflect the changes. check-in: e0d6041a28 user: csaba tags: trunk
20:50
* *.tcl: Bumped the version number to 5.14. * COPYRIGHT.txt: * README.txt: check-in: 907ae724a0 user: csaba tags: trunk
20:48
* *.tcl: Bumped the version number to 5.14. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added the "-colorizecommand" configuration option; The "curcellselection" and "curselection" subcommands now accept an optional argument; Added the arrow style "flat8x4"; Added the tree styles "ubuntu2", "yuyo", "plain1", ..., "plain4", "bicolor1", ..., "bicolor4", and "classic1", ..., "classic4"; Changes related to the default arrow color and style; In case of "-selecttype cell", the row containing the active cell is now displayed with raised relief; Guarded against invocations of the "update" command from within binding scripts associated with the <<TablelistSelect>> virtual event; Worked around some unexpected events in certain X11 environments, which prevented Tablelist 5.13 from starting the interactive cell editing in such environments. * scripts/tclIndex: Newly generated. * doc/*.html: Updated to reflect the changes. * doc/arrowStyles.png: Updated screenshots. * doc/baghira.png: * doc/browse*.png: * doc/bwidget.png: * doc/config.png: * doc/dirViewer.png: * doc/embeddedWindows*.png: * doc/klearlooks.png: * doc/oxygen*.png: * doc/phase.png: * doc/plasti*.png: * doc/styles.png: * doc/tileWidgets.png: * doc/bicolor*.png: Added screenshots. * doc/classic*.png: * doc/plain*.png: * doc/ubuntu2.png: * doc/yuyo.png: * ../../examples/*.gif: Updated images. check-in: fa713286d5 user: csaba tags: trunk
2015-07-17
18:00
notifywindow - Fix doctools syntax errors check-in: 24ccdbbe8c user: andreask tags: trunk
2015-06-23
22:44
Improved implementation for notifywindow using message widget; better accommodates longer text with sane display check-in: 4378266260 user: kevin_walzer tags: trunk
2015-06-20
02:04
Add notifywindow package to tklib check-in: 72cbe4466a user: kevin_walzer tags: trunk
2015-04-22
10:44
Remove source statement - left-over from testing that should not be there check-in: 26f7edca5c user: markus tags: trunk
2015-04-21
06:15
Regenerated documentation. check-in: 9968f0fca3 user: aku tags: trunk
06:14
bitmap-editor - Ticket [28d0c78144]. Fixed missing global variable. check-in: 0d1aa849a2 user: aku tags: trunk
2015-04-13
12:35
Remove invocation of "console show" - should not be there check-in: e0e6bea8c2 user: markus tags: trunk
12:28
Remove a left-over invocation of "console show" - should simply not be there. check-in: 00abb9d775 user: markus tags: trunk
06:43
Remove [console show], a left over from a debugging session check-in: 5a8cd11629 user: markus tags: trunk
2015-04-11
13:43
Made some changes to the 3D plots - added support for formats and x-labels. Also added a remark about the tags for bars in a barchart (this information was missing). Bumped the version to 2.3.4. check-in: 8630a2204b user: markus tags: trunk
13:07
Remove explicit path from test script - should not be there check-in: 23384a8af0 user: markus tags: trunk
13:06
Apply patches by Frank Gover (take care of the specific fonts). First commit of normal distribution plot. Needs to be documented and generalised to other distributions. check-in: 40d57bcbfb user: markus tags: trunk
2015-04-06
17:05
Apparently need to make documentation changes to embedded/www HTML as well. check-in: 610b3105a4 user: andy tags: trunk
15:43
Fix spelling ("highligthing") and extra close bracket. check-in: a484373512 user: andy tags: trunk
2015-01-20
20:44
* CHANGES.txt: Slightly extended. check-in: 3d1855c167 user: csaba tags: trunk
20:44
* CHANGES.txt: Slightly extended. check-in: 45092bd114 user: csaba tags: trunk
2015-01-17
22:30
* scripts/tablelistBind.tcl: Minor improvement. check-in: 50fe7ce9e0 user: csaba tags: trunk
22:29
* scripts/tablelistBind.tcl: Minor improvement. check-in: 200ff1f714 user: csaba tags: trunk
2015-01-10
18:49
* scripts/tablelistBind.tcl: Made the "handleMotion" proc more robust. check-in: c283dff14f user: csaba tags: trunk
18:49
* scripts/tablelistBind.tcl: Made the "handleMotion" proc more robust. check-in: 79bc7d57e3 user: csaba tags: trunk
2015-01-05
17:37
Ticket [88507dbd48]. Fixes to the canvas/pdf format, and the diagram viewer itself (error reporting). Leaf check-in: 04b7108ed8 user: andreask tags: dia-pdf
17:27
Merged latest trunk work to the diagram/pdf work. check-in: 6f2e578daa user: andreask tags: dia-pdf
2015-01-04
13:41
* CHANGES.txt: Eliminated the non-ASCII characters. check-in: a2667b5658 user: csaba tags: trunk
13:29
* CHANGES.txt: Eliminated the non-ASCII characters. check-in: aa7a445b36 user: csaba tags: trunk
2015-01-03
20:08
* doc/tablelistWidget.html: Minor improvements. check-in: a57abf06c0 user: csaba tags: trunk
20:07
* doc/tablelistWidget.html: Minor improvements. check-in: e151eaf0c8 user: csaba tags: trunk
2015-01-02
22:01
* ../../examples/*.tcl: Bumped the version number to 5.13. check-in: d6843c37a6 user: csaba tags: trunk
21:59
* doc/mate.png: Added screenshot. check-in: 3c5dea677c user: csaba tags: trunk
21:58
* doc/arrowStyles.png: Updated screenshots. * doc/newWave.png: check-in: 2f7e75e855 user: csaba tags: trunk
21:57
* doc/*.html: Updated to reflect the changes; a few additions and improvements. check-in: 82b7c1c2ff user: csaba tags: trunk
21:56
* scripts/pencil.cur: Added Windows cursor file. check-in: 8123529565 user: csaba tags: trunk
21:55
* scripts/tclIndex: Newly generated. check-in: 90084d5152 user: csaba tags: trunk
21:54
* scripts/*.tcl: Added support for Mac OS X 10.10 (Yosemite); Renamed 4 arrow styles to "flatAngle<W>x<H>" and added 5 new ones; added the tree style "mate"; added the "-showeditcursor" configuration option; new column configuration option "-changetitlesnipside"; support for the word "last" as row, column, cell, or child index; eliminated the endless loop generated by the "yview" subcommand when synchronizing two or more tablelist widgets. check-in: 4b8fe3d4b5 user: csaba tags: trunk
21:50
* CHANGES.txt: Updated to reflect the changes. check-in: 3f37d0b9f8 user: csaba tags: trunk
21:47
* *.tcl: Bumped the version number to 5.13. * COPYRIGHT.txt: * README.txt: check-in: 77c8785fc3 user: csaba tags: trunk
21:44
* *.tcl: Bumped the version number to 5.13. * COPYRIGHT.txt: * README.txt: * ../../examples/*.tcl: * CHANGES.txt: Updated to reflect the changes. * scripts/*.tcl: Added support for Mac OS X 10.10 (Yosemite); Renamed 4 arrow styles to "flatAngle<W>x<H>" and added 5 new ones; added the tree style "mate"; added the "-showeditcursor" configuration option; new column configuration option "-changetitlesnipside"; support for the word "last" as row, column, cell, or child index; eliminated the endless loop generated by the "yview" subcommand when synchronizing two or more tablelist widgets. * scripts/tclIndex: Newly generated. * scripts/pencil.cur: Added Windows cursor file. * doc/*.html: Updated to reflect the changes; a few additions and improvements. * doc/arrowStyles.png: Updated screenshots. * doc/newWave.png: * doc/mate.png: Added screenshot. check-in: f7bb0840a3 user: csaba tags: trunk
2014-12-14
15:36
Implemented -xlabelangle for barcharts, corrected margins wrt subtext, corrected rescaling via "x/yconfig -scale" check-in: 689be0cf61 user: markus tags: trunk
2014-12-11
19:50
Fixed oops. Updated pkgIndex.tcl to know about "canvas::pdf" check-in: 100fa48b6b user: andreask tags: dia-pdf
19:46
Ticket [88507dbd48]. Added package canvas::pdf to mediate between diagram::application and pdf4tcl. check-in: 2446bda270 user: andreask tags: dia-pdf
2014-12-03
18:33
Fixed name of "diagram-viewer" application in its meta data, was still "dia". check-in: d74be03256 user: andreask tags: trunk
2014-11-24
19:58
Correct a syntax error in the documentation check-in: 0eeff8b244 user: markus tags: trunk
2014-11-23
19:56
Implement several requested new features and fix a bug in the documentation. Added an example to demonstrate these new features check-in: e5a1ad6691 user: markus tags: trunk
2014-11-19
04:38
Tcllib ticket [ba3b0d913c] applied to tklib as well, allowing a user-specified tclsh. Removed use of wish, not used anywhere else. check-in: 8332b6bb51 user: aku tags: trunk
2014-11-08
00:29
Updated the hash-bangs in all Tcl example apps to a modern form without tricks. check-in: 00d4856ed0 user: andreask tags: trunk