CustomTkinter/customtkinter/widgets/ctk_optionmenu.py

322 lines
15 KiB
Python
Raw Normal View History

2022-05-25 23:14:38 +03:00
import tkinter
import sys
2022-05-31 23:32:21 +03:00
from typing import Union
2022-05-25 23:14:38 +03:00
from .dropdown_menu import DropdownMenu
2022-06-13 16:08:13 +03:00
from .dropdown_menu_fallback import DropdownMenuFallback
2022-05-25 23:14:38 +03:00
from .ctk_canvas import CTkCanvas
from ..theme_manager import ThemeManager
from ..settings import Settings
from ..draw_engine import DrawEngine
from .widget_base_class import CTkBaseClass
class CTkOptionMenu(CTkBaseClass):
def __init__(self, *args,
bg_color=None,
fg_color="default_theme",
button_color="default_theme",
button_hover_color="default_theme",
2022-05-27 01:12:37 +03:00
dropdown_color="default_theme",
dropdown_hover_color="default_theme",
dropdown_text_color="default_theme",
2022-05-25 23:14:38 +03:00
variable=None,
values=None,
command=None,
2022-05-31 23:32:21 +03:00
width=140,
2022-05-25 23:14:38 +03:00
height=28,
corner_radius="default_theme",
text_font="default_theme",
text_color="default_theme",
text_color_disabled="default_theme",
hover=True,
state=tkinter.NORMAL,
**kwargs):
2022-05-31 23:32:21 +03:00
# transfer basic functionality (bg_color, size, _appearance_mode, scaling) to CTkBaseClass
2022-05-25 23:14:38 +03:00
super().__init__(*args, bg_color=bg_color, width=width, height=height, **kwargs)
# color variables
self.fg_color = ThemeManager.theme["color"]["button"] if fg_color == "default_theme" else fg_color
self.button_color = ThemeManager.theme["color"]["optionmenu_button"] if button_color == "default_theme" else button_color
self.button_hover_color = ThemeManager.theme["color"]["optionmenu_button_hover"] if button_hover_color == "default_theme" else button_hover_color
2022-05-27 01:12:37 +03:00
self.dropdown_color = ThemeManager.theme["color"]["dropdown_color"] if dropdown_color == "default_theme" else dropdown_color
self.dropdown_hover_color = ThemeManager.theme["color"]["dropdown_hover"] if dropdown_hover_color == "default_theme" else dropdown_hover_color
self.dropdown_text_color = ThemeManager.theme["color"]["dropdown_text"] if dropdown_text_color == "default_theme" else dropdown_text_color
2022-05-25 23:14:38 +03:00
# shape
self.corner_radius = ThemeManager.theme["shape"]["button_corner_radius"] if corner_radius == "default_theme" else corner_radius
# text and font
self.text_label = None
self.text_color = ThemeManager.theme["color"]["text"] if text_color == "default_theme" else text_color
self.text_color_disabled = ThemeManager.theme["color"]["text_button_disabled"] if text_color_disabled == "default_theme" else text_color_disabled
self.text_font = (ThemeManager.theme["text"]["font"], ThemeManager.theme["text"]["size"]) if text_font == "default_theme" else text_font
# callback and hover functionality
self.function = command
self.variable = variable
2022-05-27 01:12:37 +03:00
self.variable_callback_blocked = False
self.variable_callback_name = None
2022-05-25 23:14:38 +03:00
self.state = state
self.hover = hover
self.click_animation_running = False
2022-05-31 23:32:21 +03:00
2022-05-25 23:14:38 +03:00
if values is None:
self.values = ["CTkOptionMenu"]
else:
self.values = values
2022-05-31 23:32:21 +03:00
if len(self.values) > 0:
self.current_value = self.values[0]
else:
self.current_value = "CTkOptionMenu"
self.dropdown_menu: Union[DropdownMenu, None] = None
2022-05-25 23:14:38 +03:00
# configure grid system (1x1)
self.grid_rowconfigure(0, weight=1)
self.grid_columnconfigure(0, weight=1)
self.canvas = CTkCanvas(master=self,
highlightthickness=0,
2022-05-31 23:32:21 +03:00
width=self.apply_widget_scaling(self._desired_width),
height=self.apply_widget_scaling(self._desired_height))
2022-05-25 23:14:38 +03:00
self.canvas.grid(row=0, column=0, rowspan=1, columnspan=1, sticky="nsew")
self.draw_engine = DrawEngine(self.canvas)
# event bindings
self.canvas.bind("<Enter>", self.on_enter)
self.canvas.bind("<Leave>", self.on_leave)
self.canvas.bind("<Button-1>", self.clicked)
self.canvas.bind("<Button-1>", self.clicked)
self.bind('<Configure>', self.update_dimensions_event)
self.draw() # initial draw
2022-05-27 01:12:37 +03:00
if self.variable is not None:
self.variable_callback_name = self.variable.trace_add("write", self.variable_callback)
self.set(self.variable.get(), from_variable_callback=True)
2022-05-25 23:14:38 +03:00
def set_scaling(self, *args, **kwargs):
super().set_scaling(*args, **kwargs)
if self.text_label is not None:
self.text_label.destroy()
self.text_label = None
2022-05-31 23:32:21 +03:00
self.canvas.configure(width=self.apply_widget_scaling(self._desired_width),
height=self.apply_widget_scaling(self._desired_height))
2022-05-25 23:14:38 +03:00
self.draw()
def set_dimensions(self, width: int = None, height: int = None):
2022-05-25 23:14:38 +03:00
super().set_dimensions(width, height)
2022-05-31 23:32:21 +03:00
self.canvas.configure(width=self.apply_widget_scaling(self._desired_width),
height=self.apply_widget_scaling(self._desired_height))
2022-05-25 23:14:38 +03:00
self.draw()
def draw(self, no_color_updates=False):
2022-05-31 23:32:21 +03:00
left_section_width = self._current_width - self._current_height
requires_recoloring = self.draw_engine.draw_rounded_rect_with_border_vertical_split(self.apply_widget_scaling(self._current_width),
self.apply_widget_scaling(self._current_height),
2022-05-25 23:14:38 +03:00
self.apply_widget_scaling(self.corner_radius),
0,
self.apply_widget_scaling(left_section_width))
2022-05-31 23:32:21 +03:00
requires_recoloring_2 = self.draw_engine.draw_dropdown_arrow(self.apply_widget_scaling(self._current_width - (self._current_height / 2)),
self.apply_widget_scaling(self._current_height / 2),
self.apply_widget_scaling(self._current_height / 3))
2022-05-25 23:14:38 +03:00
if self.text_label is None:
self.text_label = tkinter.Label(master=self,
font=self.apply_font_scaling(self.text_font))
self.text_label.grid(row=0, column=0, rowspan=1, columnspan=1, sticky="w",
padx=(max(self.apply_widget_scaling(self.corner_radius), 3),
2022-05-31 23:32:21 +03:00
max(self._current_width - left_section_width + 3, 3)))
2022-05-25 23:14:38 +03:00
self.text_label.bind("<Enter>", self.on_enter)
self.text_label.bind("<Leave>", self.on_leave)
self.text_label.bind("<Button-1>", self.clicked)
self.text_label.bind("<Button-1>", self.clicked)
if self.current_value is not None:
self.text_label.configure(text=self.current_value)
2022-05-27 02:09:54 +03:00
if no_color_updates is False or requires_recoloring or requires_recoloring_2:
2022-05-25 23:14:38 +03:00
2022-05-31 23:32:21 +03:00
self.canvas.configure(bg=ThemeManager.single_color(self.bg_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
self.canvas.itemconfig("inner_parts_left",
2022-05-31 23:32:21 +03:00
outline=ThemeManager.single_color(self.fg_color, self._appearance_mode),
fill=ThemeManager.single_color(self.fg_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
self.canvas.itemconfig("inner_parts_right",
2022-05-31 23:32:21 +03:00
outline=ThemeManager.single_color(self.button_color, self._appearance_mode),
fill=ThemeManager.single_color(self.button_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
2022-05-31 23:32:21 +03:00
self.text_label.configure(fg=ThemeManager.single_color(self.text_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
if self.state == tkinter.DISABLED:
2022-05-31 23:32:21 +03:00
self.text_label.configure(fg=(ThemeManager.single_color(self.text_color_disabled, self._appearance_mode)))
2022-05-27 02:09:54 +03:00
self.canvas.itemconfig("dropdown_arrow",
2022-05-31 23:32:21 +03:00
fill=ThemeManager.single_color(self.text_color_disabled, self._appearance_mode))
2022-05-25 23:14:38 +03:00
else:
2022-05-31 23:32:21 +03:00
self.text_label.configure(fg=ThemeManager.single_color(self.text_color, self._appearance_mode))
2022-05-27 02:09:54 +03:00
self.canvas.itemconfig("dropdown_arrow",
2022-05-31 23:32:21 +03:00
fill=ThemeManager.single_color(self.text_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
2022-05-31 23:32:21 +03:00
self.text_label.configure(bg=ThemeManager.single_color(self.fg_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
def open_dropdown_menu(self):
2022-06-13 16:08:13 +03:00
if not Settings.use_dropdown_fallback:
self.dropdown_menu = DropdownMenu(x_position=self.winfo_rootx(),
y_position=self.winfo_rooty() + self.apply_widget_scaling(self._current_height + 4),
width=self._current_width,
values=self.values,
command=self.set,
fg_color=self.dropdown_color,
button_hover_color=self.dropdown_hover_color,
button_color=self.dropdown_color,
text_color=self.dropdown_text_color)
else:
self.dropdown_menu = DropdownMenuFallback(master=self,
values=self.values,
command=self.set)
self.dropdown_menu.open(x=self.winfo_rootx(),
y=self.winfo_rooty() + self.apply_widget_scaling(self._current_height + 0))
2022-05-25 23:14:38 +03:00
def configure(self, *args, **kwargs):
require_redraw = False # some attribute changes require a call of self.draw() at the end
if "state" in kwargs:
self.state = kwargs["state"]
require_redraw = True
del kwargs["state"]
if "fg_color" in kwargs:
self.fg_color = kwargs["fg_color"]
require_redraw = True
del kwargs["fg_color"]
if "bg_color" in kwargs:
if kwargs["bg_color"] is None:
self.bg_color = self.detect_color_of_master()
else:
self.bg_color = kwargs["bg_color"]
require_redraw = True
del kwargs["bg_color"]
if "button_color" in kwargs:
self.button_color = kwargs["button_color"]
require_redraw = True
del kwargs["button_color"]
if "button_hover_color" in kwargs:
self.button_hover_color = kwargs["button_hover_color"]
2022-05-25 23:14:38 +03:00
require_redraw = True
del kwargs["button_hover_color"]
2022-05-25 23:14:38 +03:00
if "text_color" in kwargs:
self.text_color = kwargs["text_color"]
require_redraw = True
del kwargs["text_color"]
if "command" in kwargs:
self.function = kwargs["command"]
del kwargs["command"]
if "variable" in kwargs:
2022-05-27 01:12:37 +03:00
if self.variable is not None: # remove old callback
self.variable.trace_remove("write", self.variable_callback_name)
2022-05-25 23:14:38 +03:00
self.variable = kwargs["variable"]
2022-05-27 01:12:37 +03:00
if self.variable is not None and self.variable != "":
self.variable_callback_name = self.variable.trace_add("write", self.variable_callback)
self.set(self.variable.get(), from_variable_callback=True)
else:
self.variable = None
2022-05-25 23:14:38 +03:00
del kwargs["variable"]
if "width" in kwargs:
self.set_dimensions(width=kwargs["width"])
del kwargs["width"]
if "height" in kwargs:
self.set_dimensions(height=kwargs["height"])
del kwargs["height"]
2022-05-31 23:32:21 +03:00
if "values" in kwargs:
self.values = kwargs["values"]
del kwargs["values"]
2022-05-25 23:14:38 +03:00
super().configure(*args, **kwargs)
if require_redraw:
self.draw()
def on_enter(self, event=0):
2022-06-02 00:50:50 +03:00
if self.hover is True and self.state == tkinter.NORMAL and len(self.values) > 0:
if sys.platform == "darwin" and len(self.values) > 0 and Settings.cursor_manipulation_enabled:
self.configure(cursor="pointinghand")
elif sys.platform.startswith("win") and len(self.values) > 0 and Settings.cursor_manipulation_enabled:
self.configure(cursor="hand2")
2022-05-25 23:14:38 +03:00
# set color of inner button parts to hover color
self.canvas.itemconfig("inner_parts_right",
2022-05-31 23:32:21 +03:00
outline=ThemeManager.single_color(self.button_hover_color, self._appearance_mode),
fill=ThemeManager.single_color(self.button_hover_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
def on_leave(self, event=0):
self.click_animation_running = False
if self.hover is True:
2022-06-02 00:50:50 +03:00
if sys.platform == "darwin" and len(self.values) > 0 and Settings.cursor_manipulation_enabled:
self.configure(cursor="arrow")
elif sys.platform.startswith("win") and len(self.values) > 0 and Settings.cursor_manipulation_enabled:
self.configure(cursor="arrow")
2022-05-25 23:14:38 +03:00
# set color of inner button parts
self.canvas.itemconfig("inner_parts_right",
2022-05-31 23:32:21 +03:00
outline=ThemeManager.single_color(self.button_color, self._appearance_mode),
fill=ThemeManager.single_color(self.button_color, self._appearance_mode))
2022-05-25 23:14:38 +03:00
def click_animation(self):
if self.click_animation_running:
self.on_enter()
2022-05-27 01:12:37 +03:00
def variable_callback(self, var_name, index, mode):
if not self.variable_callback_blocked:
self.set(self.variable.get(), from_variable_callback=True)
def set(self, value: str, from_variable_callback: bool = False):
self.current_value = value
if self.text_label is not None:
self.text_label.configure(text=self.current_value)
else:
self.draw()
if self.variable is not None and not from_variable_callback:
self.variable_callback_blocked = True
self.variable.set(self.current_value)
self.variable_callback_blocked = False
2022-05-30 17:46:36 +03:00
if not from_variable_callback:
if self.function is not None:
2022-05-31 23:32:21 +03:00
self.function(self.current_value)
2022-05-30 17:46:36 +03:00
2022-05-27 01:12:37 +03:00
def get(self) -> str:
return self.current_value
2022-05-25 23:14:38 +03:00
def clicked(self, event=0):
2022-06-02 00:50:50 +03:00
if self.state is not tkinter.DISABLED and len(self.values) > 0:
2022-05-25 23:14:38 +03:00
self.open_dropdown_menu()
# click animation: change color with .on_leave() and back to normal after 100ms with click_animation()
self.on_leave()
self.click_animation_running = True
self.after(100, self.click_animation)