• Home
  • Raw
  • Download

Lines Matching full:widgets

94    that adds custom commands to create and manipulate GUI widgets. Each
96 it. Tk's widgets are very customizable, though at the cost of a dated appearance.
100 Themed Tk (Ttk) is a newer family of Tk widgets that provide a much better
101 appearance on different platforms than many of the classic Tk widgets.
155 toplevel widgets (that is, it has a form like that returned by
231 for many of the classic widgets in the main :mod:`tkinter` module.
322 widgets
323 A Tkinter user interface is made up of individual *widgets*. Each widget is
328 Widgets are arranged in a *hierarchy*. The label and button were contained
334 Widgets have *configuration options*, which modify their appearance and
336 classes of widgets will have different sets of options.
339 Widgets aren't automatically added to the user interface when they are
377 * The commands used to create widgets (like ``ttk::frame``) correspond to
383 * Widgets are referred to by a *pathname* in Tcl (like ``.frm.btn``),
406 First, remember that the details of how individual widgets work may vary
426 As most widgets have many configuration options in common, it can be useful
451 specific operations on widgets do. Even when you know the name of the option
494 Somewhat confusingly, there are also methods on all Tkinter widgets
498 methods in the base :class:`Widget` class that all Tkinter widgets
588 widgets, the latter are the options that are idiosyncratic to that particular
593 document. Some options don't apply to some kinds of widgets. Whether a given
636 .. index:: single: packing (widgets)
639 are used to specify the relative positioning of widgets within their container -
645 The size of any *master* widget is determined by the size of the "slave widgets"
646 inside. The packer is used to control where slave widgets appear inside the
647 master into which they are packed. You can pack widgets into frames, and frames
652 Note that widgets do not appear until they have had their geometry specified
695 The current-value setting of some widgets (like text entry widgets) can be
749 .. index:: single: window manager (widgets)
754 been implemented as methods on the :class:`Wm` class. Toplevel widgets are
838 measured in pixels for most widgets (in characters for widgets displaying text).
867 single: bind (widgets)
868 single: events (widgets)
930 A number of widgets require "index" parameters to be passed. These are used to
935 Entry widgets have options that refer to character positions in the text being
937 points in text widgets:
940 The index notation for Text widgets is very rich and is best described in the Tk