23 lines
580 B
C++
23 lines
580 B
C++
#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
|