Umstellung auf Customtkinter.

This commit is contained in:
2024-07-15 09:40:40 +02:00
parent e0d1fc976a
commit 0c4926f0d5
123 changed files with 11824 additions and 46 deletions

View File

@@ -0,0 +1,19 @@
#-----------------------------------------------------------------------------
# Copyright (C) 2019 Alberto Sottile
#
# Distributed under the terms of the 3-clause BSD License.
#-----------------------------------------------------------------------------
import typing
def theme():
return None
def isDark():
return None
def isLight():
return None
def listener(callback: typing.Callable[[str], None]) -> None:
raise NotImplementedError()