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

@@ -0,0 +1,18 @@
#pragma once
#include <filesystem>
#include <string_view>
namespace XCEngine::UI::Editor::System {
class SystemInteractionService {
public:
virtual ~SystemInteractionService() = default;
virtual bool CopyTextToClipboard(std::string_view text) = 0;
virtual bool RevealPathInFileBrowser(
const std::filesystem::path& path,
bool selectTarget) = 0;
};
} // namespace XCEngine::UI::Editor::System