2018-09-13 16:44:08 +02:00
|
|
|
// dear imgui: Platform Binding for Windows (standard windows API for 32 and 64 bits applications)
|
2018-06-08 19:37:33 +02:00
|
|
|
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
|
|
|
|
|
2018-06-11 12:33:51 +02:00
|
|
|
// Implemented features:
|
2020-02-17 10:11:26 +01:00
|
|
|
// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui)
|
2018-06-11 12:33:51 +02:00
|
|
|
// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
|
2018-06-30 14:33:45 +02:00
|
|
|
// [X] Platform: Keyboard arrays indexed using VK_* Virtual Key Codes, e.g. ImGui::IsKeyPressed(VK_SPACE).
|
2019-01-15 21:17:48 +01:00
|
|
|
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
|
2018-06-11 12:33:51 +02:00
|
|
|
|
2018-11-01 20:56:36 +01:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-21 12:04:00 +02:00
|
|
|
IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd);
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_Shutdown();
|
|
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_NewFrame();
|
2018-06-08 19:37:33 +02:00
|
|
|
|
2020-01-14 14:58:32 +01:00
|
|
|
// Configuration: Disable gamepad support or linking with xinput.lib
|
|
|
|
//#define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
|
|
|
|
//#define IMGUI_IMPL_WIN32_DISABLE_LINKING_XINPUT
|
|
|
|
|
2020-02-17 10:11:26 +01:00
|
|
|
// Win32 message handler
|
|
|
|
// - Intentionally commented out in a '#if 0' block to avoid dragging dependencies on <windows.h>
|
|
|
|
// - You can COPY this line into your .cpp code to forward declare the function.
|
2020-01-14 14:58:32 +01:00
|
|
|
#if 0
|
2020-02-17 10:11:26 +01:00
|
|
|
extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
2020-01-14 14:58:32 +01:00
|
|
|
#endif
|