CustomTkinter/customtkinter/__init__.py

115 lines
5.0 KiB
Python
Raw Normal View History

2022-04-05 23:55:22 +03:00
__version__ = "3.8"
2022-03-08 01:00:50 +03:00
from .customtkinter_input_dialog import CTkInputDialog
2021-03-04 20:27:46 +03:00
from .customtkinter_button import CTkButton
from .customtkinter_slider import CTkSlider
from .customtkinter_frame import CTkFrame
from .customtkinter_progressbar import CTkProgressBar
from .customtkinter_label import CTkLabel
from .customtkinter_entry import CTkEntry
2021-08-25 18:02:16 +03:00
from .customtkinter_checkbox import CTkCheckBox
from .customtkinter_radiobutton import CTkRadioButton
from .customtkinter_tk import CTk
from .customtkinter_canvas import CTkCanvas
2022-03-08 17:03:47 +03:00
from .customtkinter_switch import CTkSwitch
from .customtkinter_toplevel import CTkToplevel
2022-02-23 01:50:03 +03:00
from .customtkinter_settings import CTkSettings
2021-03-04 20:27:46 +03:00
from .appearance_mode_tracker import AppearanceModeTracker
2022-02-23 00:38:40 +03:00
from .customtkinter_theme_manager import CTkThemeManager
2021-03-04 20:27:46 +03:00
from distutils.version import StrictVersion as Version
import tkinter
import os
import sys
2022-03-11 15:15:47 +03:00
import shutil
2021-03-04 20:27:46 +03:00
def enable_macos_darkmode():
if sys.platform == "darwin": # macOS
if Version(tkinter.Tcl().call("info", "patchlevel")) >= Version("8.6.9"): # Tcl/Tk >= 8.6.9
os.system("defaults write -g NSRequiresAquaSystemAppearance -bool No")
sys.stderr.write("WARNING (customtkinter.enable_macos_darkmode): " +
2021-10-11 14:28:21 +03:00
"This command forces macOS dark-mode on all programs. " +
2021-03-04 20:27:46 +03:00
"This can cause bugs on some other programs.\n" +
2021-03-06 15:47:49 +03:00
"Disable it by calling customtkinter.disable_macos_darkmode() at the end of the program.\n")
2021-03-04 20:27:46 +03:00
else:
sys.stderr.write("WARNING (customtkinter.enable_macos_darkmode): " +
"Currently this works only with anaconda python version (Tcl/Tk >= 8.6.9).\n" +
"(python.org Tcl/Tk version is only 8.6.8)\n")
else:
sys.stderr.write("WARNING (customtkinter.enable_macos_darkmode): " +
"System is not macOS, but the following: {}\n".format(sys.platform))
def disable_macos_darkmode():
if sys.platform == "darwin": # macOS
if Version(tkinter.Tcl().call("info", "patchlevel")) >= Version("8.6.9"): # Tcl/Tk >= 8.6.9
os.system("defaults delete -g NSRequiresAquaSystemAppearance")
# This command reverts the dark-mode setting for all programs.
def set_appearance_mode(mode_string):
AppearanceModeTracker.set_appearance_mode(mode_string)
def get_appearance_mode():
if AppearanceModeTracker.appearance_mode == 0:
return "Light"
elif AppearanceModeTracker.appearance_mode == 1:
return "Dark"
2022-01-08 02:29:53 +03:00
def set_default_color_theme(color_string):
CTkThemeManager.load_theme(color_string)
2022-03-11 15:15:47 +03:00
if sys.platform.startswith("win"):
import warnings
2022-03-11 15:15:47 +03:00
warnings.simplefilter("ignore", category=UserWarning)
import pyglet.font
# load text fonts and custom font with circle shapes for round corner rendering
script_directory = os.path.dirname(os.path.abspath(__file__))
pyglet.font.add_file(os.path.join(script_directory, "assets", "fonts", "CustomTkinter_shapes_font-fine.otf"))
pyglet.font.add_file(os.path.join(script_directory, "assets", "fonts", "Roboto", "Roboto-Regular.ttf"))
pyglet.font.add_file(os.path.join(script_directory, "assets", "fonts", "Roboto", "Roboto-Medium.ttf"))
CTkSettings.circle_font_is_ready = pyglet.font.have_font("CustomTkinter_shapes_font")
2022-02-21 17:48:59 +03:00
warnings.simplefilter("default")
# correct drawing method if font could not be loaded
if not CTkSettings.circle_font_is_ready:
if CTkSettings.preferred_drawing_method == "font_shapes":
sys.stderr.write("WARNING (customtkinter.CTkSettings): " +
"Preferred drawing method 'font_shapes' can not be used because the font file could not be loaded.\n" +
"Using 'circle_shapes' instead. The rendering quality will be very bad!")
CTkSettings.preferred_drawing_method = "circle_shapes"
2022-03-11 15:15:47 +03:00
elif sys.platform == "linux":
try:
if not os.path.isdir(os.path.expanduser('~/.fonts/')):
os.mkdir(os.path.expanduser('~/.fonts/'))
script_directory = os.path.dirname(os.path.abspath(__file__))
# copy fonts in user font folder
shutil.copy(os.path.join(script_directory, "assets", "fonts", "Roboto", "Roboto-Regular.ttf"),
os.path.expanduser("~/.fonts/"))
shutil.copy(os.path.join(script_directory, "assets", "fonts", "Roboto", "Roboto-Medium.ttf"),
os.path.expanduser("~/.fonts/"))
shutil.copy(os.path.join(script_directory, "assets", "fonts", "CustomTkinter_shapes_font-fine.otf"),
os.path.expanduser("~/.fonts/"))
except Exception as err:
sys.stderr.write(str(err) + "\n")
sys.stderr.write("WARNING (customtkinter.CTkSettings): " +
"Preferred drawing method 'font_shapes' can not be used because the font file could not be copied to ~/.fonts/.\n" +
"Using 'circle_shapes' instead. The rendering quality will be very bad!\n")
CTkSettings.preferred_drawing_method = "circle_shapes"