2024-05-27 16:40:40 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# the next line restarts using wish \
|
|
|
|
exec wish "$0" "$@"
|
|
|
|
|
|
|
|
# timer --
|
2024-05-27 16:13:40 +02:00
|
|
|
# This script generates a counter with start and stop buttons.
|
2024-05-27 16:40:40 +02:00
|
|
|
#
|
|
|
|
# SCCS: @(#) timer 1.6 96/02/16 10:49:20
|
2024-05-27 16:13:40 +02:00
|
|
|
|
|
|
|
label .counter -text 0.00 -relief raised -width 10
|
|
|
|
button .start -text Start -command {
|
|
|
|
if $stopped {
|
|
|
|
set stopped 0
|
|
|
|
tick
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button .stop -text Stop -command {set stopped 1}
|
|
|
|
pack .counter -side bottom -fill both
|
|
|
|
pack .start -side left -fill both -expand yes
|
|
|
|
pack .stop -side right -fill both -expand yes
|
|
|
|
|
|
|
|
set seconds 0
|
|
|
|
set hundredths 0
|
|
|
|
set stopped 1
|
|
|
|
|
|
|
|
proc tick {} {
|
|
|
|
global seconds hundredths stopped
|
|
|
|
if $stopped return
|
|
|
|
after 50 tick
|
|
|
|
set hundredths [expr $hundredths+5]
|
|
|
|
if {$hundredths >= 100} {
|
|
|
|
set hundredths 0
|
|
|
|
set seconds [expr $seconds+1]
|
|
|
|
}
|
|
|
|
.counter config -text [format "%d.%02d" $seconds $hundredths]
|
|
|
|
}
|
|
|
|
|
|
|
|
bind . <Control-c> {destroy .}
|
|
|
|
bind . <Control-q> {destroy .}
|
|
|
|
focus .
|