OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [itcl/] [iwidgets3.0.0/] [demos/] [feedback] - Rev 1770

Go to most recent revision | Compare with Previous | Blame | View Log

#!/bin/sh
# ----------------------------------------------------------------------
#  DEMO: feedback in [incr Widgets]
# ----------------------------------------------------------------------
#\
exec itkwish "$0" ${1+"$@"}
package require Iwidgets 3.0

# itkwish interprets the rest...
# ----------------------------------------------------------------------

frame .f -width 200 -height 100
pack propagate .f no

iwidgets::feedback .f.fb -labeltext "Status" -steps 22
pack .f.fb -padx 4 -pady 4 -fill both -expand yes

button .go -text "Go" -command {
    .f.fb reset
    for {set i 0} {$i < 22} {incr i} {
        .f.fb step
        after 100
    }
}
pack .f
pack .go -padx 4 -pady 4

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.