mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
72157e8d26 | |||
ccf9fdfc9a | |||
d3883012b7 | |||
86ba99c2ab | |||
b60859dfd6 | |||
121f5713a8 | |||
2ee496ed28 | |||
838bc7885b | |||
d23d99deb0 | |||
fe5ace8ab7 | |||
ffbf851a92 | |||
220bfea1a6 |
10
Readme.md
10
Readme.md
@ -17,6 +17,12 @@
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<h3>
|
||||||
|
Official website: https://customtkinter.tomschimansky.com
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
CustomTkinter is a python UI-library based on Tkinter, which provides new, modern and
|
CustomTkinter is a python UI-library based on Tkinter, which provides new, modern and
|
||||||
fully customizable widgets. They are created and used like normal Tkinter widgets and
|
fully customizable widgets. They are created and used like normal Tkinter widgets and
|
||||||
can also be used in combination with normal Tkinter elements. The widgets
|
can also be used in combination with normal Tkinter elements. The widgets
|
||||||
@ -43,9 +49,9 @@ pip3 install customtkinter
|
|||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
The **official** documentation can be found in the Wiki Tab here:
|
The **official** documentation can be found here:
|
||||||
|
|
||||||
**--> [Documentation](https://github.com/TomSchimansky/CustomTkinter/wiki)**.
|
**➡️ https://customtkinter.tomschimansky.com/documentation**.
|
||||||
|
|
||||||
## Example Program
|
## Example Program
|
||||||
To test customtkinter you can try this simple example with only a single button:
|
To test customtkinter you can try this simple example with only a single button:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
__version__ = "5.1.2"
|
__version__ = "5.1.3"
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
"corner_radius": 1000,
|
"corner_radius": 1000,
|
||||||
"border_width": 3,
|
"border_width": 3,
|
||||||
"button_length": 0,
|
"button_length": 0,
|
||||||
"fg_Color": ["#939BA2", "#4A4D50"],
|
"fg_color": ["#939BA2", "#4A4D50"],
|
||||||
"progress_color": ["#3B8ED0", "#1F6AA5"],
|
"progress_color": ["#3B8ED0", "#1F6AA5"],
|
||||||
"button_color": ["gray36", "#D5D9DE"],
|
"button_color": ["gray36", "#D5D9DE"],
|
||||||
"button_hover_color": ["gray20", "gray100"],
|
"button_hover_color": ["gray20", "gray100"],
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
"corner_radius": 1000,
|
"corner_radius": 1000,
|
||||||
"border_width": 3,
|
"border_width": 3,
|
||||||
"button_length": 0,
|
"button_length": 0,
|
||||||
"fg_Color": ["#939BA2", "#4A4D50"],
|
"fg_color": ["#939BA2", "#4A4D50"],
|
||||||
"progress_color": ["#3a7ebf", "#1f538d"],
|
"progress_color": ["#3a7ebf", "#1f538d"],
|
||||||
"button_color": ["gray36", "#D5D9DE"],
|
"button_color": ["gray36", "#D5D9DE"],
|
||||||
"button_hover_color": ["gray20", "gray100"],
|
"button_hover_color": ["gray20", "gray100"],
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
"corner_radius": 1000,
|
"corner_radius": 1000,
|
||||||
"border_width": 3,
|
"border_width": 3,
|
||||||
"button_length": 0,
|
"button_length": 0,
|
||||||
"fg_Color": ["#939BA2", "#4A4D50"],
|
"fg_color": ["#939BA2", "#4A4D50"],
|
||||||
"progress_color": ["#2CC985", "#2FA572"],
|
"progress_color": ["#2CC985", "#2FA572"],
|
||||||
"button_color": ["gray36", "#D5D9DE"],
|
"button_color": ["gray36", "#D5D9DE"],
|
||||||
"button_hover_color": ["gray20", "gray100"],
|
"button_hover_color": ["gray20", "gray100"],
|
||||||
|
@ -19,7 +19,7 @@ class CTkToplevel(tkinter.Toplevel, CTkAppearanceModeBaseClass, CTkScalingBaseCl
|
|||||||
For detailed information check out the documentation.
|
For detailed information check out the documentation.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_valid_tk_toplevel_arguments: set = {"bd", "borderwidth", "class", "container", "cursor", "height",
|
_valid_tk_toplevel_arguments: set = {"master", "bd", "borderwidth", "class", "container", "cursor", "height",
|
||||||
"highlightbackground", "highlightthickness", "menu", "relief",
|
"highlightbackground", "highlightthickness", "menu", "relief",
|
||||||
"screen", "takefocus", "use", "visual", "width"}
|
"screen", "takefocus", "use", "visual", "width"}
|
||||||
|
|
||||||
|
@ -14,6 +14,8 @@ class CTkLabel(CTkBaseClass):
|
|||||||
"""
|
"""
|
||||||
Label with rounded corners. Default is fg_color=None (transparent fg_color).
|
Label with rounded corners. Default is fg_color=None (transparent fg_color).
|
||||||
For detailed information check out the documentation.
|
For detailed information check out the documentation.
|
||||||
|
|
||||||
|
state argument will probably be removed because it has no effect
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# attributes that are passed to and managed by the tkinter entry only:
|
# attributes that are passed to and managed by the tkinter entry only:
|
||||||
|
@ -181,10 +181,10 @@ class CTkScrollableFrame(tkinter.Frame, CTkAppearanceModeBaseClass, CTkScalingBa
|
|||||||
self._scrollbar.configure(fg_color=kwargs.pop("scrollbar_fg_color"))
|
self._scrollbar.configure(fg_color=kwargs.pop("scrollbar_fg_color"))
|
||||||
|
|
||||||
if "scrollbar_button_color" in kwargs:
|
if "scrollbar_button_color" in kwargs:
|
||||||
self._scrollbar.configure(fg_color=kwargs.pop("scrollbar_button_color"))
|
self._scrollbar.configure(button_color=kwargs.pop("scrollbar_button_color"))
|
||||||
|
|
||||||
if "scrollbar_button_hover_color" in kwargs:
|
if "scrollbar_button_hover_color" in kwargs:
|
||||||
self._scrollbar.configure(fg_color=kwargs.pop("scrollbar_button_hover_color"))
|
self._scrollbar.configure(button_hover_color=kwargs.pop("scrollbar_button_hover_color"))
|
||||||
|
|
||||||
if "label_text" in kwargs:
|
if "label_text" in kwargs:
|
||||||
self._label_text = kwargs.pop("label_text")
|
self._label_text = kwargs.pop("label_text")
|
||||||
|
@ -54,7 +54,7 @@ class CTkSwitch(CTkBaseClass):
|
|||||||
|
|
||||||
# color
|
# color
|
||||||
self._border_color = self._check_color_type(border_color, transparency=True)
|
self._border_color = self._check_color_type(border_color, transparency=True)
|
||||||
self._fg_color = ThemeManager.theme["CTkSwitch"]["fg_Color"] if fg_color is None else self._check_color_type(fg_color)
|
self._fg_color = ThemeManager.theme["CTkSwitch"]["fg_color"] if fg_color is None else self._check_color_type(fg_color)
|
||||||
self._progress_color = ThemeManager.theme["CTkSwitch"]["progress_color"] if progress_color is None else self._check_color_type(progress_color, transparency=True)
|
self._progress_color = ThemeManager.theme["CTkSwitch"]["progress_color"] if progress_color is None else self._check_color_type(progress_color, transparency=True)
|
||||||
self._button_color = ThemeManager.theme["CTkSwitch"]["button_color"] if button_color is None else self._check_color_type(button_color)
|
self._button_color = ThemeManager.theme["CTkSwitch"]["button_color"] if button_color is None else self._check_color_type(button_color)
|
||||||
self._button_hover_color = ThemeManager.theme["CTkSwitch"]["button_hover_color"] if button_hover_color is None else self._check_color_type(button_hover_color)
|
self._button_hover_color = ThemeManager.theme["CTkSwitch"]["button_hover_color"] if button_hover_color is None else self._check_color_type(button_hover_color)
|
||||||
@ -299,6 +299,10 @@ class CTkSwitch(CTkBaseClass):
|
|||||||
self._fg_color = self._check_color_type(kwargs.pop("fg_color"))
|
self._fg_color = self._check_color_type(kwargs.pop("fg_color"))
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
|
if "border_color" in kwargs:
|
||||||
|
self._border_color = self._check_color_type(kwargs.pop("border_color"), transparency=True)
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
if "progress_color" in kwargs:
|
if "progress_color" in kwargs:
|
||||||
self._progress_color = self._check_color_type(kwargs.pop("progress_color"), transparency=True)
|
self._progress_color = self._check_color_type(kwargs.pop("progress_color"), transparency=True)
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
@ -311,8 +315,12 @@ class CTkSwitch(CTkBaseClass):
|
|||||||
self._button_hover_color = self._check_color_type(kwargs.pop("button_hover_color"))
|
self._button_hover_color = self._check_color_type(kwargs.pop("button_hover_color"))
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
if "border_color" in kwargs:
|
if "text_color" in kwargs:
|
||||||
self._border_color = self._check_color_type(kwargs.pop("border_color"), transparency=True)
|
self._text_color = self._check_color_type(kwargs.pop("text_color"))
|
||||||
|
require_redraw = True
|
||||||
|
|
||||||
|
if "text_color_disabled" in kwargs:
|
||||||
|
self._text_color_disabled = self._check_color_type(kwargs.pop("text_color_disabled"))
|
||||||
require_redraw = True
|
require_redraw = True
|
||||||
|
|
||||||
if "hover" in kwargs:
|
if "hover" in kwargs:
|
||||||
|
@ -99,9 +99,9 @@ class CTkTabview(CTkBaseClass):
|
|||||||
self._draw()
|
self._draw()
|
||||||
|
|
||||||
def _segmented_button_callback(self, selected_name):
|
def _segmented_button_callback(self, selected_name):
|
||||||
|
self._set_grid_tab_by_name(selected_name)
|
||||||
|
self._tab_dict[self._current_name].grid_forget()
|
||||||
self._current_name = selected_name
|
self._current_name = selected_name
|
||||||
self._grid_forget_all_tabs()
|
|
||||||
self._set_grid_tab_by_name(self._current_name)
|
|
||||||
|
|
||||||
if self._command is not None:
|
if self._command is not None:
|
||||||
self._command()
|
self._command()
|
||||||
|
@ -4,6 +4,6 @@ from .theme_manager import ThemeManager
|
|||||||
try:
|
try:
|
||||||
ThemeManager.load_theme("blue")
|
ThemeManager.load_theme("blue")
|
||||||
except FileNotFoundError as err:
|
except FileNotFoundError as err:
|
||||||
raise FileNotFoundError(f"{err}\n\nThe .json theme file for CustomTkinter could not be found.\n" +
|
raise FileNotFoundError(f"{err}\nThe .json theme file for CustomTkinter could not be found.\n" +
|
||||||
f"If packaging with pyinstaller was used, have a look at the wiki:\n" +
|
f"If packaging with pyinstaller was used, have a look at the wiki:\n" +
|
||||||
f"https://github.com/TomSchimansky/CustomTkinter/wiki/Packaging#windows-pyinstaller-auto-py-to-exe")
|
f"https://github.com/TomSchimansky/CustomTkinter/wiki/Packaging#windows-pyinstaller-auto-py-to-exe")
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
import pathlib
|
||||||
import json
|
import json
|
||||||
from typing import List, Union
|
from typing import List, Union
|
||||||
|
|
||||||
@ -15,7 +16,8 @@ class ThemeManager:
|
|||||||
script_directory = os.path.dirname(os.path.abspath(__file__))
|
script_directory = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
if theme_name_or_path in cls._built_in_themes:
|
if theme_name_or_path in cls._built_in_themes:
|
||||||
with open(os.path.join(script_directory, "../../../assets", "themes", f"{theme_name_or_path}.json"), "r") as f:
|
customtkinter_path = pathlib.Path(script_directory).parent.parent.parent
|
||||||
|
with open(os.path.join(customtkinter_path, "assets", "themes", f"{theme_name_or_path}.json"), "r") as f:
|
||||||
cls.theme = json.load(f)
|
cls.theme = json.load(f)
|
||||||
else:
|
else:
|
||||||
with open(theme_name_or_path, "r") as f:
|
with open(theme_name_or_path, "r") as f:
|
||||||
|
@ -3,11 +3,10 @@ requires = ["setuptools>=42", "wheel"]
|
|||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[tool.tbump]
|
[tool.tbump]
|
||||||
# Uncomment this if your project is hosted on GitHub:
|
|
||||||
github_url = "https://github.com/TomSchimansky/CustomTkinter"
|
github_url = "https://github.com/TomSchimansky/CustomTkinter"
|
||||||
|
|
||||||
[tool.tbump.version]
|
[tool.tbump.version]
|
||||||
current = "5.1.2"
|
current = "5.1.3"
|
||||||
|
|
||||||
# Example of a semver regexp.
|
# Example of a semver regexp.
|
||||||
# Make sure this matches current_version before
|
# Make sure this matches current_version before
|
||||||
@ -33,17 +32,3 @@ src = "setup.cfg"
|
|||||||
[[tool.tbump.file]]
|
[[tool.tbump.file]]
|
||||||
src = "customtkinter/__init__.py"
|
src = "customtkinter/__init__.py"
|
||||||
search = "__version__ = \"{current_version}\""
|
search = "__version__ = \"{current_version}\""
|
||||||
|
|
||||||
# You can specify a list of commands to
|
|
||||||
# run after the files have been patched
|
|
||||||
# and before the git commit is made
|
|
||||||
|
|
||||||
# [[tool.tbump.before_commit]]
|
|
||||||
# name = "check changelog"
|
|
||||||
# cmd = "grep -q {new_version} Changelog.rst"
|
|
||||||
|
|
||||||
# Or run some commands after the git tag and the branch
|
|
||||||
# have been pushed:
|
|
||||||
# [[tool.tbump.after_push]]
|
|
||||||
# name = "publish"
|
|
||||||
# cmd = "./publish.sh"
|
|
||||||
|
13
setup.cfg
13
setup.cfg
@ -1,10 +1,10 @@
|
|||||||
[metadata]
|
[project]
|
||||||
name = customtkinter
|
name = customtkinter
|
||||||
version = 5.1.2
|
version = 5.1.3
|
||||||
description = Create modern looking GUIs with Python
|
description = Create modern looking GUIs with Python
|
||||||
long_description = A modern and customizable python UI-library based on Tkinter: https://github.com/TomSchimansky/CustomTkinter
|
long_description = A modern and customizable python UI-library based on Tkinter: https://customtkinter.tomschimansky.com
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
url = https://github.com/TomSchimansky/CustomTkinter
|
url = https://customtkinter.tomschimansky.com
|
||||||
author = Tom Schimansky
|
author = Tom Schimansky
|
||||||
license = Creative Commons Zero v1.0 Universal
|
license = Creative Commons Zero v1.0 Universal
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
@ -13,6 +13,11 @@ classifiers =
|
|||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
Programming Language :: Python :: 3 :: Only
|
Programming Language :: Python :: 3 :: Only
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
homepage = https://customtkinter.tomschimansky.com
|
||||||
|
documentation = https://customtkinter.tomschimansky.com/documentation
|
||||||
|
repository = https://github.com/tomschimansky/customtkinter
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.7
|
python_requires = >=3.7
|
||||||
packages =
|
packages =
|
||||||
|
Reference in New Issue
Block a user