本文整理汇总了Python中tkinter.Tk.wait_window方法的典型用法代码示例。如果您正苦于以下问题:Python Tk.wait_window方法的具体用法?Python Tk.wait_window怎么用?Python Tk.wait_window使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tkinter.Tk
的用法示例。
在下文中一共展示了Tk.wait_window方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ReplicatorMain
# 需要导入模块: from tkinter import Tk [as 别名]
# 或者: from tkinter.Tk import wait_window [as 别名]
class ReplicatorMain(VerticalScrolledFrame):
"""The main class for the GUI of the application"""
merge = None
"""This is the merge object of the application, it holds all settings for the merge operation"""
filename = None
"""The name of the file containing the merge definition"""
fr_src_dataset = None
"""The fram of the source dataset, contains a FrameCustomDataset descendant"""
fr_dest_dataset = None
"""The fram of the source dataset, contains a FrameCustomDataset descendant"""
suppress_errors = None
"""Do not show any errors"""
_row_index = None
"""The current row in the dataset"""
curr_mapping_frame = None
"""The currently selected mapping frame"""
def __init__(self, _merge=None, _filename=None, *args, **kw):
self.parent = Tk()
# Init oneself
super(ReplicatorMain, self).__init__(self.parent, bd=1, relief=SUNKEN, *args, **kw)
self.grid(stick=(E, W, N, S))
self.suppress_errors = None
self.merge = _merge
self.filename = _filename
self.fr_src_dataset = None
self.fr_dest_dataset = None
self.grid()
self.ip_address = StringVar()
self._row_index = 0
self.init_GUI()
if _filename is not None and _merge is not None:
# _merge._load_datasets()
self._merge_to_gui()
self.parent.columnconfigure(0, weight=1)
self.parent.rowconfigure(0, weight=1)
self.resize()
self.parent.mainloop()
def resize(self):
"""
Resize the window, set the width what the internal windows need.
"""
self._canvas.update_idletasks()
self.fr_top_right.update_idletasks()
self._canvas.config(width=self.interior.winfo_reqwidth() + 1, height=self.interior.winfo_reqheight())
def on_dataset_columns_change(self, *args):
# Columns have changed; force reload columns from structure
self.fr_src_dataset.get_possible_references(True)
self.fr_dest_dataset.get_possible_references(True)
for curr_mapping in self.g_mappings.items:
curr_mapping.fr_item.reload_references()
def notify_task(self, _task, _progress):
"""Override as this is the top widget"""
self.fr_Status_Bar.update_task(_task, _progress)
def notify_messagebox(self, _title, _message, _kind=None):
"""Override as this is the top class, default is error."""
if self.suppress_errors is None:
if _kind == "message":
messagebox.showinfo(_title, _message)
elif _kind == "warning":
messagebox.showwarning(_title, _message)
else:
messagebox.showerror(_title, _message)
def on_post_merge_sql(self, *args):
# Show post-merge-SQL dialog
_wdw = Toplevel()
_wdw.geometry('+400+400')
_wdw.e = TextExtension(_wdw, textvariable=self.post_execute_sql)
_wdw.e.pack()
_wdw.e.focus_set()
_wdw.transient(self.parent)
_wdw.grab_set()
self.parent.wait_window(_wdw)
_wdw.e.unhook()
del (_wdw)
def on_src_connect(self, *args):
"""Event handler for when the source connection is set"""
self.fr_mapping.src_dal = self.fr_dataset_src.dal
def on_dest_connect(self, *args):
#.........这里部分代码省略.........