llm selection, notes saving, cleanup

This commit is contained in:
Martin Jaros 2024-05-02 00:12:45 +02:00
commit 44a82f4af8
13 changed files with 910 additions and 130 deletions

View file

@ -6,6 +6,7 @@ class AppData:
def __init__(self):
self._lecture_filename = None
self._modified_keywords = None
highlights = None
@property
def lecture_filename(self):
@ -22,16 +23,12 @@ class AppData:
@modified_keywords.setter
def modified_keywords(self, value):
self._modified_keywords = value
heading_font = ("DejaVu Sans", 20, "bold")
paragraph_font = ("DejaVu Sans", 12)
serif_font = ("DejaVu Serif", 12)
mono_font = ("Courier", 11)
# class AppData:
# lecture_filename = None
# modified_keywords = None
class App(tk.Tk):
def __init__(self):