Searched refs:themename (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/tkinter/ |
D | ttk.py | 476 def theme_create(self, themename, parent=None, settings=None): argument 486 self.tk.call(self._name, "theme", "create", themename, 489 self.tk.call(self._name, "theme", "create", themename, 493 def theme_settings(self, themename, settings): argument 502 self.tk.call(self._name, "theme", "settings", themename, script) 510 def theme_use(self, themename=None): argument 514 if themename is None: 522 self.tk.call("ttk::setTheme", themename)
|
/third_party/python/Doc/library/ |
D | tkinter.ttk.rst | 1425 element. *args* is expected to contain a themename, from which 1441 .. method:: theme_create(themename, parent=None, settings=None) 1445 It is an error if *themename* already exists. If *parent* is specified, 1451 .. method:: theme_settings(themename, settings) 1453 Temporarily sets the current theme to *themename*, apply specified 1493 .. method:: theme_use(themename=None) 1495 If *themename* is not given, returns the theme in use. Otherwise, sets 1496 the current theme to *themename*, refreshes all widgets and emits a
|