Done some work with working on the print settings module today. Now, up to a little under 1100 lines of code and rising! I think that this will end up being one of the largest single modules once all the options are taken into account. Properly implemented the framework for setting print settings from basic options. I've got the basics ready for a 'settings get' subcommand too. Since Gtk+2.10 there has also been the option to save/load settings as a keyfile. This is also something that I'll take a look at. The current work on the print.c module means that the printoperation.c module is no longer needed and will be removed.
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