Posted to tcl by daapp at Fri Jul 16 01:09:31 GMT 2010view raw
- with [set velocityFrame [ttk::frame $axesFrame.velocity]] as f {
- ttk::label $f.lStartVelocity -text "Start velocity:"
- spinbox $f.startVelocity
- ttk::label $f.lMaxVelocity -text "Maximum velocity:"
- spinbox $f.maxVelocity
- ttk::label $f.lTime -text "Acceleration time:"
- spinbox $f.time
- grid $f.lStartVelocity $f.startVelocity
- grid $f.lMaxVelocity $f.maxVelocity
- grid $f.lTime $f.time -sticky ew
- }
- ...
- # later
- pack $velocityFrame