关键节点
This commit is contained in:
29
editor/app/Platform/Win32/Runtime/EditorWindowFrameDriver.h
Normal file
29
editor/app/Platform/Win32/Runtime/EditorWindowFrameDriver.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#pragma once
|
||||
|
||||
#include "Platform/Win32/Windowing/EditorWindowTransferRequests.h"
|
||||
|
||||
namespace XCEngine::UI::Editor::App {
|
||||
|
||||
class EditorContext;
|
||||
class EditorWindow;
|
||||
|
||||
class EditorWindowFrameDriver final {
|
||||
public:
|
||||
static EditorWindowFrameTransferRequests DriveFrame(
|
||||
EditorWindow& window,
|
||||
EditorContext& editorContext,
|
||||
bool globalTabDragActive);
|
||||
static EditorWindowFrameTransferRequests DriveImmediateFrame(
|
||||
EditorWindow& window,
|
||||
EditorContext& editorContext,
|
||||
bool globalTabDragActive);
|
||||
|
||||
private:
|
||||
static EditorWindowFrameTransferRequests DriveFrameInternal(
|
||||
EditorWindow& window,
|
||||
EditorContext& editorContext,
|
||||
bool globalTabDragActive,
|
||||
bool requestSkipNextSteadyStateFrame);
|
||||
};
|
||||
|
||||
} // namespace XCEngine::UI::Editor::App
|
||||
Reference in New Issue
Block a user