checkpoint: commit current workspace state
This commit is contained in:
22
new_editor/include/XCEditor/Windowing/WindowContentOutput.h
Normal file
22
new_editor/include/XCEditor/Windowing/WindowContentOutput.h
Normal 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
|
||||
Reference in New Issue
Block a user