MCPcopy Index your code
hub / github.com/RustPython/RustPython / tk_strictMotif

Method tk_strictMotif

Lib/tkinter/__init__.py:702–710  ·  view source on GitHub ↗

Set Tcl internal variable, whether the look and feel should adhere to Motif. A parameter of 1 means adhere to Motif (e.g. no color change if mouse passes over slider). Returns the set value.

(self, boolean=None)

Source from the content-addressed store, hash-verified

700 pass
701
702 def tk_strictMotif(self, boolean=None):
703 """Set Tcl internal variable, whether the look and feel
704 should adhere to Motif.
705
706 A parameter of 1 means adhere to Motif (e.g. no color
707 change if mouse passes over slider).
708 Returns the set value."""
709 return self.tk.getboolean(self.tk.call(
710 'set', 'tk_strictMotif', boolean))
711
712 def tk_bisque(self):
713 """Change the color scheme to light brown as used in Tk 3.6 and before."""

Callers

nothing calls this directly

Calls 2

getbooleanMethod · 0.45
callMethod · 0.45

Tested by

no test coverage detected