2018-09-13 16:44:08 +02:00
|
|
|
// dear imgui: Platform Binding for Windows (standard windows API for 32 and 64 bits applications)
|
2018-02-21 23:05:17 +01:00
|
|
|
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
|
2018-02-16 23:04:17 +01:00
|
|
|
|
2018-06-11 12:33:51 +02:00
|
|
|
// Implemented features:
|
|
|
|
// [X] Platform: Clipboard support (for Win32 this is actually part of core imgui)
|
|
|
|
// [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-12 16:24:24 +02:00
|
|
|
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
|
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-02-16 23:04:17 +01:00
|
|
|
|
2018-03-09 19:02:52 +01:00
|
|
|
// DPI-related helpers (which run and compile without requiring 8.1 or 10, neither Windows version, neither associated SDK)
|
2018-12-14 11:59:44 +01:00
|
|
|
IMGUI_IMPL_API void ImGui_ImplWin32_EnableDpiAwareness();
|
|
|
|
IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd); // HWND hwnd
|
|
|
|
IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor); // HMONITOR monitor
|
2018-03-09 19:02:52 +01:00
|
|
|
|
2018-02-16 23:04:17 +01:00
|
|
|
// Handler for Win32 messages, update mouse/keyboard data.
|
|
|
|
// You may or not need this for your implementation, but it can serve as reference for handling inputs.
|
2018-11-30 23:55:33 +01:00
|
|
|
// Intentionally commented out to avoid dragging dependencies on <windows.h> types. You can COPY this line into your .cpp code instead.
|
2018-02-16 23:04:17 +01:00
|
|
|
/*
|
2018-06-21 12:04:00 +02:00
|
|
|
IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
2018-02-16 23:04:17 +01:00
|
|
|
*/
|