mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
added mising configure argument for CTkButton #544
This commit is contained in:
parent
fc3a41d074
commit
6bf877eebc
@ -279,6 +279,38 @@ class CTkButton(CTkBaseClass):
|
|||||||
pady=(self._apply_widget_scaling(self._border_width), 2))
|
pady=(self._apply_widget_scaling(self._border_width), 2))
|
||||||
|
|
||||||
def configure(self, require_redraw=False, **kwargs):
|
def configure(self, require_redraw=False, **kwargs):
|
||||||
|
if "corner_radius" in kwargs:
|
||||||
|
self._corner_radius = kwargs.pop("corner_radius")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "border_width" in kwargs:
|
||||||
|
self._border_width = kwargs.pop("border_width")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "fg_color" in kwargs:
|
||||||
|
self._fg_color = kwargs.pop("fg_color")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "hover_color" in kwargs:
|
||||||
|
self._hover_color = kwargs.pop("hover_color")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "border_color" in kwargs:
|
||||||
|
self._border_color = kwargs.pop("border_color")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "text_color" in kwargs:
|
||||||
|
self._text_color = kwargs.pop("text_color")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "text_color_disabled" in kwargs:
|
||||||
|
self._text_color_disabled = kwargs.pop("text_color_disabled")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "background_corner_colors" in kwargs:
|
||||||
|
self._background_corner_colors = kwargs.pop("background_corner_colors")
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
if "text" in kwargs:
|
if "text" in kwargs:
|
||||||
self._text = kwargs.pop("text")
|
self._text = kwargs.pop("text")
|
||||||
if self._text_label is None:
|
if self._text_label is None:
|
||||||
@ -295,41 +327,18 @@ class CTkButton(CTkBaseClass):
|
|||||||
|
|
||||||
self._update_font()
|
self._update_font()
|
||||||
|
|
||||||
if "state" in kwargs:
|
if "textvariable" in kwargs:
|
||||||
self._state = kwargs.pop("state")
|
self._textvariable = kwargs.pop("textvariable")
|
||||||
self._set_cursor()
|
if self._text_label is not None:
|
||||||
require_redraw = True
|
self._text_label.configure(textvariable=self._textvariable)
|
||||||
|
|
||||||
if "image" in kwargs:
|
if "image" in kwargs:
|
||||||
self._image = kwargs.pop("image")
|
self._image = kwargs.pop("image")
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
if "corner_radius" in kwargs:
|
if "state" in kwargs:
|
||||||
self._corner_radius = kwargs.pop("corner_radius")
|
self._state = kwargs.pop("state")
|
||||||
require_redraw = True
|
self._set_cursor()
|
||||||
|
|
||||||
if "border_width" in kwargs:
|
|
||||||
self._border_width = kwargs.pop("border_width")
|
|
||||||
require_redraw = True
|
|
||||||
|
|
||||||
if "compound" in kwargs:
|
|
||||||
self._compound = kwargs.pop("compound")
|
|
||||||
require_redraw = True
|
|
||||||
|
|
||||||
if "fg_color" in kwargs:
|
|
||||||
self._fg_color = kwargs.pop("fg_color")
|
|
||||||
require_redraw = True
|
|
||||||
|
|
||||||
if "border_color" in kwargs:
|
|
||||||
self._border_color = kwargs.pop("border_color")
|
|
||||||
require_redraw = True
|
|
||||||
|
|
||||||
if "hover_color" in kwargs:
|
|
||||||
self._hover_color = kwargs.pop("hover_color")
|
|
||||||
require_redraw = True
|
|
||||||
|
|
||||||
if "text_color" in kwargs:
|
|
||||||
self._text_color = kwargs.pop("text_color")
|
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
if "hover" in kwargs:
|
if "hover" in kwargs:
|
||||||
@ -338,13 +347,8 @@ class CTkButton(CTkBaseClass):
|
|||||||
if "command" in kwargs:
|
if "command" in kwargs:
|
||||||
self._command = kwargs.pop("command")
|
self._command = kwargs.pop("command")
|
||||||
|
|
||||||
if "textvariable" in kwargs:
|
if "compound" in kwargs:
|
||||||
self._textvariable = kwargs.pop("textvariable")
|
self._compound = kwargs.pop("compound")
|
||||||
if self._text_label is not None:
|
|
||||||
self._text_label.configure(textvariable=self._textvariable)
|
|
||||||
|
|
||||||
if "background_corner_colors" in kwargs:
|
|
||||||
self._background_corner_colors = kwargs.pop("background_corner_colors")
|
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
super().configure(require_redraw=require_redraw, **kwargs)
|
super().configure(require_redraw=require_redraw, **kwargs)
|
||||||
|
@ -140,8 +140,6 @@ class App(customtkinter.CTk):
|
|||||||
self.seg_button_1.configure(values=["CTkSegmentedButton", "Value 2", "Value 3"])
|
self.seg_button_1.configure(values=["CTkSegmentedButton", "Value 2", "Value 3"])
|
||||||
self.seg_button_1.set("Value 2")
|
self.seg_button_1.set("Value 2")
|
||||||
|
|
||||||
# self.attributes("-fullscreen", True)
|
|
||||||
|
|
||||||
def open_input_dialog(self):
|
def open_input_dialog(self):
|
||||||
dialog = customtkinter.CTkInputDialog(master=self, text="Type in a number:", title="CTkInputDialog")
|
dialog = customtkinter.CTkInputDialog(master=self, text="Type in a number:", title="CTkInputDialog")
|
||||||
print("CTkInputDialog:", dialog.get_input())
|
print("CTkInputDialog:", dialog.get_input())
|
Loading…
Reference in New Issue
Block a user