Took another look at this code. Looking at what it does, its something of a legacy item from earlier versions and has is not integral to the overall gnocl widget set. Ok, the package will produce items, but this functionality is handled by other widget. The test code creates a menu item. Fine. That code binding already exists. I'm certain that no-one has used the gnocl::action function, it hasn't been previously documented and, judging by the lack of functionality in the original code, there would have been feedback. So, I'll remove the module from the core.
Given this module some attention today. Added some of the more package wide options to the module and created customised handler for setting the month. (For some odd reason months are are counted 0-11 whereas days are 1-31.) There's still a little more to do to this one including the addition of code to store diary details. Here's the working test script to show the range of options at work. The percentage substitution string item %e explores something that I've been toying with, the name of the signal/event that initiated the call. Ok, a script can keep its own internal trace but who knows, it might prove useful. #--------------- # calendarTest.tcl #--------------- # Author: William J Giddings # Date: 07/05/09 #--------------- #!/bin/sh # the next line restarts using tclsh \ exec tclsh "$0" "$@" #--------------- package require Gnocl set cal [gnocl::calendar] $cal configure -day 8 -month 7 -year 1956 $cal configure -rowHeight 1 -colWidth 1 $ca...
Comments