tkinter.ttk.LabeledScale - A Ttk Scale widget with a Ttk Label widget indicating its
current value.
The Ttk Scale can be accessed through instance.scale, and Ttk Label
can be accessed through instance.label
tkinter.ttk.Labelframe - Ttk Labelframe widget is a container used to group other widgets
together. It has an optional label, which may be a plain text string
or another widget.
tkinter.ttk.Menubutton - Ttk Menubutton widget displays a textual label and/or image, and
displays a menu when pressed.
tkinter.ttk.Notebook - Ttk Notebook widget manages a collection of windows and displays
a single one at a time.
tkinter.ttk.OptionMenu - Themed OptionMenu, based after tkinter's OptionMenu, which allows
the user to select a value from a menu.
tkinter.ttk.Panedwindow - Ttk Panedwindow widget displays a number of subwindows, stacked
either vertically or horizontally.
tkinter.ttk.Progressbar - Ttk Progressbar widget shows the status of a long-running
operation.
tkinter.ttk.Radiobutton - Ttk Radiobutton widgets are used in groups to show or change a
set of mutually-exclusive options.
tkinter.ttk.Scale - Ttk Scale widget is typically used to control the numeric value of
a linked variable that varies uniformly over some range.
tkinter.ttk.Separator - Ttk Separator widget displays a horizontal or vertical separator
bar.
tkinter.ttk.Sizegrip - Ttk Sizegrip allows the user to resize the containing toplevel
window by pressing and dragging the grip.
tkinter.ttk.Spinbox - Ttk Spinbox is an Entry with increment and decrement arrows
It is commonly used for number entry or to select from a list of
string values.
tkinter.ttk.Treeview - Ttk Treeview widget displays a hierarchical collection of items.
Classic Widgets with No Themed Counterpart
tkinter.Canvas - Canvas widget to display graphical elements like lines or text.
tkinter.Listbox - Listbox widget which can display a list of strings.
tkinter.Menu - Menu widget which allows displaying menu bars, pull-down menus and pop-up menus.
tkinter.Text - Text widget which can display text in various forms.
tkinter.Variable - Class to define value holders for e.g. buttons.
Subclasses StringVar, IntVar, DoubleVar, BooleanVar are specializations
that constrain the type of the value returned from get().