checkpoint: commit current workspace state

This commit is contained in:
2026-04-25 16:11:01 +08:00
parent 6d43fe5a7d
commit 6002d86a7e
449 changed files with 11303 additions and 100602 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include "WindowCaptureDemand.h"
#include "WindowCursorType.h"
#include "WindowTitleBarMode.h"
#include "WindowIntent.h"
#include <optional>
#include <string>
#include <vector>
namespace XCEngine::UI::Editor::Windowing::Domain {
struct WindowContentOutput {
std::optional<WindowCursorType> cursorType = {};
std::optional<WindowCaptureDemand> captureDemand = {};
std::optional<WindowTitleBarMode> titleBarMode = {};
std::string statusText = {};
std::vector<WindowIntent> intents = {};
};
} // namespace XCEngine::UI::Editor::Windowing::Domain