Tcl/Tk megawidgets library extending standard widget capabilities
Tcl/Tk script-only set of megawidgets to provide the developer additional tools
bwidget$ tclsh -c "package require BWidget; puts [package versions BWidget]"$ cat > app.tcl << 'EOF'
package require BWidget
set top [MainFrame .main]
pack $top -fill both -expand yes
EOF
tclsh app.tcl$ tclsh -c "package require Tk; package require BWidget; set nb [NoteBook .nb]; pack $nb -fill both -expand yes; wm geometry . 400x300; mainloop"