2
0

imgui_impl_win32.cpp 49 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  1. // dear imgui: Platform Backend for Windows (standard windows API for 32 and 64 bits applications)
  2. // This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
  3. // Implemented features:
  4. // [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui)
  5. // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
  6. // [X] Platform: Keyboard arrays indexed using VK_* Virtual Key Codes, e.g. ImGui::IsKeyPressed(VK_SPACE).
  7. // [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
  8. // [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
  9. // You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
  10. // Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
  11. // If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp.
  12. // Read online: https://github.com/ocornut/imgui/tree/master/docs
  13. #include "imgui.h"
  14. #include "imgui_impl_win32.h"
  15. #ifndef WIN32_LEAN_AND_MEAN
  16. #define WIN32_LEAN_AND_MEAN
  17. #endif
  18. #include <windows.h>
  19. #include <tchar.h>
  20. #include <dwmapi.h>
  21. // Configuration flags to add in your imconfig.h file:
  22. //#define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD // Disable gamepad support. This was meaningful before <1.81 but we now load XInput dynamically so the option is now less relevant.
  23. // Using XInput for gamepad (will load DLL dynamically)
  24. #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  25. #include <xinput.h>
  26. typedef DWORD (WINAPI *PFN_XInputGetCapabilities)(DWORD, DWORD, XINPUT_CAPABILITIES*);
  27. typedef DWORD (WINAPI *PFN_XInputGetState)(DWORD, XINPUT_STATE*);
  28. #endif
  29. // CHANGELOG
  30. // (minor and older changes stripped away, please see git history for details)
  31. // 2021-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
  32. // 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX).
  33. // 2021-06-08: Fix ImGui_ImplWin32_EnableDpiAwareness() and ImGui_ImplWin32_GetDpiScaleForMonitor() to handle Windows 8.1/10 features without a manifest (per-monitor DPI, and properly calls SetProcessDpiAwareness() on 8.1).
  34. // 2021-03-23: Inputs: Clearing keyboard down array when losing focus (WM_KILLFOCUS).
  35. // 2021-02-18: Added ImGui_ImplWin32_EnableAlphaCompositing(). Non Visual Studio users will need to link with dwmapi.lib (MinGW/gcc: use -ldwmapi).
  36. // 2021-02-17: Fixed ImGui_ImplWin32_EnableDpiAwareness() attempting to get SetProcessDpiAwareness from shcore.dll on Windows 8 whereas it is only supported on Windows 8.1.
  37. // 2021-01-25: Inputs: Dynamically loading XInput DLL.
  38. // 2020-12-04: Misc: Fixed setting of io.DisplaySize to invalid/uninitialized data when after hwnd has been closed.
  39. // 2020-03-03: Inputs: Calling AddInputCharacterUTF16() to support surrogate pairs leading to codepoint >= 0x10000 (for more complete CJK inputs)
  40. // 2020-02-17: Added ImGui_ImplWin32_EnableDpiAwareness(), ImGui_ImplWin32_GetDpiScaleForHwnd(), ImGui_ImplWin32_GetDpiScaleForMonitor() helper functions.
  41. // 2020-01-14: Inputs: Added support for #define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD/IMGUI_IMPL_WIN32_DISABLE_LINKING_XINPUT.
  42. // 2019-12-05: Inputs: Added support for ImGuiMouseCursor_NotAllowed mouse cursor.
  43. // 2019-05-11: Inputs: Don't filter value from WM_CHAR before calling AddInputCharacter().
  44. // 2019-01-17: Misc: Using GetForegroundWindow()+IsChild() instead of GetActiveWindow() to be compatible with windows created in a different thread or parent.
  45. // 2019-01-17: Inputs: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages.
  46. // 2019-01-15: Inputs: Added support for XInput gamepads (if ImGuiConfigFlags_NavEnableGamepad is set by user application).
  47. // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
  48. // 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor.
  49. // 2018-06-10: Inputs: Fixed handling of mouse wheel messages to support fine position messages (typically sent by track-pads).
  50. // 2018-06-08: Misc: Extracted imgui_impl_win32.cpp/.h away from the old combined DX9/DX10/DX11/DX12 examples.
  51. // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors and ImGuiBackendFlags_HasSetMousePos flags + honor ImGuiConfigFlags_NoMouseCursorChange flag.
  52. // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value and WM_SETCURSOR message handling).
  53. // 2018-02-06: Inputs: Added mapping for ImGuiKey_Space.
  54. // 2018-02-06: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set).
  55. // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves.
  56. // 2018-01-20: Inputs: Added Horizontal Mouse Wheel support.
  57. // 2018-01-08: Inputs: Added mapping for ImGuiKey_Insert.
  58. // 2018-01-05: Inputs: Added WM_LBUTTONDBLCLK double-click handlers for window classes with the CS_DBLCLKS flag.
  59. // 2017-10-23: Inputs: Added WM_SYSKEYDOWN / WM_SYSKEYUP handlers so e.g. the VK_MENU key can be read.
  60. // 2017-10-23: Inputs: Using Win32 ::SetCapture/::GetCapture() to retrieve mouse positions outside the client area when dragging.
  61. // 2016-11-12: Inputs: Only call Win32 ::SetCursor(NULL) when io.MouseDrawCursor is set.
  62. // Forward Declarations
  63. static void ImGui_ImplWin32_InitPlatformInterface();
  64. static void ImGui_ImplWin32_ShutdownPlatformInterface();
  65. static void ImGui_ImplWin32_UpdateMonitors();
  66. // Win32
  67. struct ImGui_ImplWin32_Data
  68. {
  69. HWND hWnd;
  70. INT64 Time;
  71. INT64 TicksPerSecond;
  72. ImGuiMouseCursor LastMouseCursor;
  73. bool HasGamepad;
  74. bool WantUpdateHasGamepad;
  75. bool WantUpdateMonitors;
  76. #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  77. HMODULE XInputDLL;
  78. PFN_XInputGetCapabilities XInputGetCapabilities;
  79. PFN_XInputGetState XInputGetState;
  80. #endif
  81. ImGui_ImplWin32_Data() { memset(this, 0, sizeof(*this)); }
  82. };
  83. // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
  84. // It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
  85. // FIXME: multi-context support is not well tested and probably dysfunctional in this backend.
  86. // FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context.
  87. static ImGui_ImplWin32_Data* ImGui_ImplWin32_GetBackendData()
  88. {
  89. return ImGui::GetCurrentContext() ? (ImGui_ImplWin32_Data*)ImGui::GetIO().BackendPlatformUserData : NULL;
  90. }
  91. // Functions
  92. bool ImGui_ImplWin32_Init(void* hwnd)
  93. {
  94. ImGuiIO& io = ImGui::GetIO();
  95. IM_ASSERT(io.BackendPlatformUserData == NULL && "Already initialized a platform backend!");
  96. INT64 perf_frequency, perf_counter;
  97. if (!::QueryPerformanceFrequency((LARGE_INTEGER*)&perf_frequency))
  98. return false;
  99. if (!::QueryPerformanceCounter((LARGE_INTEGER*)&perf_counter))
  100. return false;
  101. // Setup backend capabilities flags
  102. ImGui_ImplWin32_Data* bd = IM_NEW(ImGui_ImplWin32_Data)();
  103. io.BackendPlatformUserData = (void*)bd;
  104. io.BackendPlatformName = "imgui_impl_win32";
  105. io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional)
  106. io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used)
  107. io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports; // We can create multi-viewports on the Platform side (optional)
  108. io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can set io.MouseHoveredViewport correctly (optional, not easy)
  109. bd->hWnd = (HWND)hwnd;
  110. bd->WantUpdateHasGamepad = true;
  111. bd->WantUpdateMonitors = true;
  112. bd->TicksPerSecond = perf_frequency;
  113. bd->Time = perf_counter;
  114. bd->LastMouseCursor = ImGuiMouseCursor_COUNT;
  115. // Our mouse update function expect PlatformHandle to be filled for the main viewport
  116. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  117. main_viewport->PlatformHandle = main_viewport->PlatformHandleRaw = (void*)bd->hWnd;
  118. if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
  119. ImGui_ImplWin32_InitPlatformInterface();
  120. // Keyboard mapping. Dear ImGui will use those indices to peek into the io.KeysDown[] array that we will update during the application lifetime.
  121. io.KeyMap[ImGuiKey_Tab] = VK_TAB;
  122. io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT;
  123. io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT;
  124. io.KeyMap[ImGuiKey_UpArrow] = VK_UP;
  125. io.KeyMap[ImGuiKey_DownArrow] = VK_DOWN;
  126. io.KeyMap[ImGuiKey_PageUp] = VK_PRIOR;
  127. io.KeyMap[ImGuiKey_PageDown] = VK_NEXT;
  128. io.KeyMap[ImGuiKey_Home] = VK_HOME;
  129. io.KeyMap[ImGuiKey_End] = VK_END;
  130. io.KeyMap[ImGuiKey_Insert] = VK_INSERT;
  131. io.KeyMap[ImGuiKey_Delete] = VK_DELETE;
  132. io.KeyMap[ImGuiKey_Backspace] = VK_BACK;
  133. io.KeyMap[ImGuiKey_Space] = VK_SPACE;
  134. io.KeyMap[ImGuiKey_Enter] = VK_RETURN;
  135. io.KeyMap[ImGuiKey_Escape] = VK_ESCAPE;
  136. io.KeyMap[ImGuiKey_KeyPadEnter] = VK_RETURN;
  137. io.KeyMap[ImGuiKey_A] = 'A';
  138. io.KeyMap[ImGuiKey_C] = 'C';
  139. io.KeyMap[ImGuiKey_V] = 'V';
  140. io.KeyMap[ImGuiKey_X] = 'X';
  141. io.KeyMap[ImGuiKey_Y] = 'Y';
  142. io.KeyMap[ImGuiKey_Z] = 'Z';
  143. // Dynamically load XInput library
  144. #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  145. const char* xinput_dll_names[] =
  146. {
  147. "xinput1_4.dll", // Windows 8+
  148. "xinput1_3.dll", // DirectX SDK
  149. "xinput9_1_0.dll", // Windows Vista, Windows 7
  150. "xinput1_2.dll", // DirectX SDK
  151. "xinput1_1.dll" // DirectX SDK
  152. };
  153. for (int n = 0; n < IM_ARRAYSIZE(xinput_dll_names); n++)
  154. if (HMODULE dll = ::LoadLibraryA(xinput_dll_names[n]))
  155. {
  156. bd->XInputDLL = dll;
  157. bd->XInputGetCapabilities = (PFN_XInputGetCapabilities)::GetProcAddress(dll, "XInputGetCapabilities");
  158. bd->XInputGetState = (PFN_XInputGetState)::GetProcAddress(dll, "XInputGetState");
  159. break;
  160. }
  161. #endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  162. return true;
  163. }
  164. void ImGui_ImplWin32_Shutdown()
  165. {
  166. ImGuiIO& io = ImGui::GetIO();
  167. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  168. ImGui_ImplWin32_ShutdownPlatformInterface();
  169. // Unload XInput library
  170. #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  171. if (bd->XInputDLL)
  172. ::FreeLibrary(bd->XInputDLL);
  173. #endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  174. io.BackendPlatformName = NULL;
  175. io.BackendPlatformUserData = NULL;
  176. IM_DELETE(bd);
  177. }
  178. static bool ImGui_ImplWin32_UpdateMouseCursor()
  179. {
  180. ImGuiIO& io = ImGui::GetIO();
  181. if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange)
  182. return false;
  183. ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor();
  184. if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor)
  185. {
  186. // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor
  187. ::SetCursor(NULL);
  188. }
  189. else
  190. {
  191. // Show OS mouse cursor
  192. LPTSTR win32_cursor = IDC_ARROW;
  193. switch (imgui_cursor)
  194. {
  195. case ImGuiMouseCursor_Arrow: win32_cursor = IDC_ARROW; break;
  196. case ImGuiMouseCursor_TextInput: win32_cursor = IDC_IBEAM; break;
  197. case ImGuiMouseCursor_ResizeAll: win32_cursor = IDC_SIZEALL; break;
  198. case ImGuiMouseCursor_ResizeEW: win32_cursor = IDC_SIZEWE; break;
  199. case ImGuiMouseCursor_ResizeNS: win32_cursor = IDC_SIZENS; break;
  200. case ImGuiMouseCursor_ResizeNESW: win32_cursor = IDC_SIZENESW; break;
  201. case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break;
  202. case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break;
  203. case ImGuiMouseCursor_NotAllowed: win32_cursor = IDC_NO; break;
  204. }
  205. ::SetCursor(::LoadCursor(NULL, win32_cursor));
  206. }
  207. return true;
  208. }
  209. // This code supports multi-viewports (multiple OS Windows mapped into different Dear ImGui viewports)
  210. // Because of that, it is a little more complicated than your typical single-viewport binding code!
  211. static void ImGui_ImplWin32_UpdateMousePos()
  212. {
  213. ImGuiIO& io = ImGui::GetIO();
  214. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  215. IM_ASSERT(bd->hWnd != 0);
  216. // Set OS mouse position if requested (rarely used, only when ImGuiConfigFlags_NavEnableSetMousePos is enabled by user)
  217. // (When multi-viewports are enabled, all imgui positions are same as OS positions)
  218. if (io.WantSetMousePos)
  219. {
  220. POINT pos = { (int)io.MousePos.x, (int)io.MousePos.y };
  221. if ((io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) == 0)
  222. ::ClientToScreen(bd->hWnd, &pos);
  223. ::SetCursorPos(pos.x, pos.y);
  224. }
  225. io.MousePos = ImVec2(-FLT_MAX, -FLT_MAX);
  226. io.MouseHoveredViewport = 0;
  227. // Set imgui mouse position
  228. POINT mouse_screen_pos;
  229. if (!::GetCursorPos(&mouse_screen_pos))
  230. return;
  231. if (HWND focused_hwnd = ::GetForegroundWindow())
  232. {
  233. if (::IsChild(focused_hwnd, bd->hWnd))
  234. focused_hwnd = bd->hWnd;
  235. if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
  236. {
  237. // Multi-viewport mode: mouse position in OS absolute coordinates (io.MousePos is (0,0) when the mouse is on the upper-left of the primary monitor)
  238. // This is the position you can get with GetCursorPos(). In theory adding viewport->Pos is also the reverse operation of doing ScreenToClient().
  239. if (ImGui::FindViewportByPlatformHandle((void*)focused_hwnd) != NULL)
  240. io.MousePos = ImVec2((float)mouse_screen_pos.x, (float)mouse_screen_pos.y);
  241. }
  242. else
  243. {
  244. // Single viewport mode: mouse position in client window coordinates (io.MousePos is (0,0) when the mouse is on the upper-left corner of the app window.)
  245. // This is the position you can get with GetCursorPos() + ScreenToClient() or from WM_MOUSEMOVE.
  246. if (focused_hwnd == bd->hWnd)
  247. {
  248. POINT mouse_client_pos = mouse_screen_pos;
  249. ::ScreenToClient(focused_hwnd, &mouse_client_pos);
  250. io.MousePos = ImVec2((float)mouse_client_pos.x, (float)mouse_client_pos.y);
  251. }
  252. }
  253. }
  254. // (Optional) When using multiple viewports: set io.MouseHoveredViewport to the viewport the OS mouse cursor is hovering.
  255. // Important: this information is not easy to provide and many high-level windowing library won't be able to provide it correctly, because
  256. // - This is _ignoring_ viewports with the ImGuiViewportFlags_NoInputs flag (pass-through windows).
  257. // - This is _regardless_ of whether another viewport is focused or being dragged from.
  258. // If ImGuiBackendFlags_HasMouseHoveredViewport is not set by the backend, imgui will ignore this field and infer the information by relying on the
  259. // rectangles and last focused time of every viewports it knows about. It will be unaware of foreign windows that may be sitting between or over your windows.
  260. if (HWND hovered_hwnd = ::WindowFromPoint(mouse_screen_pos))
  261. if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle((void*)hovered_hwnd))
  262. if ((viewport->Flags & ImGuiViewportFlags_NoInputs) == 0) // FIXME: We still get our NoInputs window with WM_NCHITTEST/HTTRANSPARENT code when decorated?
  263. io.MouseHoveredViewport = viewport->ID;
  264. }
  265. // Gamepad navigation mapping
  266. static void ImGui_ImplWin32_UpdateGamepads()
  267. {
  268. #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  269. ImGuiIO& io = ImGui::GetIO();
  270. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  271. memset(io.NavInputs, 0, sizeof(io.NavInputs));
  272. if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0)
  273. return;
  274. // Calling XInputGetState() every frame on disconnected gamepads is unfortunately too slow.
  275. // Instead we refresh gamepad availability by calling XInputGetCapabilities() _only_ after receiving WM_DEVICECHANGE.
  276. if (bd->WantUpdateHasGamepad)
  277. {
  278. XINPUT_CAPABILITIES caps;
  279. bd->HasGamepad = bd->XInputGetCapabilities ? (bd->XInputGetCapabilities(0, XINPUT_FLAG_GAMEPAD, &caps) == ERROR_SUCCESS) : false;
  280. bd->WantUpdateHasGamepad = false;
  281. }
  282. io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
  283. XINPUT_STATE xinput_state;
  284. if (bd->HasGamepad && bd->XInputGetState && bd->XInputGetState(0, &xinput_state) == ERROR_SUCCESS)
  285. {
  286. const XINPUT_GAMEPAD& gamepad = xinput_state.Gamepad;
  287. io.BackendFlags |= ImGuiBackendFlags_HasGamepad;
  288. #define MAP_BUTTON(NAV_NO, BUTTON_ENUM) { io.NavInputs[NAV_NO] = (gamepad.wButtons & BUTTON_ENUM) ? 1.0f : 0.0f; }
  289. #define MAP_ANALOG(NAV_NO, VALUE, V0, V1) { float vn = (float)(VALUE - V0) / (float)(V1 - V0); if (vn > 1.0f) vn = 1.0f; if (vn > 0.0f && io.NavInputs[NAV_NO] < vn) io.NavInputs[NAV_NO] = vn; }
  290. MAP_BUTTON(ImGuiNavInput_Activate, XINPUT_GAMEPAD_A); // Cross / A
  291. MAP_BUTTON(ImGuiNavInput_Cancel, XINPUT_GAMEPAD_B); // Circle / B
  292. MAP_BUTTON(ImGuiNavInput_Menu, XINPUT_GAMEPAD_X); // Square / X
  293. MAP_BUTTON(ImGuiNavInput_Input, XINPUT_GAMEPAD_Y); // Triangle / Y
  294. MAP_BUTTON(ImGuiNavInput_DpadLeft, XINPUT_GAMEPAD_DPAD_LEFT); // D-Pad Left
  295. MAP_BUTTON(ImGuiNavInput_DpadRight, XINPUT_GAMEPAD_DPAD_RIGHT); // D-Pad Right
  296. MAP_BUTTON(ImGuiNavInput_DpadUp, XINPUT_GAMEPAD_DPAD_UP); // D-Pad Up
  297. MAP_BUTTON(ImGuiNavInput_DpadDown, XINPUT_GAMEPAD_DPAD_DOWN); // D-Pad Down
  298. MAP_BUTTON(ImGuiNavInput_FocusPrev, XINPUT_GAMEPAD_LEFT_SHOULDER); // L1 / LB
  299. MAP_BUTTON(ImGuiNavInput_FocusNext, XINPUT_GAMEPAD_RIGHT_SHOULDER); // R1 / RB
  300. MAP_BUTTON(ImGuiNavInput_TweakSlow, XINPUT_GAMEPAD_LEFT_SHOULDER); // L1 / LB
  301. MAP_BUTTON(ImGuiNavInput_TweakFast, XINPUT_GAMEPAD_RIGHT_SHOULDER); // R1 / RB
  302. MAP_ANALOG(ImGuiNavInput_LStickLeft, gamepad.sThumbLX, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768);
  303. MAP_ANALOG(ImGuiNavInput_LStickRight, gamepad.sThumbLX, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767);
  304. MAP_ANALOG(ImGuiNavInput_LStickUp, gamepad.sThumbLY, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767);
  305. MAP_ANALOG(ImGuiNavInput_LStickDown, gamepad.sThumbLY, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32767);
  306. #undef MAP_BUTTON
  307. #undef MAP_ANALOG
  308. }
  309. #endif // #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
  310. }
  311. static BOOL CALLBACK ImGui_ImplWin32_UpdateMonitors_EnumFunc(HMONITOR monitor, HDC, LPRECT, LPARAM)
  312. {
  313. MONITORINFO info = {};
  314. info.cbSize = sizeof(MONITORINFO);
  315. if (!::GetMonitorInfo(monitor, &info))
  316. return TRUE;
  317. ImGuiPlatformMonitor imgui_monitor;
  318. imgui_monitor.MainPos = ImVec2((float)info.rcMonitor.left, (float)info.rcMonitor.top);
  319. imgui_monitor.MainSize = ImVec2((float)(info.rcMonitor.right - info.rcMonitor.left), (float)(info.rcMonitor.bottom - info.rcMonitor.top));
  320. imgui_monitor.WorkPos = ImVec2((float)info.rcWork.left, (float)info.rcWork.top);
  321. imgui_monitor.WorkSize = ImVec2((float)(info.rcWork.right - info.rcWork.left), (float)(info.rcWork.bottom - info.rcWork.top));
  322. imgui_monitor.DpiScale = ImGui_ImplWin32_GetDpiScaleForMonitor(monitor);
  323. ImGuiPlatformIO& io = ImGui::GetPlatformIO();
  324. if (info.dwFlags & MONITORINFOF_PRIMARY)
  325. io.Monitors.push_front(imgui_monitor);
  326. else
  327. io.Monitors.push_back(imgui_monitor);
  328. return TRUE;
  329. }
  330. static void ImGui_ImplWin32_UpdateMonitors()
  331. {
  332. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  333. ImGui::GetPlatformIO().Monitors.resize(0);
  334. ::EnumDisplayMonitors(NULL, NULL, ImGui_ImplWin32_UpdateMonitors_EnumFunc, 0);
  335. bd->WantUpdateMonitors = false;
  336. }
  337. void ImGui_ImplWin32_NewFrame()
  338. {
  339. ImGuiIO& io = ImGui::GetIO();
  340. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  341. IM_ASSERT(bd != NULL && "Did you call ImGui_ImplWin32_Init()?");
  342. // Setup display size (every frame to accommodate for window resizing)
  343. RECT rect = { 0, 0, 0, 0 };
  344. ::GetClientRect(bd->hWnd, &rect);
  345. io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top));
  346. if (bd->WantUpdateMonitors)
  347. ImGui_ImplWin32_UpdateMonitors();
  348. // Setup time step
  349. INT64 current_time = 0;
  350. ::QueryPerformanceCounter((LARGE_INTEGER*)&current_time);
  351. io.DeltaTime = (float)(current_time - bd->Time) / bd->TicksPerSecond;
  352. bd->Time = current_time;
  353. // Read keyboard modifiers inputs
  354. io.KeyCtrl = (::GetKeyState(VK_CONTROL) & 0x8000) != 0;
  355. io.KeyShift = (::GetKeyState(VK_SHIFT) & 0x8000) != 0;
  356. io.KeyAlt = (::GetKeyState(VK_MENU) & 0x8000) != 0;
  357. io.KeySuper = false;
  358. // io.KeysDown[], io.MousePos, io.MouseDown[], io.MouseWheel: filled by the WndProc handler below.
  359. // Update OS mouse position
  360. ImGui_ImplWin32_UpdateMousePos();
  361. // Update OS mouse cursor with the cursor requested by imgui
  362. ImGuiMouseCursor mouse_cursor = io.MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor();
  363. if (bd->LastMouseCursor != mouse_cursor)
  364. {
  365. bd->LastMouseCursor = mouse_cursor;
  366. ImGui_ImplWin32_UpdateMouseCursor();
  367. }
  368. // Update game controllers (if enabled and available)
  369. ImGui_ImplWin32_UpdateGamepads();
  370. }
  371. // Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions.
  372. #ifndef WM_MOUSEHWHEEL
  373. #define WM_MOUSEHWHEEL 0x020E
  374. #endif
  375. #ifndef DBT_DEVNODES_CHANGED
  376. #define DBT_DEVNODES_CHANGED 0x0007
  377. #endif
  378. // Win32 message handler (process Win32 mouse/keyboard inputs, etc.)
  379. // Call from your application's message handler.
  380. // When implementing your own backend, you can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if Dear ImGui wants to use your inputs.
  381. // - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
  382. // - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application.
  383. // Generally you may always pass all inputs to Dear ImGui, and hide them from your application based on those two flags.
  384. // PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinates when dragging mouse outside of our window bounds.
  385. // PS: We treat DBLCLK messages as regular mouse down messages, so this code will work on windows classes that have the CS_DBLCLKS flag set. Our own example app code doesn't set this flag.
  386. #if 0
  387. // Copy this line into your .cpp file to forward declare the function.
  388. extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
  389. #endif
  390. IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  391. {
  392. if (ImGui::GetCurrentContext() == NULL)
  393. return 0;
  394. ImGuiIO& io = ImGui::GetIO();
  395. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  396. switch (msg)
  397. {
  398. case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK:
  399. case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK:
  400. case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK:
  401. case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK:
  402. {
  403. int button = 0;
  404. if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) { button = 0; }
  405. if (msg == WM_RBUTTONDOWN || msg == WM_RBUTTONDBLCLK) { button = 1; }
  406. if (msg == WM_MBUTTONDOWN || msg == WM_MBUTTONDBLCLK) { button = 2; }
  407. if (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONDBLCLK) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; }
  408. if (!ImGui::IsAnyMouseDown() && ::GetCapture() == NULL)
  409. ::SetCapture(hwnd);
  410. io.MouseDown[button] = true;
  411. return 0;
  412. }
  413. case WM_LBUTTONUP:
  414. case WM_RBUTTONUP:
  415. case WM_MBUTTONUP:
  416. case WM_XBUTTONUP:
  417. {
  418. int button = 0;
  419. if (msg == WM_LBUTTONUP) { button = 0; }
  420. if (msg == WM_RBUTTONUP) { button = 1; }
  421. if (msg == WM_MBUTTONUP) { button = 2; }
  422. if (msg == WM_XBUTTONUP) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; }
  423. io.MouseDown[button] = false;
  424. if (!ImGui::IsAnyMouseDown() && ::GetCapture() == hwnd)
  425. ::ReleaseCapture();
  426. return 0;
  427. }
  428. case WM_MOUSEWHEEL:
  429. io.MouseWheel += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA;
  430. return 0;
  431. case WM_MOUSEHWHEEL:
  432. io.MouseWheelH += (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA;
  433. return 0;
  434. case WM_KEYDOWN:
  435. case WM_SYSKEYDOWN:
  436. if (wParam < 256)
  437. io.KeysDown[wParam] = 1;
  438. return 0;
  439. case WM_KEYUP:
  440. case WM_SYSKEYUP:
  441. if (wParam < 256)
  442. io.KeysDown[wParam] = 0;
  443. return 0;
  444. case WM_KILLFOCUS:
  445. memset(io.KeysDown, 0, sizeof(io.KeysDown));
  446. return 0;
  447. case WM_CHAR:
  448. // You can also use ToAscii()+GetKeyboardState() to retrieve characters.
  449. if (wParam > 0 && wParam < 0x10000)
  450. io.AddInputCharacterUTF16((unsigned short)wParam);
  451. return 0;
  452. case WM_SETCURSOR:
  453. if (LOWORD(lParam) == HTCLIENT && ImGui_ImplWin32_UpdateMouseCursor())
  454. return 1;
  455. return 0;
  456. case WM_DEVICECHANGE:
  457. if ((UINT)wParam == DBT_DEVNODES_CHANGED)
  458. bd->WantUpdateHasGamepad = true;
  459. return 0;
  460. case WM_DISPLAYCHANGE:
  461. bd->WantUpdateMonitors = true;
  462. return 0;
  463. }
  464. return 0;
  465. }
  466. //--------------------------------------------------------------------------------------------------------
  467. // DPI-related helpers (optional)
  468. //--------------------------------------------------------------------------------------------------------
  469. // - Use to enable DPI awareness without having to create an application manifest.
  470. // - Your own app may already do this via a manifest or explicit calls. This is mostly useful for our examples/ apps.
  471. // - In theory we could call simple functions from Windows SDK such as SetProcessDPIAware(), SetProcessDpiAwareness(), etc.
  472. // but most of the functions provided by Microsoft require Windows 8.1/10+ SDK at compile time and Windows 8/10+ at runtime,
  473. // neither we want to require the user to have. So we dynamically select and load those functions to avoid dependencies.
  474. //---------------------------------------------------------------------------------------------------------
  475. // This is the scheme successfully used by GLFW (from which we borrowed some of the code) and other apps aiming to be highly portable.
  476. // ImGui_ImplWin32_EnableDpiAwareness() is just a helper called by main.cpp, we don't call it automatically.
  477. // If you are trying to implement your own backend for your own engine, you may ignore that noise.
  478. //---------------------------------------------------------------------------------------------------------
  479. // Perform our own check with RtlVerifyVersionInfo() instead of using functions from <VersionHelpers.h> as they
  480. // require a manifest to be functional for checks above 8.1. See https://github.com/ocornut/imgui/issues/4200
  481. static BOOL _IsWindowsVersionOrGreater(WORD major, WORD minor, WORD)
  482. {
  483. typedef LONG(WINAPI* PFN_RtlVerifyVersionInfo)(OSVERSIONINFOEXW*, ULONG, ULONGLONG);
  484. static PFN_RtlVerifyVersionInfo RtlVerifyVersionInfoFn = NULL;
  485. if (RtlVerifyVersionInfoFn == NULL)
  486. if (HMODULE ntdllModule = ::GetModuleHandleA("ntdll.dll"))
  487. RtlVerifyVersionInfoFn = (PFN_RtlVerifyVersionInfo)GetProcAddress(ntdllModule, "RtlVerifyVersionInfo");
  488. if (RtlVerifyVersionInfoFn == NULL)
  489. return FALSE;
  490. RTL_OSVERSIONINFOEXW versionInfo = { };
  491. ULONGLONG conditionMask = 0;
  492. versionInfo.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW);
  493. versionInfo.dwMajorVersion = major;
  494. versionInfo.dwMinorVersion = minor;
  495. VER_SET_CONDITION(conditionMask, VER_MAJORVERSION, VER_GREATER_EQUAL);
  496. VER_SET_CONDITION(conditionMask, VER_MINORVERSION, VER_GREATER_EQUAL);
  497. return (RtlVerifyVersionInfoFn(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, conditionMask) == 0) ? TRUE : FALSE;
  498. }
  499. #define _IsWindowsVistaOrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0600), LOBYTE(0x0600), 0) // _WIN32_WINNT_VISTA
  500. #define _IsWindows8OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0602), LOBYTE(0x0602), 0) // _WIN32_WINNT_WIN8
  501. #define _IsWindows8Point1OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0603), LOBYTE(0x0603), 0) // _WIN32_WINNT_WINBLUE
  502. #define _IsWindows10OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0A00), LOBYTE(0x0A00), 0) // _WIN32_WINNT_WINTHRESHOLD / _WIN32_WINNT_WIN10
  503. #ifndef DPI_ENUMS_DECLARED
  504. typedef enum { PROCESS_DPI_UNAWARE = 0, PROCESS_SYSTEM_DPI_AWARE = 1, PROCESS_PER_MONITOR_DPI_AWARE = 2 } PROCESS_DPI_AWARENESS;
  505. typedef enum { MDT_EFFECTIVE_DPI = 0, MDT_ANGULAR_DPI = 1, MDT_RAW_DPI = 2, MDT_DEFAULT = MDT_EFFECTIVE_DPI } MONITOR_DPI_TYPE;
  506. #endif
  507. #ifndef _DPI_AWARENESS_CONTEXTS_
  508. DECLARE_HANDLE(DPI_AWARENESS_CONTEXT);
  509. #define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE (DPI_AWARENESS_CONTEXT)-3
  510. #endif
  511. #ifndef DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2
  512. #define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 (DPI_AWARENESS_CONTEXT)-4
  513. #endif
  514. typedef HRESULT(WINAPI* PFN_SetProcessDpiAwareness)(PROCESS_DPI_AWARENESS); // Shcore.lib + dll, Windows 8.1+
  515. typedef HRESULT(WINAPI* PFN_GetDpiForMonitor)(HMONITOR, MONITOR_DPI_TYPE, UINT*, UINT*); // Shcore.lib + dll, Windows 8.1+
  516. typedef DPI_AWARENESS_CONTEXT(WINAPI* PFN_SetThreadDpiAwarenessContext)(DPI_AWARENESS_CONTEXT); // User32.lib + dll, Windows 10 v1607+ (Creators Update)
  517. // Helper function to enable DPI awareness without setting up a manifest
  518. void ImGui_ImplWin32_EnableDpiAwareness()
  519. {
  520. // Make sure monitors will be updated with latest correct scaling
  521. if (ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData())
  522. bd->WantUpdateMonitors = true;
  523. if (_IsWindows10OrGreater())
  524. {
  525. static HINSTANCE user32_dll = ::LoadLibraryA("user32.dll"); // Reference counted per-process
  526. if (PFN_SetThreadDpiAwarenessContext SetThreadDpiAwarenessContextFn = (PFN_SetThreadDpiAwarenessContext)::GetProcAddress(user32_dll, "SetThreadDpiAwarenessContext"))
  527. {
  528. SetThreadDpiAwarenessContextFn(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2);
  529. return;
  530. }
  531. }
  532. if (_IsWindows8Point1OrGreater())
  533. {
  534. static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process
  535. if (PFN_SetProcessDpiAwareness SetProcessDpiAwarenessFn = (PFN_SetProcessDpiAwareness)::GetProcAddress(shcore_dll, "SetProcessDpiAwareness"))
  536. {
  537. SetProcessDpiAwarenessFn(PROCESS_PER_MONITOR_DPI_AWARE);
  538. return;
  539. }
  540. }
  541. #if _WIN32_WINNT >= 0x0600
  542. ::SetProcessDPIAware();
  543. #endif
  544. }
  545. #if defined(_MSC_VER) && !defined(NOGDI)
  546. #pragma comment(lib, "gdi32") // Link with gdi32.lib for GetDeviceCaps(). MinGW will require linking with '-lgdi32'
  547. #endif
  548. float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor)
  549. {
  550. UINT xdpi = 96, ydpi = 96;
  551. if (_IsWindows8Point1OrGreater())
  552. {
  553. static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process
  554. static PFN_GetDpiForMonitor GetDpiForMonitorFn = NULL;
  555. if (GetDpiForMonitorFn == NULL && shcore_dll != NULL)
  556. GetDpiForMonitorFn = (PFN_GetDpiForMonitor)::GetProcAddress(shcore_dll, "GetDpiForMonitor");
  557. if (GetDpiForMonitorFn != NULL)
  558. {
  559. GetDpiForMonitorFn((HMONITOR)monitor, MDT_EFFECTIVE_DPI, &xdpi, &ydpi);
  560. IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert!
  561. return xdpi / 96.0f;
  562. }
  563. }
  564. #ifndef NOGDI
  565. const HDC dc = ::GetDC(NULL);
  566. xdpi = ::GetDeviceCaps(dc, LOGPIXELSX);
  567. ydpi = ::GetDeviceCaps(dc, LOGPIXELSY);
  568. IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert!
  569. ::ReleaseDC(NULL, dc);
  570. #endif
  571. return xdpi / 96.0f;
  572. }
  573. float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd)
  574. {
  575. HMONITOR monitor = ::MonitorFromWindow((HWND)hwnd, MONITOR_DEFAULTTONEAREST);
  576. return ImGui_ImplWin32_GetDpiScaleForMonitor(monitor);
  577. }
  578. //--------------------------------------------------------------------------------------------------------
  579. // IME (Input Method Editor) basic support for e.g. Asian language users
  580. //--------------------------------------------------------------------------------------------------------
  581. #if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) // UWP doesn't have Win32 functions
  582. #define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS
  583. #endif
  584. #if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS)
  585. #define HAS_WIN32_IME 1
  586. #include <imm.h>
  587. #ifdef _MSC_VER
  588. #pragma comment(lib, "imm32")
  589. #endif
  590. static void ImGui_ImplWin32_SetImeInputPos(ImGuiViewport* viewport, ImVec2 pos)
  591. {
  592. COMPOSITIONFORM cf = { CFS_FORCE_POSITION,{ (LONG)(pos.x - viewport->Pos.x), (LONG)(pos.y - viewport->Pos.y) },{ 0, 0, 0, 0 } };
  593. if (HWND hwnd = (HWND)viewport->PlatformHandle)
  594. if (HIMC himc = ::ImmGetContext(hwnd))
  595. {
  596. ::ImmSetCompositionWindow(himc, &cf);
  597. ::ImmReleaseContext(hwnd, himc);
  598. }
  599. }
  600. #else
  601. #define HAS_WIN32_IME 0
  602. #endif
  603. //--------------------------------------------------------------------------------------------------------
  604. // MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT
  605. // This is an _advanced_ and _optional_ feature, allowing the backend to create and handle multiple viewports simultaneously.
  606. // If you are new to dear imgui or creating a new binding for dear imgui, it is recommended that you completely ignore this section first..
  607. //--------------------------------------------------------------------------------------------------------
  608. // Helper structure we store in the void* RenderUserData field of each ImGuiViewport to easily retrieve our backend data.
  609. struct ImGui_ImplWin32_ViewportData
  610. {
  611. HWND Hwnd;
  612. bool HwndOwned;
  613. DWORD DwStyle;
  614. DWORD DwExStyle;
  615. ImGui_ImplWin32_ViewportData() { Hwnd = NULL; HwndOwned = false; DwStyle = DwExStyle = 0; }
  616. ~ImGui_ImplWin32_ViewportData() { IM_ASSERT(Hwnd == NULL); }
  617. };
  618. static void ImGui_ImplWin32_GetWin32StyleFromViewportFlags(ImGuiViewportFlags flags, DWORD* out_style, DWORD* out_ex_style)
  619. {
  620. if (flags & ImGuiViewportFlags_NoDecoration)
  621. *out_style = WS_POPUP;
  622. else
  623. *out_style = WS_OVERLAPPEDWINDOW;
  624. if (flags & ImGuiViewportFlags_NoTaskBarIcon)
  625. *out_ex_style = WS_EX_TOOLWINDOW;
  626. else
  627. *out_ex_style = WS_EX_APPWINDOW;
  628. if (flags & ImGuiViewportFlags_TopMost)
  629. *out_ex_style |= WS_EX_TOPMOST;
  630. }
  631. static void ImGui_ImplWin32_CreateWindow(ImGuiViewport* viewport)
  632. {
  633. ImGui_ImplWin32_ViewportData* vd = IM_NEW(ImGui_ImplWin32_ViewportData)();
  634. viewport->PlatformUserData = vd;
  635. // Select style and parent window
  636. ImGui_ImplWin32_GetWin32StyleFromViewportFlags(viewport->Flags, &vd->DwStyle, &vd->DwExStyle);
  637. HWND parent_window = NULL;
  638. if (viewport->ParentViewportId != 0)
  639. if (ImGuiViewport* parent_viewport = ImGui::FindViewportByID(viewport->ParentViewportId))
  640. parent_window = (HWND)parent_viewport->PlatformHandle;
  641. // Create window
  642. RECT rect = { (LONG)viewport->Pos.x, (LONG)viewport->Pos.y, (LONG)(viewport->Pos.x + viewport->Size.x), (LONG)(viewport->Pos.y + viewport->Size.y) };
  643. ::AdjustWindowRectEx(&rect, vd->DwStyle, FALSE, vd->DwExStyle);
  644. vd->Hwnd = ::CreateWindowEx(
  645. vd->DwExStyle, _T("ImGui Platform"), _T("Untitled"), vd->DwStyle, // Style, class name, window name
  646. rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, // Window area
  647. parent_window, NULL, ::GetModuleHandle(NULL), NULL); // Parent window, Menu, Instance, Param
  648. vd->HwndOwned = true;
  649. viewport->PlatformRequestResize = false;
  650. viewport->PlatformHandle = viewport->PlatformHandleRaw = vd->Hwnd;
  651. }
  652. static void ImGui_ImplWin32_DestroyWindow(ImGuiViewport* viewport)
  653. {
  654. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  655. if (ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData)
  656. {
  657. if (::GetCapture() == vd->Hwnd)
  658. {
  659. // Transfer capture so if we started dragging from a window that later disappears, we'll still receive the MOUSEUP event.
  660. ::ReleaseCapture();
  661. ::SetCapture(bd->hWnd);
  662. }
  663. if (vd->Hwnd && vd->HwndOwned)
  664. ::DestroyWindow(vd->Hwnd);
  665. vd->Hwnd = NULL;
  666. IM_DELETE(vd);
  667. }
  668. viewport->PlatformUserData = viewport->PlatformHandle = NULL;
  669. }
  670. static void ImGui_ImplWin32_ShowWindow(ImGuiViewport* viewport)
  671. {
  672. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  673. IM_ASSERT(vd->Hwnd != 0);
  674. if (viewport->Flags & ImGuiViewportFlags_NoFocusOnAppearing)
  675. ::ShowWindow(vd->Hwnd, SW_SHOWNA);
  676. else
  677. ::ShowWindow(vd->Hwnd, SW_SHOW);
  678. }
  679. static void ImGui_ImplWin32_UpdateWindow(ImGuiViewport* viewport)
  680. {
  681. // (Optional) Update Win32 style if it changed _after_ creation.
  682. // Generally they won't change unless configuration flags are changed, but advanced uses (such as manually rewriting viewport flags) make this useful.
  683. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  684. IM_ASSERT(vd->Hwnd != 0);
  685. DWORD new_style;
  686. DWORD new_ex_style;
  687. ImGui_ImplWin32_GetWin32StyleFromViewportFlags(viewport->Flags, &new_style, &new_ex_style);
  688. // Only reapply the flags that have been changed from our point of view (as other flags are being modified by Windows)
  689. if (vd->DwStyle != new_style || vd->DwExStyle != new_ex_style)
  690. {
  691. // (Optional) Update TopMost state if it changed _after_ creation
  692. bool top_most_changed = (vd->DwExStyle & WS_EX_TOPMOST) != (new_ex_style & WS_EX_TOPMOST);
  693. HWND insert_after = top_most_changed ? ((viewport->Flags & ImGuiViewportFlags_TopMost) ? HWND_TOPMOST : HWND_NOTOPMOST) : 0;
  694. UINT swp_flag = top_most_changed ? 0 : SWP_NOZORDER;
  695. // Apply flags and position (since it is affected by flags)
  696. vd->DwStyle = new_style;
  697. vd->DwExStyle = new_ex_style;
  698. ::SetWindowLong(vd->Hwnd, GWL_STYLE, vd->DwStyle);
  699. ::SetWindowLong(vd->Hwnd, GWL_EXSTYLE, vd->DwExStyle);
  700. RECT rect = { (LONG)viewport->Pos.x, (LONG)viewport->Pos.y, (LONG)(viewport->Pos.x + viewport->Size.x), (LONG)(viewport->Pos.y + viewport->Size.y) };
  701. ::AdjustWindowRectEx(&rect, vd->DwStyle, FALSE, vd->DwExStyle); // Client to Screen
  702. ::SetWindowPos(vd->Hwnd, insert_after, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, swp_flag | SWP_NOACTIVATE | SWP_FRAMECHANGED);
  703. ::ShowWindow(vd->Hwnd, SW_SHOWNA); // This is necessary when we alter the style
  704. viewport->PlatformRequestMove = viewport->PlatformRequestResize = true;
  705. }
  706. }
  707. static ImVec2 ImGui_ImplWin32_GetWindowPos(ImGuiViewport* viewport)
  708. {
  709. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  710. IM_ASSERT(vd->Hwnd != 0);
  711. POINT pos = { 0, 0 };
  712. ::ClientToScreen(vd->Hwnd, &pos);
  713. return ImVec2((float)pos.x, (float)pos.y);
  714. }
  715. static void ImGui_ImplWin32_SetWindowPos(ImGuiViewport* viewport, ImVec2 pos)
  716. {
  717. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  718. IM_ASSERT(vd->Hwnd != 0);
  719. RECT rect = { (LONG)pos.x, (LONG)pos.y, (LONG)pos.x, (LONG)pos.y };
  720. ::AdjustWindowRectEx(&rect, vd->DwStyle, FALSE, vd->DwExStyle);
  721. ::SetWindowPos(vd->Hwnd, NULL, rect.left, rect.top, 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
  722. }
  723. static ImVec2 ImGui_ImplWin32_GetWindowSize(ImGuiViewport* viewport)
  724. {
  725. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  726. IM_ASSERT(vd->Hwnd != 0);
  727. RECT rect;
  728. ::GetClientRect(vd->Hwnd, &rect);
  729. return ImVec2(float(rect.right - rect.left), float(rect.bottom - rect.top));
  730. }
  731. static void ImGui_ImplWin32_SetWindowSize(ImGuiViewport* viewport, ImVec2 size)
  732. {
  733. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  734. IM_ASSERT(vd->Hwnd != 0);
  735. RECT rect = { 0, 0, (LONG)size.x, (LONG)size.y };
  736. ::AdjustWindowRectEx(&rect, vd->DwStyle, FALSE, vd->DwExStyle); // Client to Screen
  737. ::SetWindowPos(vd->Hwnd, NULL, 0, 0, rect.right - rect.left, rect.bottom - rect.top, SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
  738. }
  739. static void ImGui_ImplWin32_SetWindowFocus(ImGuiViewport* viewport)
  740. {
  741. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  742. IM_ASSERT(vd->Hwnd != 0);
  743. ::BringWindowToTop(vd->Hwnd);
  744. ::SetForegroundWindow(vd->Hwnd);
  745. ::SetFocus(vd->Hwnd);
  746. }
  747. static bool ImGui_ImplWin32_GetWindowFocus(ImGuiViewport* viewport)
  748. {
  749. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  750. IM_ASSERT(vd->Hwnd != 0);
  751. return ::GetForegroundWindow() == vd->Hwnd;
  752. }
  753. static bool ImGui_ImplWin32_GetWindowMinimized(ImGuiViewport* viewport)
  754. {
  755. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  756. IM_ASSERT(vd->Hwnd != 0);
  757. return ::IsIconic(vd->Hwnd) != 0;
  758. }
  759. static void ImGui_ImplWin32_SetWindowTitle(ImGuiViewport* viewport, const char* title)
  760. {
  761. // ::SetWindowTextA() doesn't properly handle UTF-8 so we explicitely convert our string.
  762. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  763. IM_ASSERT(vd->Hwnd != 0);
  764. int n = ::MultiByteToWideChar(CP_UTF8, 0, title, -1, NULL, 0);
  765. ImVector<wchar_t> title_w;
  766. title_w.resize(n);
  767. ::MultiByteToWideChar(CP_UTF8, 0, title, -1, title_w.Data, n);
  768. ::SetWindowTextW(vd->Hwnd, title_w.Data);
  769. }
  770. static void ImGui_ImplWin32_SetWindowAlpha(ImGuiViewport* viewport, float alpha)
  771. {
  772. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  773. IM_ASSERT(vd->Hwnd != 0);
  774. IM_ASSERT(alpha >= 0.0f && alpha <= 1.0f);
  775. if (alpha < 1.0f)
  776. {
  777. DWORD style = ::GetWindowLongW(vd->Hwnd, GWL_EXSTYLE) | WS_EX_LAYERED;
  778. ::SetWindowLongW(vd->Hwnd, GWL_EXSTYLE, style);
  779. ::SetLayeredWindowAttributes(vd->Hwnd, 0, (BYTE)(255 * alpha), LWA_ALPHA);
  780. }
  781. else
  782. {
  783. DWORD style = ::GetWindowLongW(vd->Hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED;
  784. ::SetWindowLongW(vd->Hwnd, GWL_EXSTYLE, style);
  785. }
  786. }
  787. static float ImGui_ImplWin32_GetWindowDpiScale(ImGuiViewport* viewport)
  788. {
  789. ImGui_ImplWin32_ViewportData* vd = (ImGui_ImplWin32_ViewportData*)viewport->PlatformUserData;
  790. IM_ASSERT(vd->Hwnd != 0);
  791. return ImGui_ImplWin32_GetDpiScaleForHwnd(vd->Hwnd);
  792. }
  793. // FIXME-DPI: Testing DPI related ideas
  794. static void ImGui_ImplWin32_OnChangedViewport(ImGuiViewport* viewport)
  795. {
  796. (void)viewport;
  797. #if 0
  798. ImGuiStyle default_style;
  799. //default_style.WindowPadding = ImVec2(0, 0);
  800. //default_style.WindowBorderSize = 0.0f;
  801. //default_style.ItemSpacing.y = 3.0f;
  802. //default_style.FramePadding = ImVec2(0, 0);
  803. default_style.ScaleAllSizes(viewport->DpiScale);
  804. ImGuiStyle& style = ImGui::GetStyle();
  805. style = default_style;
  806. #endif
  807. }
  808. static LRESULT CALLBACK ImGui_ImplWin32_WndProcHandler_PlatformWindow(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
  809. {
  810. if (ImGui_ImplWin32_WndProcHandler(hWnd, msg, wParam, lParam))
  811. return true;
  812. if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle((void*)hWnd))
  813. {
  814. switch (msg)
  815. {
  816. case WM_CLOSE:
  817. viewport->PlatformRequestClose = true;
  818. return 0;
  819. case WM_MOVE:
  820. viewport->PlatformRequestMove = true;
  821. break;
  822. case WM_SIZE:
  823. viewport->PlatformRequestResize = true;
  824. break;
  825. case WM_MOUSEACTIVATE:
  826. if (viewport->Flags & ImGuiViewportFlags_NoFocusOnClick)
  827. return MA_NOACTIVATE;
  828. break;
  829. case WM_NCHITTEST:
  830. // Let mouse pass-through the window. This will allow the backend to set io.MouseHoveredViewport properly (which is OPTIONAL).
  831. // The ImGuiViewportFlags_NoInputs flag is set while dragging a viewport, as want to detect the window behind the one we are dragging.
  832. // If you cannot easily access those viewport flags from your windowing/event code: you may manually synchronize its state e.g. in
  833. // your main loop after calling UpdatePlatformWindows(). Iterate all viewports/platform windows and pass the flag to your windowing system.
  834. if (viewport->Flags & ImGuiViewportFlags_NoInputs)
  835. return HTTRANSPARENT;
  836. break;
  837. }
  838. }
  839. return DefWindowProc(hWnd, msg, wParam, lParam);
  840. }
  841. static void ImGui_ImplWin32_InitPlatformInterface()
  842. {
  843. WNDCLASSEX wcex;
  844. wcex.cbSize = sizeof(WNDCLASSEX);
  845. wcex.style = CS_HREDRAW | CS_VREDRAW;
  846. wcex.lpfnWndProc = ImGui_ImplWin32_WndProcHandler_PlatformWindow;
  847. wcex.cbClsExtra = 0;
  848. wcex.cbWndExtra = 0;
  849. wcex.hInstance = ::GetModuleHandle(NULL);
  850. wcex.hIcon = NULL;
  851. wcex.hCursor = NULL;
  852. wcex.hbrBackground = (HBRUSH)(COLOR_BACKGROUND + 1);
  853. wcex.lpszMenuName = NULL;
  854. wcex.lpszClassName = _T("ImGui Platform");
  855. wcex.hIconSm = NULL;
  856. ::RegisterClassEx(&wcex);
  857. ImGui_ImplWin32_UpdateMonitors();
  858. // Register platform interface (will be coupled with a renderer interface)
  859. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  860. platform_io.Platform_CreateWindow = ImGui_ImplWin32_CreateWindow;
  861. platform_io.Platform_DestroyWindow = ImGui_ImplWin32_DestroyWindow;
  862. platform_io.Platform_ShowWindow = ImGui_ImplWin32_ShowWindow;
  863. platform_io.Platform_SetWindowPos = ImGui_ImplWin32_SetWindowPos;
  864. platform_io.Platform_GetWindowPos = ImGui_ImplWin32_GetWindowPos;
  865. platform_io.Platform_SetWindowSize = ImGui_ImplWin32_SetWindowSize;
  866. platform_io.Platform_GetWindowSize = ImGui_ImplWin32_GetWindowSize;
  867. platform_io.Platform_SetWindowFocus = ImGui_ImplWin32_SetWindowFocus;
  868. platform_io.Platform_GetWindowFocus = ImGui_ImplWin32_GetWindowFocus;
  869. platform_io.Platform_GetWindowMinimized = ImGui_ImplWin32_GetWindowMinimized;
  870. platform_io.Platform_SetWindowTitle = ImGui_ImplWin32_SetWindowTitle;
  871. platform_io.Platform_SetWindowAlpha = ImGui_ImplWin32_SetWindowAlpha;
  872. platform_io.Platform_UpdateWindow = ImGui_ImplWin32_UpdateWindow;
  873. platform_io.Platform_GetWindowDpiScale = ImGui_ImplWin32_GetWindowDpiScale; // FIXME-DPI
  874. platform_io.Platform_OnChangedViewport = ImGui_ImplWin32_OnChangedViewport; // FIXME-DPI
  875. #if HAS_WIN32_IME
  876. platform_io.Platform_SetImeInputPos = ImGui_ImplWin32_SetImeInputPos;
  877. #endif
  878. // Register main window handle (which is owned by the main application, not by us)
  879. // This is mostly for simplicity and consistency, so that our code (e.g. mouse handling etc.) can use same logic for main and secondary viewports.
  880. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  881. ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData();
  882. ImGui_ImplWin32_ViewportData* vd = IM_NEW(ImGui_ImplWin32_ViewportData)();
  883. vd->Hwnd = bd->hWnd;
  884. vd->HwndOwned = false;
  885. main_viewport->PlatformUserData = vd;
  886. main_viewport->PlatformHandle = (void*)bd->hWnd;
  887. }
  888. static void ImGui_ImplWin32_ShutdownPlatformInterface()
  889. {
  890. ::UnregisterClass(_T("ImGui Platform"), ::GetModuleHandle(NULL));
  891. }
  892. //---------------------------------------------------------------------------------------------------------
  893. // Transparency related helpers (optional)
  894. //--------------------------------------------------------------------------------------------------------
  895. #if defined(_MSC_VER)
  896. #pragma comment(lib, "dwmapi") // Link with dwmapi.lib. MinGW will require linking with '-ldwmapi'
  897. #endif
  898. // [experimental]
  899. // Borrowed from GLFW's function updateFramebufferTransparency() in src/win32_window.c
  900. // (the Dwm* functions are Vista era functions but we are borrowing logic from GLFW)
  901. void ImGui_ImplWin32_EnableAlphaCompositing(void* hwnd)
  902. {
  903. if (!_IsWindowsVistaOrGreater())
  904. return;
  905. BOOL composition;
  906. if (FAILED(::DwmIsCompositionEnabled(&composition)) || !composition)
  907. return;
  908. BOOL opaque;
  909. DWORD color;
  910. if (_IsWindows8OrGreater() || (SUCCEEDED(::DwmGetColorizationColor(&color, &opaque)) && !opaque))
  911. {
  912. HRGN region = ::CreateRectRgn(0, 0, -1, -1);
  913. DWM_BLURBEHIND bb = {};
  914. bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION;
  915. bb.hRgnBlur = region;
  916. bb.fEnable = TRUE;
  917. ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb);
  918. ::DeleteObject(region);
  919. }
  920. else
  921. {
  922. DWM_BLURBEHIND bb = {};
  923. bb.dwFlags = DWM_BB_ENABLE;
  924. ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb);
  925. }
  926. }
  927. //---------------------------------------------------------------------------------------------------------