bwidget

Tcl/Tk megawidgets library extending standard widget capabilities

brewmacoslinux
Try with needOr install directly
Source

About

Tcl/Tk script-only set of megawidgets to provide the developer additional tools

Commands

bwidget

Examples

Load BWidget in a Tcl script to access extended widgets$ tclsh -c "package require BWidget; puts [package versions BWidget]"
Create a Tcl script using BWidget's MainFrame widget$ cat > app.tcl << 'EOF' package require BWidget set top [MainFrame .main] pack $top -fill both -expand yes EOF tclsh app.tcl
Use BWidget's NoteBook widget in a Tk application$ tclsh -c "package require Tk; package require BWidget; set nb [NoteBook .nb]; pack $nb -fill both -expand yes; wm geometry . 400x300; mainloop"