summaryrefslogtreecommitdiff
path: root/itcl/iwidgets3.0.0/demos/pushbutton
blob: 3244a0762926170440c2f77685076610a8cccd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# ----------------------------------------------------------------------
#  DEMO: pushbutton in [incr Widgets]
# ----------------------------------------------------------------------
#\
exec itkwish "$0" ${1+"$@"}
package require Iwidgets 3.0

# itkwish interprets the rest...
# ----------------------------------------------------------------------
. configure -background white

iwidgets::pushbutton .pb -text "Push Me" -defaultring yes -command {
    puts "Hello, World!"
}
pack .pb -padx 4 -pady 4

checkbutton .default -text "Default ring" -variable defring \
    -command {.pb configure -defaultring $defring}
pack .default -padx 4 -pady 4

.default invoke