/opt/imh/python3.13/lib/tk8.6/demos
NameSizeModeActions
images/-0755rm
anilabel.tcl66700644editdlrm
aniwave.tcl34940644editdlrm
arrow.tcl81100644editdlrm
bind.tcl30780644editdlrm
bitmap.tcl14110644editdlrm
browse17580755editdlrm
button.tcl15040644editdlrm
check.tcl23100644editdlrm
clrpick.tcl14310644editdlrm
colors.tcl50020644editdlrm
combo.tcl19630644editdlrm
cscroll.tcl50410644editdlrm
ctext.tcl62050644editdlrm
dialog1.tcl9740644editdlrm
dialog2.tcl8280644editdlrm
en.msg38670644editdlrm
entry1.tcl14010644editdlrm
entry2.tcl21060644editdlrm
entry3.tcl61020644editdlrm
filebox.tcl23510644editdlrm
floor.tcl810000644editdlrm
fontchoose.tcl17100644editdlrm
form.tcl10460644editdlrm
goldberg.tcl566660644editdlrm
hello5120755editdlrm
hscale.tcl14970644editdlrm
icon.tcl20630644editdlrm
image1.tcl10020644editdlrm
image2.tcl33590644editdlrm
items.tcl104950644editdlrm
ixset80750755editdlrm
knightstour.tcl91230644editdlrm
label.tcl13790644editdlrm
labelframe.tcl18470644editdlrm
license.terms22670644editdlrm
mclist.tcl43570644editdlrm
menu.tcl72920644editdlrm
menubu.tcl42550644editdlrm
msgbox.tcl19980644editdlrm
nl.msg67500644editdlrm
paned1.tcl11300644editdlrm
paned2.tcl22440644editdlrm
pendulum.tcl76490644editdlrm
plot.tcl27570644editdlrm
puzzle.tcl26030644editdlrm
radio.tcl27520644editdlrm
README20820644editdlrm
rmt53190755editdlrm
rolodex83030755editdlrm
ruler.tcl53330644editdlrm
sayings.tcl22730644editdlrm
search.tcl44030644editdlrm
spin.tcl18200644editdlrm
states.tcl20480644editdlrm
style.tcl69430644editdlrm
tclIndex52980644editdlrm
tcolor112530755editdlrm
text.tcl42910644editdlrm
textpeer.tcl21880644editdlrm
timer10950755editdlrm
toolbar.tcl32720644editdlrm
tree.tcl31780644editdlrm
ttkbut.tcl34050644editdlrm
ttkmenu.tcl23910644editdlrm
ttknote.tcl23170644editdlrm
ttkpane.tcl41770644editdlrm
ttkprogress.tcl15360644editdlrm
ttkscale.tcl14200644editdlrm
twind.tcl116540644editdlrm
unicodeout.tcl47060644editdlrm
vscale.tcl14770644editdlrm
widget240640755editdlrm
Edit: /opt/imh/python3.13/lib/tk8.6/demos/spin.tcl (1820B)
# spin.tcl -- # # This demonstration script creates several spinbox widgets. if {![info exists widgetDemo]} { error "This script should be run from the \"widget\" demo." } package require Tk set w .spin catch {destroy $w} toplevel $w wm title $w "Spinbox Demonstration" wm iconname $w "spin" positionWindow $w label $w.msg -font $font -wraplength 5i -justify left -text "Three different\ spin-boxes are displayed below. You can add characters by pointing,\ clicking and typing. The normal Motif editing characters are\ supported, along with many Emacs bindings. For example, Backspace\ and Control-h delete the character to the left of the insertion\ cursor and Delete and Control-d delete the chararacter to the right\ of the insertion cursor. For values that are too large to fit in the\ window all at once, you can scan through the value by dragging with\ mouse button2 pressed. Note that the first spin-box will only permit\ you to type in integers, and the third selects from a list of\ Australian cities." pack $w.msg -side top ## See Code / Dismiss buttons set btns [addSeeDismiss $w.buttons $w] pack $btns -side bottom -fill x set australianCities { Canberra Sydney Melbourne Perth Adelaide Brisbane Hobart Darwin "Alice Springs" } spinbox $w.s1 -from 1 -to 10 -width 10 -validate key \ -vcmd {string is integer %P} spinbox $w.s2 -from 0 -to 3 -increment .5 -format %05.2f -width 10 spinbox $w.s3 -values $australianCities -width 10 #entry $w.e1 #entry $w.e2 #entry $w.e3 pack $w.s1 $w.s2 $w.s3 -side top -pady 5 -padx 10 ;#-fill x #$w.e1 insert 0 "Initial value" #$w.e2 insert end "This entry contains a long value, much too long " #$w.e2 insert end "to fit in the window at one time, so long in fact " #$w.e2 insert end "that you'll have to scan or scroll to see the end."