2018-09-13 14:44:08 +00:00
|
|
|
// dear imgui: Platform Binding for Windows (standard windows API for 32 and 64 bits applications)
|
2018-02-21 22:05:17 +00:00
|
|
|
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
|
2018-02-16 22:04:17 +00:00
|
|
|
|
2018-06-11 10:33:51 +00: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 12:33:45 +00:00
|
|
|
// [X] Platform: Keyboard arrays indexed using VK_* Virtual Key Codes, e.g. ImGui::IsKeyPressed(VK_SPACE).
|
2019-01-15 20:17:48 +00:00
|
|
|
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
|
2018-06-12 14:24:24 +00:00
|
|
|
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
|
2018-06-11 10:33:51 +00:00
|
|
|
|
2018-11-01 19:56:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-21 10:04:00 +00: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 22:04:17 +00:00
|
|
|
|
2018-03-09 18:02:52 +00:00
|
|
|
// DPI-related helpers (which run and compile without requiring 8.1 or 10, neither Windows version, neither associated SDK)
|
2018-12-14 10:59:44 +00: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 18:02:52 +00:00
|
|
|
|
2018-02-16 22:04:17 +00: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 22:55:33 +00: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 22:04:17 +00:00
|
|
|
/*
|
2018-06-21 10:04:00 +00:00
|
|
|
IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
2018-02-16 22:04:17 +00:00
|
|
|
*/
|