-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.py
87 lines (72 loc) · 2.7 KB
/
popup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# imports - popup.py, file containing all custom popups used in BitBuyBit
import customtkinter as ctk
class Dialog(ctk.CTkToplevel):
def __init__(self, title: str, dialog: str, options: list[tuple[str, int]], *args, **kwargs):
super().__init__(*args, **kwargs)
self.title(title)
self.attributes('-topmost', True)
self.resizable(False, False)
self.dialog_label = ctk.CTkLabel(self, text=dialog)
self.dialog_label.pack(side=ctk.TOP, anchor=ctk.CENTER, fill=ctk.BOTH, padx=10, pady=10)
self.flag = None
for option in options:
option_button = ctk.CTkButton(self, text=option[0], command=lambda flag=option[1]: self.trigger(flag=flag))
option_button.pack(side=ctk.LEFT, fill=ctk.X, expand=True, padx=10, pady=10)
def trigger(self, flag):
self.flag = flag
self.destroy()
def finish(self):
self.deiconify()
self.wm_protocol("WM_DELETE_WINDOW", self.destroy)
self.wait_window(self)
return self.flag
class CreateToolTip(object):
"""
create a tooltip for a given widget
"""
def __init__(self, widget, text='widget info'):
self.waittime = 500 # milliseconds
self.widget = widget
self.text = text
self.widget.bind("<Enter>", self.enter)
self.widget.bind("<Leave>", self.leave)
self.widget.bind("<ButtonPress>", self.leave)
self.id = None
self.tw = None
self.deprecated = None
def enter(self, event=None):
self.deprecated = event
self.schedule()
def leave(self, event=None):
self.deprecated = event
self.unschedule()
self.hidetip()
def schedule(self):
self.unschedule()
self.id = self.widget.after(self.waittime, self.showtip)
def unschedule(self):
idx = self.id
self.id = None
if idx:
self.widget.after_cancel(idx)
def showtip(self, event=None):
self.deprecated = event
x, y, cx, cy = self.widget.bbox("insert")
x += self.widget.winfo_rootx() + 25
y += self.widget.winfo_rooty() + 20
# creates a toplevel window
self.tw = ctk.CTkToplevel(self.widget)
# Leaves only the label and removes the app window
self.tw.wm_overrideredirect(True)
self.tw.wm_geometry("+%d+%d" % (x, y))
label = ctk.CTkLabel(self.tw, text=self.text, justify='left')
label.pack(ipadx=1, padx=10, pady=10)
def hidetip(self):
tw = self.tw
self.tw = None
if tw:
tw.destroy()
def popup(title, dialog, options, parent):
dialog = Dialog(title, dialog, options, parent)
result = dialog.finish()
return result