Refactor new_editor window architecture and routing

This commit is contained in:
2026-04-23 14:11:33 +08:00
parent 5c0a878aa0
commit af5690395d
121 changed files with 1647 additions and 1592 deletions

View File

@@ -93,7 +93,7 @@ void EditorContext::AttachTextMeasurer(
m_shellServices.textMeasurer = &textMeasurer;
}
void EditorContext::SetSystemInteractionHost(Ports::SystemInteractionPort* systemInteractionHost) {
void EditorContext::SetSystemInteractionHost(System::SystemInteractionService* systemInteractionHost) {
m_systemInteractionHost = systemInteractionHost;
}
@@ -194,11 +194,11 @@ void EditorContext::SyncSessionFromCommandFocusService() {
ResolveEditorActionRoute(m_session.activePanelId));
}
Ports::SystemInteractionPort* EditorContext::GetSystemInteractionHost() {
System::SystemInteractionService* EditorContext::GetSystemInteractionHost() {
return m_systemInteractionHost;
}
const Ports::SystemInteractionPort* EditorContext::GetSystemInteractionHost() const {
const System::SystemInteractionService* EditorContext::GetSystemInteractionHost() const {
return m_systemInteractionHost;
}