Files
XCEngine/new_editor/app/Platform/Win32/EditorWindowInputInternal.h

17 lines
414 B
C++

#pragma once
#include <XCEngine/UI/Types.h>
#include <cstdint>
#include <string>
#include <windows.h>
namespace XCEngine::UI::Editor::App::EditorWindowInputInternal {
std::int32_t MapVirtualKeyToUIKeyCode(WPARAM wParam);
bool IsRepeatKeyMessage(LPARAM lParam);
std::string DescribeInputEventType(const ::XCEngine::UI::UIInputEvent& event);
} // namespace XCEngine::UI::Editor::App::EditorWindowInputInternal