[ABU] 26-may-2005 '''WallClock 1.0''' A clock widget, synchronized with system-clock. Wallclock is a continuosly updated clock embedded in a label widget. Two commands (start/stop) and three options (-interval,-timeformat,-utc) have been added to the standard label-widget's options/commands. See demo and documentation within the package. * readme [http://web.tiscali.it/irrational/tcl/wallclock1.0/wallclock.txt] * home page and download at [http://web.tiscali.it/irrational/tcl/wallclock1.0/index.html] This package requires [SyncTimer] ---- Here is a sample : 4-clocks package require wallclock foreach w { .l1 .l2 .l3 .l4 } { wallclock $w $w start } grid .l1 .l2 -padx 10 -pady 10 -sticky ew grid .l3 .l4 -padx 10 -pady 10 -sticky ew # --- style touch ------------------------------------------ foreach w { .l1 .l2 .l3 .l4 } { $w configure -relief ridge -bd 3 -padx 20 -pady 10 } .l1 configure -bg red .l2 configure -bg green .l3 configure -bg yellow .l4 configure -bg black -foreground gray75 .l1 configure -bg red -font {Mathematica7 20} .l2 configure -bg green -font {{SF Chromium 24} 20} .l3 configure -bg yellow -font {{SF Zimmerman} 20} .l4 configure -bg black -foreground gray50 -font {{SF Zero Gravity Condensed} 20} ---- [Category Widget] [Category Snit Widgets]