CORE WIDGETS and no, the ordering is most definitely not aimless... DKF
- button (generic graphical activatable item)

- checkbutton (one on/off button)

- radiobutton (one button which eventually will be a mutually exclusive selection button)

- menubutton (one button storing a menu) slebetman A menubutton is what Windows developers call combobox. Unfortunately, on Windows, menubutton does not look like a proper combobox so users will usually be confused by the menubutton. On other operating systems like SunOS and the Mac, the menubutton is exactly what the user expects.

- label (textual information)

- labelframe (info attached to a group of widgets. NEW WIDGET IN 8.4!)

- message (a variation on the theme of labels; uncommon)

- frame (a box for other widgets)
- toplevel (a frame that doesn't live inside another widget)
- panedwindow (a container for widgets that lets the user proportion space between them. NEW WIDGET IN 8.4!)

- menu (accesses the real, OS menu on some platforms)
- scale (for adjusting numeric values)

- scrollbar (for adjusting scrollable widgets)

- listbox (selection from a list; Configurable line colours new in 8.3)

- entry (Single-line text entry)

- spinbox (Numeric entry widget. NEW WIDGET IN 8.4!) MG The spinbox can also be used for non-numerical items. If you give it a list of strings, it'll scroll through them all.

- text (Multi-line text entry, but also hypertext and so much more. A very versatile widget indeed...)

- canvas (Hyper-graphics; extremely powerful)
DERIVED WIDGETS (implemented by OS on some platforms)

Standard Tk on Unix:
Tk on Unix in Motif-emulation mode:
Standard Tk on Windows:
(looks very similar to the above dialogs...)


ZipGuy - added paned window and tk_chooseDirectory
[Category Widget|Category Dialog|Category GUI]