2026-04-19 15:52:28 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
2026-04-23 14:11:33 +08:00
|
|
|
#include "System/SystemInteractionService.h"
|
2026-04-19 15:52:28 +08:00
|
|
|
|
|
|
|
|
namespace XCEngine::UI::Editor::Host {
|
|
|
|
|
|
2026-04-23 14:11:33 +08:00
|
|
|
class Win32SystemInteractionHost final : public System::SystemInteractionService {
|
2026-04-19 15:52:28 +08:00
|
|
|
public:
|
|
|
|
|
bool CopyTextToClipboard(std::string_view text) override;
|
|
|
|
|
bool RevealPathInFileBrowser(
|
|
|
|
|
const std::filesystem::path& path,
|
|
|
|
|
bool selectTarget) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace XCEngine::UI::Editor::Host
|