Lines Matching refs:ttk
0 """Ttk wrapper.
5 Ttk is based on a revised and enhanced version of
155 """Formats a layout list so we can pass the result to ttk::style
156 layout and ttk::style settings. Note that the layout doesn't has to
214 script.append("ttk::style configure %s %s;" % (name, s))
218 script.append("ttk::style map %s %s;" % (name, s))
225 script.append("ttk::style layout %s {\n%s\n}" % (name, s))
240 script.append("ttk::style element create %s %s %s %s" % (
278 """Construct a list from the tuple returned by ttk::layout, this is
367 _name = "ttk::style"
520 return self.tk.eval("return $ttk::currentTheme")
522 # using "ttk::setTheme" instead of "ttk::style theme use" causes
523 # the variable currentTheme to be updated, also, ttk::setTheme calls
524 # "ttk::style theme use" in order to change theme.
525 self.tk.call("ttk::setTheme", themename)
532 """Constructs a Ttk Widget with the parent master.
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
618 """Ttk Checkbutton widget which is either in on- or off-state."""
621 """Construct a Ttk Checkbutton widget with the parent master.
632 Widget.__init__(self, master, "ttk::checkbutton", kw)
647 """Ttk Entry widget displays a one-line text string and allows that
651 """Constructs a Ttk Entry widget with the parent master.
666 Widget.__init__(self, master, widget or "ttk::entry", kw)
689 """Ttk Combobox widget combines a text field with a pop-down list of
693 """Construct a Ttk Combobox widget with the parent master.
704 Entry.__init__(self, master, "ttk::combobox", **kw)
721 """Ttk Frame widget is a container, used to group other widgets
725 """Construct a Ttk Frame with parent master.
735 Widget.__init__(self, master, "ttk::frame", kw)
739 """Ttk Label widget displays a textual label and/or image."""
742 """Construct a Ttk Label with parent master.
754 Widget.__init__(self, master, "ttk::label", kw)
758 """Ttk Labelframe widget is a container used to group other widgets
763 """Construct a Ttk Labelframe with parent master.
773 Widget.__init__(self, master, "ttk::labelframe", kw)
779 """Ttk Menubutton widget displays a textual label and/or image, and
783 """Construct a Ttk Menubutton with parent master.
794 Widget.__init__(self, master, "ttk::menubutton", kw)
798 """Ttk Notebook widget manages a collection of windows and displays
803 """Construct a Ttk Notebook with parent master.
831 Widget.__init__(self, master, "ttk::notebook", kw)
927 self.tk.call("ttk::notebook::enableTraversal", self._w)
931 """Ttk Panedwindow widget displays a number of subwindows, stacked
935 """Construct a Ttk Panedwindow with parent master.
949 Widget.__init__(self, master, "ttk::panedwindow", kw)
990 """Ttk Progressbar widget shows the status of a long-running
997 """Construct a Ttk Progressbar with parent master.
1007 Widget.__init__(self, master, "ttk::progressbar", kw)
1032 """Ttk Radiobutton widgets are used in groups to show or change a
1036 """Construct a Ttk Radiobutton with parent master.
1047 Widget.__init__(self, master, "ttk::radiobutton", kw)
1060 """Ttk Scale widget is typically used to control the numeric value of
1064 """Construct a Ttk Scale with parent master.
1074 Widget.__init__(self, master, "ttk::scale", kw)
1099 """Ttk Scrollbar controls the viewport of a scrollable widget."""
1102 """Construct a Ttk Scrollbar with parent master.
1112 Widget.__init__(self, master, "ttk::scrollbar", kw)
1116 """Ttk Separator widget displays a horizontal or vertical separator
1120 """Construct a Ttk Separator with parent master.
1130 Widget.__init__(self, master, "ttk::separator", kw)
1134 """Ttk Sizegrip allows the user to resize the containing toplevel
1138 """Construct a Ttk Sizegrip with parent master.
1144 Widget.__init__(self, master, "ttk::sizegrip", kw)
1148 """Ttk Treeview widget displays a hierarchical collection of items.
1155 """Construct a Ttk Treeview with parent master.
1174 Widget.__init__(self, master, "ttk::treeview", kw)
1460 """A Ttk Scale widget with a Ttk Label widget indicating its
1463 The Ttk Scale can be accessed through instance.scale, and Ttk Label
1468 variable to be associated with the Ttk Scale widget and its range.