Restructuring controller to broaden usability; changed events logic to support that

This commit is contained in:
2026-01-18 00:52:54 -06:00
parent f7d944f7a9
commit 99f1bffefb
46 changed files with 169 additions and 221 deletions

View File

@@ -0,0 +1,15 @@
# Python imports
from dataclasses import dataclass, field
# Lib imports
# Application imports
from .code_event import CodeEvent
@dataclass
class TextInsertedEvent(CodeEvent):
line: int = 0
char: int = 0
value: str = ""