Kaydet (Commit) 8e5e438d authored tarafından Guilherme Polo's avatar Guilherme Polo

Eliminated the need to use ttk.__loadtk__ and the problems related it.

üst 92c3b219
......@@ -29,15 +29,10 @@ import Tkinter
_flatten = Tkinter._flatten
# Verify if Tk is new enough to not need Tile checking
# Verify if Tk is new enough to not need the Tile package
_REQUIRE_TILE = True if Tkinter.TkVersion < 8.5 else False
def _loadttk(loadtk):
# This extends the default Tkinter.Tk._loadtk method so we can be
# sure that ttk is available for use, or not.
def _wrapper(self):
loadtk(self)
def _load_tile(master):
if _REQUIRE_TILE:
import os
tilelib = os.environ.get('TILE_LIBRARY')
......@@ -45,16 +40,30 @@ def _loadttk(loadtk):
# append custom tile path to the the list of directories that
# Tcl uses when attempting to resolve packages with the package
# command
self.tk.eval('global auto_path; '
master.tk.eval(
'global auto_path; '
'lappend auto_path {%s}' % tilelib)
self.tk.eval('package require tile') # TclError may be raised here
return _wrapper
master.tk.eval('package require tile') # TclError may be raised here
master._tile_loaded = True
def _setup_master(master=None):
"""If master is not None, itself is returned. If master is None,
the default master is returned if there is one, otherwise a new
master is created and returned.
If it is not allowed to use the default root and master is None,
RuntimeError is raised."""
if master is None:
if Tkinter._support_default_root:
master = Tkinter._default_root or Tkinter.Tk()
else:
raise RuntimeError(
"No master specified and Tkinter is "
"configured to not support default root")
return master
# Store the original Tkinter.Tk._loadtk before replacing it just in case
# someone wants to restore it.
__loadtk__ = Tkinter.Tk._loadtk
Tkinter.Tk._loadtk = _loadttk(Tkinter.Tk._loadtk)
def _format_optdict(optdict, script=False, ignore=None):
......@@ -366,12 +375,11 @@ class Style(object):
_name = "ttk::style"
def __init__(self, master=None):
if master is None:
if Tkinter._support_default_root:
master = Tkinter._default_root or Tkinter.Tk()
else:
raise RuntimeError("No master specified and Tkinter is "
"configured to not support default master")
master = _setup_master(master)
if not getattr(master, '_tile_loaded', False):
# Load tile now, if needed
_load_tile(master)
self.master = master
self.tk = self.master.tk
......@@ -548,6 +556,10 @@ class Widget(Tkinter.Widget):
active, disabled, focus, pressed, selected, background,
readonly, alternate, invalid
"""
master = _setup_master(master)
if not getattr(master, '_tile_loaded', False):
# Load tile now, if needed
_load_tile(master)
Tkinter.Widget.__init__(self, master, widgetname, kw=kw)
......
......@@ -4,15 +4,9 @@ import unittest
import os
import _tkinter
from test import test_support
from Tkinter import Tk, Tcl
from Tkinter import Tcl
from _tkinter import TclError
# Restore Tkinter.Tk._loadtk that may have been overridden by ttk.
# If this is not done then this test may fail for reasons related
# to ttk only (like failing to load the tile package).
from ttk import __loadtk__
Tk._loadtk = __loadtk__
class TkinterTest(unittest.TestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment