blob: aea25ec8051ef8a8cfb269a8136ce2ce862fdc02 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# ----------------------------------------------------------------------
# DEMO: timeentry in [incr Widgets]
# ----------------------------------------------------------------------
#\
exec itkwish "$0" ${1+"$@"}
package require Iwidgets 3.0
iwidgets::timeentry .de -labeltext "Time:"
pack .de -fill x -expand yes -padx 10 -pady 10
|