refactor(new_editor): split shell runtime update stages

This commit is contained in:
2026-04-22 15:01:03 +08:00
parent 2a8448cfbc
commit 77fe0a97a4
7 changed files with 328 additions and 134 deletions

View File

@@ -1,7 +1,9 @@
#pragma once
#include "Composition/EditorShellDrawComposer.h"
#include "Composition/EditorShellHostedPanelCoordinator.h"
#include "Composition/EditorShellPointerInteraction.h"
#include "Composition/EditorShellSessionCoordinator.h"
#include "Composition/EditorShellVariant.h"
#include "Features/Console/ConsolePanel.h"
#include "Features/ColorPicker/ColorPickerPanel.h"
@@ -115,6 +117,8 @@ private:
std::vector<WorkspaceTraceEntry> m_traceEntries = {};
UIEditorWorkspaceSplitterDragCorrectionState m_splitterDragCorrectionState = {};
EditorShellDrawComposer m_drawComposer = {};
EditorShellHostedPanelCoordinator m_hostedPanelCoordinator = {};
EditorShellSessionCoordinator m_sessionCoordinator = {};
};
} // namespace XCEngine::UI::Editor::App