refactor(editor/windowing): promote core into XCUIEditorLib

This commit is contained in:
2026-04-26 12:23:16 +08:00
parent 57fe2cfd3b
commit b7bf11001f
29 changed files with 116 additions and 100 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include <XCEngine/UI/Types.h>
#include <string>
namespace XCEngine::UI::Editor {
struct EditorWorkspaceWindowProjection {
::XCEngine::UI::UISize minimumOuterSize = ::XCEngine::UI::UISize(640.0f, 360.0f);
bool useDetachedTitleBarTabStrip = false;
std::string tabStripTitleText = {};
std::string detachedWindowTitleText = {};
std::wstring windowTitle = {};
};
} // namespace XCEngine::UI::Editor