llm selection, notes saving, cleanup
This commit is contained in:
parent
ee19d52cb7
commit
44a82f4af8
13 changed files with 910 additions and 130 deletions
7
main.py
7
main.py
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue