You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.3 KiB
25 lines
1.3 KiB
2 years ago
|
import os
|
||
|
import sys
|
||
|
|
||
|
from .ctk_font import CTkFont
|
||
|
from .font_manager import FontManager
|
||
|
|
||
|
# import DrawEngine to set preferred_drawing_method if loading shapes font fails
|
||
|
from ..core_rendering import DrawEngine
|
||
|
|
||
|
FontManager.init_font_manager()
|
||
|
|
||
|
# load Roboto fonts (used on Windows/Linux)
|
||
|
customtkinter_directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
||
|
FontManager.load_font(os.path.join(customtkinter_directory, "assets", "fonts", "Roboto", "Roboto-Regular.ttf"))
|
||
|
FontManager.load_font(os.path.join(customtkinter_directory, "assets", "fonts", "Roboto", "Roboto-Medium.ttf"))
|
||
|
|
||
|
# load font necessary for rendering the widgets (used on Windows/Linux)
|
||
|
if FontManager.load_font(os.path.join(customtkinter_directory, "assets", "fonts", "CustomTkinter_shapes_font.otf")) is False:
|
||
|
# change draw method if font loading failed
|
||
|
if DrawEngine.preferred_drawing_method == "font_shapes":
|
||
|
sys.stderr.write("customtkinter.windows.widgets.font warning: " +
|
||
|
"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 bad!\n")
|
||
|
DrawEngine.preferred_drawing_method = "circle_shapes"
|