What widget types are available under perl/Tk?
• Button • Canvas • Checkbutton • Entry • Frame • Label • Listbox • Menu • Menubutton • Message • Radiobutton • Scale • Scrollbar • Text • Toplevel The following are Tix widget primitives available under perl/Tk: • HList • InputOnly There are (a lot of) other [compound|composite|constructs] available too. You can also synthesize new widgets out of these primitives using perl5’s object-oriented multiple inheritance features. You can even build entirely new widget primitives from raw C (XS) code then use and re-use that. (Perl 5 is extremely configurable.
The following Tk widget primitives are available under perl/Tk: • Button • Canvas • Checkbutton • Entry • Frame • Label • Listbox • Menu • Menubutton • Message • Radiobutton • Scale • Scrollbar • Text • Toplevel The following are Tix widget primitives available under perl/Tk: • HList • InputOnly There are (a lot of) other compound/composite/constructs available too.