2026-04-10 16:40:11 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
2026-04-15 22:47:42 +08:00
|
|
|
#include "Composition/EditorShellVariant.h"
|
|
|
|
|
|
2026-04-10 16:40:11 +08:00
|
|
|
#include <XCEditor/Shell/UIEditorShellAsset.h>
|
2026-04-15 08:24:06 +08:00
|
|
|
#include <XCEditor/Workspace/UIEditorWorkspaceController.h>
|
2026-04-10 16:40:11 +08:00
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
|
|
2026-04-19 00:03:25 +08:00
|
|
|
EditorShellAsset BuildEditorApplicationShellAsset(const std::filesystem::path& repoRoot);
|
2026-04-10 16:40:11 +08:00
|
|
|
|
2026-04-19 00:03:25 +08:00
|
|
|
UIEditorShellInteractionDefinition BuildEditorApplicationShellInteractionDefinition(
|
2026-04-10 16:40:11 +08:00
|
|
|
const EditorShellAsset& asset,
|
|
|
|
|
const UIEditorWorkspaceController& controller,
|
|
|
|
|
std::string_view statusText,
|
2026-04-14 16:19:23 +08:00
|
|
|
std::string_view captureText,
|
2026-04-15 08:24:06 +08:00
|
|
|
EditorShellVariant variant = EditorShellVariant::Primary);
|
2026-04-10 16:40:11 +08:00
|
|
|
|
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|
2026-04-15 08:24:06 +08:00
|
|
|
|