Poet2.2 Manual | Prototype Object Extension for Tcl |
A widget demo, consisting mostly of translated versions of the Tk and Ttk demos, can be run with the command ProtoWidget demo. The demo is more interesting if tier 3 is enabled.package require Poet
Tk_Scale construct scl . -from -7 -to 7 -orient horizontal \
-layout {-side top}
Tk_Button construct btn . -text "Reset" -layout {-side top} \
-command "scl slot value 0"
btn formula state {
expr {[scl slot value] == 0 ? "disabled" : "normal"}
}
btn slotConstrain state