home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / IWidgets / watch < prev   
Encoding:
Text File  |  2001-10-22  |  454 b   |  17 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: watch in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. set tk_strictMotif 1
  7.  
  8. iwidgets::watch .w -state disabled -showampm no -width 155 -height 155
  9. pack .w -padx 10 -pady 10 -fill both -expand yes
  10.  
  11. proc fix_time {} {
  12.     if {! [winfo exists .w]} return
  13.     .w show
  14.     after 1000 fix_time
  15. }
  16. fix_time
  17.