MCPcopy Index your code
hub / github.com/python/cpython / tk_strictMotif

Method tk_strictMotif

Lib/tkinter/__init__.py:720–728  ·  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

718 pass
719
720 def tk_strictMotif(self, boolean=None):
721 """Set Tcl internal variable, whether the look and feel
722 should adhere to Motif.
723
724 A parameter of 1 means adhere to Motif (e.g. no color
725 change if mouse passes over slider).
726 Returns the set value."""
727 return self.tk.getboolean(self.tk.call(
728 'set', 'tk_strictMotif', boolean))
729
730 def tk_bisque(self):
731 """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