mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
98 lines
4.3 KiB
Python
98 lines
4.3 KiB
Python
import customtkinter
|
|
import tkinter
|
|
import sys
|
|
|
|
from ..theme_manager import ThemeManager
|
|
from ..appearance_mode_tracker import AppearanceModeTracker
|
|
|
|
|
|
class DropdownMenu(tkinter.Toplevel):
|
|
def __init__(self, *args,
|
|
fg_color="#555555",
|
|
button_color="gray50",
|
|
button_hover_color="gray35",
|
|
text_color="black",
|
|
corner_radius=6,
|
|
button_corner_radius=3,
|
|
width=120,
|
|
button_height=24,
|
|
x_position=0,
|
|
y_position=0,
|
|
x_spacing=3,
|
|
y_spacing=3,
|
|
command=None,
|
|
values=None,
|
|
**kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.values = values
|
|
self.command = command
|
|
|
|
# color
|
|
self.appearance_mode = AppearanceModeTracker.get_mode() # 0: "Light" 1: "Dark"
|
|
self.fg_color = fg_color
|
|
self.button_color = button_color
|
|
self.button_hover_color = button_hover_color
|
|
self.text_color = text_color
|
|
|
|
# shape
|
|
self.width = width
|
|
self.corner_radius = corner_radius
|
|
self.button_corner_radius = button_corner_radius
|
|
self.button_height = button_height
|
|
|
|
self.geometry(f"{round(self.width)}x{round(len(self.values) * (self.button_height + y_spacing) + y_spacing)}+{round(x_position)}+{round(y_position)}")
|
|
self.grid_columnconfigure(0, weight=1)
|
|
|
|
if sys.platform.startswith("darwin"):
|
|
self.overrideredirect(True) # remove title-bar
|
|
self.overrideredirect(False)
|
|
self.wm_attributes("-transparent", True) # turn off window shadow
|
|
self.config(bg='systemTransparent') # transparent bg
|
|
self.frame = customtkinter.CTkFrame(self, border_width=0, width=self.width, corner_radius=self.corner_radius,
|
|
fg_color=ThemeManager.single_color(self.fg_color, self.appearance_mode))
|
|
|
|
elif sys.platform.startswith("win"):
|
|
self.overrideredirect(True) # remove title-bar
|
|
self.configure(bg="#010302")
|
|
self.wm_attributes("-transparentcolor", "#010302")
|
|
self.focus()
|
|
self.frame = customtkinter.CTkFrame(self, border_width=0, width=120, corner_radius=self.corner_radius,
|
|
fg_color=self.fg_color, overwrite_preferred_drawing_method="circle_shapes")
|
|
else:
|
|
self.overrideredirect(True) # remove title-bar
|
|
self.configure(bg="#010302")
|
|
self.wm_attributes("-transparentcolor", "#010302")
|
|
self.frame = customtkinter.CTkFrame(self, border_width=0, width=120, corner_radius=self.corner_radius,
|
|
fg_color=self.fg_color, overwrite_preferred_drawing_method="circle_shapes")
|
|
|
|
self.frame.grid(row=0, column=0, sticky="nsew", rowspan=len(self.values) + 1)
|
|
self.frame.grid_rowconfigure(len(self.values) + 1, minsize=y_spacing) # add spacing at the bottom
|
|
self.frame.grid_columnconfigure(0, weight=1)
|
|
|
|
self.button_list = []
|
|
for index, option in enumerate(self.values):
|
|
button = customtkinter.CTkButton(self.frame, text=option, height=self.button_height, width=self.width - 2 * x_spacing,
|
|
fg_color=self.button_color, text_color=self.text_color,
|
|
hover_color=self.button_hover_color, corner_radius=self.button_corner_radius,
|
|
command=lambda i=index: self.button_callback(i))
|
|
button.text_label.grid(row=0, column=0, rowspan=2, columnspan=2, sticky="w")
|
|
button.grid(row=index, column=0, padx=x_spacing, pady=(y_spacing, 0), sticky="ew")
|
|
self.button_list.append(button)
|
|
|
|
self.bind("<FocusOut>", self.focus_loss_event)
|
|
self.frame.canvas.bind("<Button-1>", self.focus_loss_event)
|
|
|
|
def focus_loss_event(self, event):
|
|
self.destroy()
|
|
if sys.platform.startswith("darwin"):
|
|
self.update()
|
|
|
|
def button_callback(self, index):
|
|
self.destroy()
|
|
if sys.platform.startswith("darwin"):
|
|
self.update()
|
|
|
|
if self.command is not None:
|
|
self.command(self.values[index])
|