Full 'code' widget refactor to utilize controllers and cross controller event signaling

This commit is contained in:
2026-01-11 19:42:31 -06:00
parent 6c9136bdb2
commit 7196dc5ec8
84 changed files with 1326 additions and 593 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 = ""