imgui_impl_glfw.cpp 87 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636
  1. // dear imgui: Platform Backend for GLFW
  2. // This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan, WebGPU..)
  3. // (Info: GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.)
  4. // (Requires: GLFW 3.0+. Prefer GLFW 3.3+/3.4+ for full feature support.)
  5. // Implemented features:
  6. // [X] Platform: Clipboard support.
  7. // [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen (Windows only).
  8. // [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy GLFW_KEY_* values are obsolete since 1.87 and not supported since 1.91.5]
  9. // [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
  10. // [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors) with GLFW 3.1+. Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
  11. // [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
  12. // [X] Multiple Dear ImGui contexts support.
  13. // Missing features or Issues:
  14. // [ ] Platform: Touch events are only correctly identified as Touch on Windows. This create issues with some interactions. GLFW doesn't provide a way to identify touch inputs from mouse inputs, we cannot call io.AddMouseSourceEvent() to identify the source. We provide a Windows-specific workaround.
  15. // [ ] Platform: Missing ImGuiMouseCursor_Wait and ImGuiMouseCursor_Progress cursors.
  16. // [ ] Platform: Multi-viewport: Missing ImGuiBackendFlags_HasParentViewport support. The viewport->ParentViewportID field is ignored, and therefore io.ConfigViewportsNoDefaultParent has no effect either.
  17. // You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
  18. // Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
  19. // Learn about Dear ImGui:
  20. // - FAQ https://dearimgui.com/faq
  21. // - Getting Started https://dearimgui.com/getting-started
  22. // - Documentation https://dearimgui.com/docs (same as your local docs/ folder).
  23. // - Introduction, links and more at the top of imgui.cpp
  24. // About Emscripten support:
  25. // - Emscripten provides its own GLFW (3.2.1) implementation (syntax: "-sUSE_GLFW=3"), but Joystick is broken and several features are not supported (multiple windows, clipboard, timer, etc.)
  26. // - A third-party Emscripten GLFW (3.4.0) implementation (syntax: "--use-port=contrib.glfw3") fixes the Joystick issue and implements all relevant features for the browser.
  27. // See https://github.com/pongasoft/emscripten-glfw/blob/master/docs/Comparison.md for details.
  28. // CHANGELOG
  29. // (minor and older changes stripped away, please see git history for details)
  30. // 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
  31. // 2025-11-06: Lower minimum requirement to GLFW 3.0. Though a recent version e.g GLFW 3.4 is highly recommended.
  32. // 2025-09-18: Call platform_io.ClearPlatformHandlers() on shutdown.
  33. // 2025-09-15: Content Scales are always reported as 1.0 on Wayland. FramebufferScale are always reported as 1.0 on X11. (#8920, #8921)
  34. // 2025-09-10: [Docking] Improve multi-viewport behavior in tiling WMs on X11 via the ImGui_ImplGlfw_SetWindowFloating() function. Note: using GLFW backend on Linux/BSD etc. requires linking with -lX11. (#8884, #8474, #8289)
  35. // 2025-07-08: Made ImGui_ImplGlfw_GetContentScaleForWindow(), ImGui_ImplGlfw_GetContentScaleForMonitor() helpers return 1.0f on Emscripten and Android platforms, matching macOS logic. (#8742, #8733)
  36. // 2025-06-18: Added support for multiple Dear ImGui contexts. (#8676, #8239, #8069)
  37. // 2025-06-11: Added ImGui_ImplGlfw_GetContentScaleForWindow(GLFWwindow* window) and ImGui_ImplGlfw_GetContentScaleForMonitor(GLFWmonitor* monitor) helper to facilitate making DPI-aware apps.
  38. // 2025-05-15: [Docking] Add Platform_GetWindowFramebufferScale() handler, to allow varying Retina display density on multiple monitors.
  39. // 2025-04-26: [Docking] Disable multi-viewports under Wayland. (#8587)
  40. // 2025-03-10: Map GLFW_KEY_WORLD_1 and GLFW_KEY_WORLD_2 into ImGuiKey_Oem102.
  41. // 2025-03-03: Fixed clipboard handler assertion when using GLFW <= 3.2.1 compiled with asserts enabled.
  42. // 2025-02-21: [Docking] Update monitors and work areas information every frame, as the later may change regardless of monitor changes. (#8415)
  43. // 2024-11-05: [Docking] Added Linux workaround for spurious mouse up events emitted while dragging and creating new viewport. (#3158, #7733, #7922)
  44. // 2024-08-22: Moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
  45. // - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
  46. // - io.SetClipboardTextFn -> platform_io.Platform_SetClipboardTextFn
  47. // - io.PlatformOpenInShellFn -> platform_io.Platform_OpenInShellFn
  48. // 2024-07-31: Added ImGui_ImplGlfw_Sleep() helper function for usage by our examples app, since GLFW doesn't provide one.
  49. // 2024-07-08: *BREAKING* Renamed ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback to ImGui_ImplGlfw_InstallEmscriptenCallbacks(), added GLFWWindow* parameter.
  50. // 2024-07-08: Emscripten: Added support for GLFW3 contrib port (GLFW 3.4.0 features + bug fixes): to enable, replace -sUSE_GLFW=3 with --use-port=contrib.glfw3 (requires emscripten 3.1.59+) (https://github.com/pongasoft/emscripten-glfw)
  51. // 2024-07-02: Emscripten: Added io.PlatformOpenInShellFn() handler for Emscripten versions.
  52. // 2023-12-19: Emscripten: Added ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback() to register canvas selector and auto-resize GLFW window.
  53. // 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys.
  54. // 2023-07-18: Inputs: Revert ignoring mouse data on GLFW_CURSOR_DISABLED as it can be used differently. User may set ImGuiConfigFLags_NoMouse if desired. (#5625, #6609)
  55. // 2023-06-12: Accept glfwGetTime() not returning a monotonically increasing value. This seems to happens on some Windows setup when peripherals disconnect, and is likely to also happen on browser + Emscripten. (#6491)
  56. // 2023-04-04: Inputs: Added support for io.AddMouseSourceEvent() to discriminate ImGuiMouseSource_Mouse/ImGuiMouseSource_TouchScreen/ImGuiMouseSource_Pen on Windows ONLY, using a custom WndProc hook. (#2702)
  57. // 2023-03-16: Inputs: Fixed key modifiers handling on secondary viewports (docking branch). Broken on 2023/01/04. (#6248, #6034)
  58. // 2023-03-14: Emscripten: Avoid using glfwGetError() and glfwGetGamepadState() which are not correctly implemented in Emscripten emulation. (#6240)
  59. // 2023-02-03: Emscripten: Registering custom low-level mouse wheel handler to get more accurate scrolling impulses on Emscripten. (#4019, #6096)
  60. // 2023-01-18: Handle unsupported glfwGetVideoMode() call on e.g. Emscripten.
  61. // 2023-01-04: Inputs: Fixed mods state on Linux when using Alt-GR text input (e.g. German keyboard layout), could lead to broken text input. Revert a 2022/01/17 change were we resumed using mods provided by GLFW, turns out they were faulty.
  62. // 2022-11-22: Perform a dummy glfwGetError() read to cancel missing names with glfwGetKeyName(). (#5908)
  63. // 2022-10-18: Perform a dummy glfwGetError() read to cancel missing mouse cursors errors. Using GLFW_VERSION_COMBINED directly. (#5785)
  64. // 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11.
  65. // 2022-09-26: Inputs: Renamed ImGuiKey_ModXXX introduced in 1.87 to ImGuiMod_XXX (old names still supported).
  66. // 2022-09-01: Inputs: Honor GLFW_CURSOR_DISABLED by not setting mouse position *EDIT* Reverted 2023-07-18.
  67. // 2022-04-30: Inputs: Fixed ImGui_ImplGlfw_TranslateUntranslatedKey() for lower case letters on OSX.
  68. // 2022-03-23: Inputs: Fixed a regression in 1.87 which resulted in keyboard modifiers events being reported incorrectly on Linux/X11.
  69. // 2022-02-07: Added ImGui_ImplGlfw_InstallCallbacks()/ImGui_ImplGlfw_RestoreCallbacks() helpers to facilitate user installing callbacks after initializing backend.
  70. // 2022-01-26: Inputs: replaced short-lived io.AddKeyModsEvent() (added two weeks ago) with io.AddKeyEvent() using ImGuiKey_ModXXX flags. Sorry for the confusion.
  71. // 2021-01-20: Inputs: calling new io.AddKeyAnalogEvent() for gamepad support, instead of writing directly to io.NavInputs[].
  72. // 2022-01-17: Inputs: calling new io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() API (1.87+).
  73. // 2022-01-17: Inputs: always update key mods next and before key event (not in NewFrame) to fix input queue with very low framerates.
  74. // 2022-01-12: *BREAKING CHANGE*: Now using glfwSetCursorPosCallback(). If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetCursorPosCallback() and forward it to the backend via ImGui_ImplGlfw_CursorPosCallback().
  75. // 2022-01-10: Inputs: calling new io.AddKeyEvent(), io.AddKeyModsEvent() + io.SetKeyEventNativeData() API (1.87+). Support for full ImGuiKey range.
  76. // 2022-01-05: Inputs: Converting GLFW untranslated keycodes back to translated keycodes (in the ImGui_ImplGlfw_KeyCallback() function) in order to match the behavior of every other backend, and facilitate the use of GLFW with lettered-shortcuts API.
  77. // 2021-08-17: *BREAKING CHANGE*: Now using glfwSetWindowFocusCallback() to calling io.AddFocusEvent(). If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetWindowFocusCallback() and forward it to the backend via ImGui_ImplGlfw_WindowFocusCallback().
  78. // 2021-07-29: *BREAKING CHANGE*: Now using glfwSetCursorEnterCallback(). MousePos is correctly reported when the host platform window is hovered but not focused. If you called ImGui_ImplGlfw_InitXXX() with install_callbacks = false, you MUST install glfwSetWindowFocusCallback() callback and forward it to the backend via ImGui_ImplGlfw_CursorEnterCallback().
  79. // 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).
  80. // 2020-01-17: Inputs: Disable error callback while assigning mouse cursors because some X11 setup don't have them and it generates errors.
  81. // 2019-12-05: Inputs: Added support for new mouse cursors added in GLFW 3.4+ (resizing cursors, not allowed cursor).
  82. // 2019-10-18: Misc: Previously installed user callbacks are now restored on shutdown.
  83. // 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter.
  84. // 2019-05-11: Inputs: Don't filter value from character callback before calling AddInputCharacter().
  85. // 2019-03-12: Misc: Preserve DisplayFramebufferScale when main window is minimized.
  86. // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
  87. // 2018-11-07: Inputs: When installing our GLFW callbacks, we save user's previously installed ones - if any - and chain call them.
  88. // 2018-08-01: Inputs: Workaround for Emscripten which doesn't seem to handle focus related calls.
  89. // 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor.
  90. // 2018-06-08: Misc: Extracted imgui_impl_glfw.cpp/.h away from the old combined GLFW+OpenGL/Vulkan examples.
  91. // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
  92. // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value, passed to glfwSetCursor()).
  93. // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves.
  94. // 2018-02-06: Inputs: Added mapping for ImGuiKey_Space.
  95. // 2018-01-25: Inputs: Added gamepad support if ImGuiConfigFlags_NavEnableGamepad is set.
  96. // 2018-01-25: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set).
  97. // 2018-01-20: Inputs: Added Horizontal Mouse Wheel support.
  98. // 2018-01-18: Inputs: Added mapping for ImGuiKey_Insert.
  99. // 2017-08-25: Inputs: MousePos set to -FLT_MAX,-FLT_MAX when mouse is unavailable/missing (instead of -1,-1).
  100. // 2016-10-15: Misc: Added a void* user_data parameter to Clipboard function handlers.
  101. #include "imgui.h"
  102. #ifndef IMGUI_DISABLE
  103. #include "imgui_impl_glfw.h"
  104. // Clang warnings with -Weverything
  105. #if defined(__clang__)
  106. #pragma clang diagnostic push
  107. #pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast
  108. #pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
  109. #pragma clang diagnostic ignored "-Wexit-time-destructors" // warning: declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals.
  110. #pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is.
  111. #elif defined(__GNUC__)
  112. #pragma GCC diagnostic ignored "-Wfloat-equal" // warning: comparing floating-point with '==' or '!=' is unsafe
  113. #endif
  114. // GLFW
  115. #if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
  116. #define GLFW_HAS_X11_OR_WAYLAND 1
  117. #else
  118. #define GLFW_HAS_X11_OR_WAYLAND 0
  119. #endif
  120. #include <GLFW/glfw3.h>
  121. #ifdef _WIN32
  122. #undef APIENTRY
  123. #ifndef GLFW_EXPOSE_NATIVE_WIN32 // for glfwGetWin32Window()
  124. #define GLFW_EXPOSE_NATIVE_WIN32
  125. #endif
  126. #include <GLFW/glfw3native.h>
  127. #elif defined(__APPLE__)
  128. #ifndef GLFW_EXPOSE_NATIVE_COCOA // for glfwGetCocoaWindow()
  129. #define GLFW_EXPOSE_NATIVE_COCOA
  130. #endif
  131. #include <GLFW/glfw3native.h>
  132. #elif GLFW_HAS_X11_OR_WAYLAND
  133. #ifndef GLFW_EXPOSE_NATIVE_X11 // for glfwGetX11Display(), glfwGetX11Window() on Freedesktop (Linux, BSD, etc.)
  134. #define GLFW_EXPOSE_NATIVE_X11
  135. #include <X11/Xatom.h>
  136. #endif
  137. #include <GLFW/glfw3native.h>
  138. #undef Status // X11 headers are leaking this.
  139. #endif
  140. #ifndef _WIN32
  141. #include <unistd.h> // for usleep()
  142. #endif
  143. #include <stdio.h> // for snprintf()
  144. #ifdef __EMSCRIPTEN__
  145. #include <emscripten.h>
  146. #include <emscripten/html5.h>
  147. #ifdef EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3
  148. #include <GLFW/emscripten_glfw3.h>
  149. #else
  150. #define EMSCRIPTEN_USE_EMBEDDED_GLFW3
  151. #endif
  152. #endif
  153. // We gather version tests as define in order to easily see which features are version-dependent.
  154. #define GLFW_VERSION_COMBINED (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 + GLFW_VERSION_REVISION)
  155. #define GLFW_HAS_CREATECURSOR (GLFW_VERSION_COMBINED >= 3100) // 3.1+ glfwCreateCursor()
  156. #define GLFW_HAS_WINDOW_TOPMOST (GLFW_VERSION_COMBINED >= 3200) // 3.2+ GLFW_FLOATING
  157. #define GLFW_HAS_WINDOW_HOVERED (GLFW_VERSION_COMBINED >= 3300) // 3.3+ GLFW_HOVERED
  158. #define GLFW_HAS_WINDOW_ALPHA (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwSetWindowOpacity
  159. #define GLFW_HAS_PER_MONITOR_DPI (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetMonitorContentScale
  160. #if defined(__EMSCRIPTEN__) || defined(__SWITCH__) // no Vulkan support in GLFW for Emscripten or homebrew Nintendo Switch
  161. #define GLFW_HAS_VULKAN (0)
  162. #else
  163. #define GLFW_HAS_VULKAN (GLFW_VERSION_COMBINED >= 3200) // 3.2+ glfwCreateWindowSurface
  164. #endif
  165. #define GLFW_HAS_FOCUS_WINDOW (GLFW_VERSION_COMBINED >= 3200) // 3.2+ glfwFocusWindow
  166. #define GLFW_HAS_FOCUS_ON_SHOW (GLFW_VERSION_COMBINED >= 3300) // 3.3+ GLFW_FOCUS_ON_SHOW
  167. #define GLFW_HAS_MONITOR_WORK_AREA (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetMonitorWorkarea
  168. #define GLFW_HAS_OSX_WINDOW_POS_FIX (GLFW_VERSION_COMBINED >= 3301) // 3.3.1+ Fixed: Resizing window repositions it on MacOS #1553
  169. #ifdef GLFW_RESIZE_NESW_CURSOR // Let's be nice to people who pulled GLFW between 2019-04-16 (3.4 define) and 2019-11-29 (cursors defines) // FIXME: Remove when GLFW 3.4 is released?
  170. #define GLFW_HAS_NEW_CURSORS (GLFW_VERSION_COMBINED >= 3400) // 3.4+ GLFW_RESIZE_ALL_CURSOR, GLFW_RESIZE_NESW_CURSOR, GLFW_RESIZE_NWSE_CURSOR, GLFW_NOT_ALLOWED_CURSOR
  171. #else
  172. #define GLFW_HAS_NEW_CURSORS (0)
  173. #endif
  174. #ifdef GLFW_MOUSE_PASSTHROUGH // Let's be nice to people who pulled GLFW between 2019-04-16 (3.4 define) and 2020-07-17 (passthrough)
  175. #define GLFW_HAS_MOUSE_PASSTHROUGH (GLFW_VERSION_COMBINED >= 3400) // 3.4+ GLFW_MOUSE_PASSTHROUGH
  176. #else
  177. #define GLFW_HAS_MOUSE_PASSTHROUGH (0)
  178. #endif
  179. #define GLFW_HAS_GAMEPAD_API (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetGamepadState() new api
  180. #define GLFW_HAS_GETKEYNAME (GLFW_VERSION_COMBINED >= 3200) // 3.2+ glfwGetKeyName()
  181. #define GLFW_HAS_GETERROR (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetError()
  182. #define GLFW_HAS_GETPLATFORM (GLFW_VERSION_COMBINED >= 3400) // 3.4+ glfwGetPlatform()
  183. // Map GLFWWindow* to ImGuiContext*.
  184. // - Would be simpler if we could use glfwSetWindowUserPointer()/glfwGetWindowUserPointer(), but this is a single and shared resource.
  185. // - Would be simpler if we could use e.g. std::map<> as well. But we don't.
  186. // - This is not particularly optimized as we expect size to be small and queries to be rare.
  187. struct ImGui_ImplGlfw_WindowToContext { GLFWwindow* Window; ImGuiContext* Context; };
  188. static ImVector<ImGui_ImplGlfw_WindowToContext> g_ContextMap;
  189. static void ImGui_ImplGlfw_ContextMap_Add(GLFWwindow* window, ImGuiContext* ctx) { g_ContextMap.push_back(ImGui_ImplGlfw_WindowToContext{ window, ctx }); }
  190. static void ImGui_ImplGlfw_ContextMap_Remove(GLFWwindow* window) { for (ImGui_ImplGlfw_WindowToContext& entry : g_ContextMap) if (entry.Window == window) { g_ContextMap.erase_unsorted(&entry); if (g_ContextMap.empty()) g_ContextMap.clear(); return; } }
  191. static ImGuiContext* ImGui_ImplGlfw_ContextMap_Get(GLFWwindow* window) { for (ImGui_ImplGlfw_WindowToContext& entry : g_ContextMap) if (entry.Window == window) return entry.Context; return nullptr; }
  192. enum GlfwClientApi
  193. {
  194. GlfwClientApi_OpenGL,
  195. GlfwClientApi_Vulkan,
  196. GlfwClientApi_Unknown, // Anything else fits here.
  197. };
  198. // GLFW data
  199. struct ImGui_ImplGlfw_Data
  200. {
  201. ImGuiContext* Context;
  202. GLFWwindow* Window;
  203. GlfwClientApi ClientApi;
  204. double Time;
  205. GLFWwindow* MouseWindow;
  206. #if GLFW_HAS_CREATECURSOR
  207. GLFWcursor* MouseCursors[ImGuiMouseCursor_COUNT];
  208. #endif
  209. bool MouseIgnoreButtonUpWaitForFocusLoss;
  210. bool MouseIgnoreButtonUp;
  211. ImVec2 LastValidMousePos;
  212. GLFWwindow* KeyOwnerWindows[GLFW_KEY_LAST];
  213. bool IsWayland;
  214. bool InstalledCallbacks;
  215. bool CallbacksChainForAllWindows;
  216. char BackendPlatformName[32];
  217. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  218. const char* CanvasSelector;
  219. #endif
  220. // Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
  221. GLFWwindowfocusfun PrevUserCallbackWindowFocus;
  222. GLFWcursorposfun PrevUserCallbackCursorPos;
  223. GLFWcursorenterfun PrevUserCallbackCursorEnter;
  224. GLFWmousebuttonfun PrevUserCallbackMousebutton;
  225. GLFWscrollfun PrevUserCallbackScroll;
  226. GLFWkeyfun PrevUserCallbackKey;
  227. GLFWcharfun PrevUserCallbackChar;
  228. GLFWmonitorfun PrevUserCallbackMonitor;
  229. #ifdef _WIN32
  230. WNDPROC PrevWndProc;
  231. #endif
  232. ImGui_ImplGlfw_Data() { memset((void*)this, 0, sizeof(*this)); }
  233. };
  234. // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
  235. // It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
  236. // FIXME: multi-context support is not well tested and probably dysfunctional in this backend.
  237. // - Because glfwPollEvents() process all windows and some events may be called outside of it, you will need to register your own callbacks
  238. // (passing install_callbacks=false in ImGui_ImplGlfw_InitXXX functions), set the current dear imgui context and then call our callbacks.
  239. // - Otherwise we may need to store a GLFWWindow* -> ImGuiContext* map and handle this in the backend, adding a little bit of extra complexity to it.
  240. // FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context.
  241. namespace ImGui { extern ImGuiIO& GetIO(ImGuiContext*); }
  242. static ImGui_ImplGlfw_Data* ImGui_ImplGlfw_GetBackendData()
  243. {
  244. // Get data for current context
  245. return ImGui::GetCurrentContext() ? (ImGui_ImplGlfw_Data*)ImGui::GetIO().BackendPlatformUserData : nullptr;
  246. }
  247. static ImGui_ImplGlfw_Data* ImGui_ImplGlfw_GetBackendData(GLFWwindow* window)
  248. {
  249. // Get data for a given GLFW window, regardless of current context (since GLFW events are sent together)
  250. ImGuiContext* ctx = ImGui_ImplGlfw_ContextMap_Get(window);
  251. return (ImGui_ImplGlfw_Data*)ImGui::GetIO(ctx).BackendPlatformUserData;
  252. }
  253. // Forward Declarations
  254. static void ImGui_ImplGlfw_UpdateMonitors();
  255. static void ImGui_ImplGlfw_InitMultiViewportSupport();
  256. static void ImGui_ImplGlfw_ShutdownMultiViewportSupport();
  257. // Functions
  258. static bool ImGui_ImplGlfw_IsWayland()
  259. {
  260. #if !GLFW_HAS_X11_OR_WAYLAND
  261. return false;
  262. #elif GLFW_HAS_GETPLATFORM
  263. return glfwGetPlatform() == GLFW_PLATFORM_WAYLAND;
  264. #else
  265. const char* version = glfwGetVersionString();
  266. if (strstr(version, "Wayland") == NULL) // e.g. Ubuntu 22.04 ships with GLFW 3.3.6 compiled without Wayland
  267. return false;
  268. #ifdef GLFW_EXPOSE_NATIVE_X11
  269. if (glfwGetX11Display() != NULL)
  270. return false;
  271. #endif
  272. return true;
  273. #endif
  274. }
  275. // Not static to allow third-party code to use that if they want to (but undocumented)
  276. ImGuiKey ImGui_ImplGlfw_KeyToImGuiKey(int keycode, int scancode);
  277. ImGuiKey ImGui_ImplGlfw_KeyToImGuiKey(int keycode, int scancode)
  278. {
  279. IM_UNUSED(scancode);
  280. switch (keycode)
  281. {
  282. case GLFW_KEY_TAB: return ImGuiKey_Tab;
  283. case GLFW_KEY_LEFT: return ImGuiKey_LeftArrow;
  284. case GLFW_KEY_RIGHT: return ImGuiKey_RightArrow;
  285. case GLFW_KEY_UP: return ImGuiKey_UpArrow;
  286. case GLFW_KEY_DOWN: return ImGuiKey_DownArrow;
  287. case GLFW_KEY_PAGE_UP: return ImGuiKey_PageUp;
  288. case GLFW_KEY_PAGE_DOWN: return ImGuiKey_PageDown;
  289. case GLFW_KEY_HOME: return ImGuiKey_Home;
  290. case GLFW_KEY_END: return ImGuiKey_End;
  291. case GLFW_KEY_INSERT: return ImGuiKey_Insert;
  292. case GLFW_KEY_DELETE: return ImGuiKey_Delete;
  293. case GLFW_KEY_BACKSPACE: return ImGuiKey_Backspace;
  294. case GLFW_KEY_SPACE: return ImGuiKey_Space;
  295. case GLFW_KEY_ENTER: return ImGuiKey_Enter;
  296. case GLFW_KEY_ESCAPE: return ImGuiKey_Escape;
  297. case GLFW_KEY_APOSTROPHE: return ImGuiKey_Apostrophe;
  298. case GLFW_KEY_COMMA: return ImGuiKey_Comma;
  299. case GLFW_KEY_MINUS: return ImGuiKey_Minus;
  300. case GLFW_KEY_PERIOD: return ImGuiKey_Period;
  301. case GLFW_KEY_SLASH: return ImGuiKey_Slash;
  302. case GLFW_KEY_SEMICOLON: return ImGuiKey_Semicolon;
  303. case GLFW_KEY_EQUAL: return ImGuiKey_Equal;
  304. case GLFW_KEY_LEFT_BRACKET: return ImGuiKey_LeftBracket;
  305. case GLFW_KEY_BACKSLASH: return ImGuiKey_Backslash;
  306. case GLFW_KEY_WORLD_1: return ImGuiKey_Oem102;
  307. case GLFW_KEY_WORLD_2: return ImGuiKey_Oem102;
  308. case GLFW_KEY_RIGHT_BRACKET: return ImGuiKey_RightBracket;
  309. case GLFW_KEY_GRAVE_ACCENT: return ImGuiKey_GraveAccent;
  310. case GLFW_KEY_CAPS_LOCK: return ImGuiKey_CapsLock;
  311. case GLFW_KEY_SCROLL_LOCK: return ImGuiKey_ScrollLock;
  312. case GLFW_KEY_NUM_LOCK: return ImGuiKey_NumLock;
  313. case GLFW_KEY_PRINT_SCREEN: return ImGuiKey_PrintScreen;
  314. case GLFW_KEY_PAUSE: return ImGuiKey_Pause;
  315. case GLFW_KEY_KP_0: return ImGuiKey_Keypad0;
  316. case GLFW_KEY_KP_1: return ImGuiKey_Keypad1;
  317. case GLFW_KEY_KP_2: return ImGuiKey_Keypad2;
  318. case GLFW_KEY_KP_3: return ImGuiKey_Keypad3;
  319. case GLFW_KEY_KP_4: return ImGuiKey_Keypad4;
  320. case GLFW_KEY_KP_5: return ImGuiKey_Keypad5;
  321. case GLFW_KEY_KP_6: return ImGuiKey_Keypad6;
  322. case GLFW_KEY_KP_7: return ImGuiKey_Keypad7;
  323. case GLFW_KEY_KP_8: return ImGuiKey_Keypad8;
  324. case GLFW_KEY_KP_9: return ImGuiKey_Keypad9;
  325. case GLFW_KEY_KP_DECIMAL: return ImGuiKey_KeypadDecimal;
  326. case GLFW_KEY_KP_DIVIDE: return ImGuiKey_KeypadDivide;
  327. case GLFW_KEY_KP_MULTIPLY: return ImGuiKey_KeypadMultiply;
  328. case GLFW_KEY_KP_SUBTRACT: return ImGuiKey_KeypadSubtract;
  329. case GLFW_KEY_KP_ADD: return ImGuiKey_KeypadAdd;
  330. case GLFW_KEY_KP_ENTER: return ImGuiKey_KeypadEnter;
  331. case GLFW_KEY_KP_EQUAL: return ImGuiKey_KeypadEqual;
  332. case GLFW_KEY_LEFT_SHIFT: return ImGuiKey_LeftShift;
  333. case GLFW_KEY_LEFT_CONTROL: return ImGuiKey_LeftCtrl;
  334. case GLFW_KEY_LEFT_ALT: return ImGuiKey_LeftAlt;
  335. case GLFW_KEY_LEFT_SUPER: return ImGuiKey_LeftSuper;
  336. case GLFW_KEY_RIGHT_SHIFT: return ImGuiKey_RightShift;
  337. case GLFW_KEY_RIGHT_CONTROL: return ImGuiKey_RightCtrl;
  338. case GLFW_KEY_RIGHT_ALT: return ImGuiKey_RightAlt;
  339. case GLFW_KEY_RIGHT_SUPER: return ImGuiKey_RightSuper;
  340. case GLFW_KEY_MENU: return ImGuiKey_Menu;
  341. case GLFW_KEY_0: return ImGuiKey_0;
  342. case GLFW_KEY_1: return ImGuiKey_1;
  343. case GLFW_KEY_2: return ImGuiKey_2;
  344. case GLFW_KEY_3: return ImGuiKey_3;
  345. case GLFW_KEY_4: return ImGuiKey_4;
  346. case GLFW_KEY_5: return ImGuiKey_5;
  347. case GLFW_KEY_6: return ImGuiKey_6;
  348. case GLFW_KEY_7: return ImGuiKey_7;
  349. case GLFW_KEY_8: return ImGuiKey_8;
  350. case GLFW_KEY_9: return ImGuiKey_9;
  351. case GLFW_KEY_A: return ImGuiKey_A;
  352. case GLFW_KEY_B: return ImGuiKey_B;
  353. case GLFW_KEY_C: return ImGuiKey_C;
  354. case GLFW_KEY_D: return ImGuiKey_D;
  355. case GLFW_KEY_E: return ImGuiKey_E;
  356. case GLFW_KEY_F: return ImGuiKey_F;
  357. case GLFW_KEY_G: return ImGuiKey_G;
  358. case GLFW_KEY_H: return ImGuiKey_H;
  359. case GLFW_KEY_I: return ImGuiKey_I;
  360. case GLFW_KEY_J: return ImGuiKey_J;
  361. case GLFW_KEY_K: return ImGuiKey_K;
  362. case GLFW_KEY_L: return ImGuiKey_L;
  363. case GLFW_KEY_M: return ImGuiKey_M;
  364. case GLFW_KEY_N: return ImGuiKey_N;
  365. case GLFW_KEY_O: return ImGuiKey_O;
  366. case GLFW_KEY_P: return ImGuiKey_P;
  367. case GLFW_KEY_Q: return ImGuiKey_Q;
  368. case GLFW_KEY_R: return ImGuiKey_R;
  369. case GLFW_KEY_S: return ImGuiKey_S;
  370. case GLFW_KEY_T: return ImGuiKey_T;
  371. case GLFW_KEY_U: return ImGuiKey_U;
  372. case GLFW_KEY_V: return ImGuiKey_V;
  373. case GLFW_KEY_W: return ImGuiKey_W;
  374. case GLFW_KEY_X: return ImGuiKey_X;
  375. case GLFW_KEY_Y: return ImGuiKey_Y;
  376. case GLFW_KEY_Z: return ImGuiKey_Z;
  377. case GLFW_KEY_F1: return ImGuiKey_F1;
  378. case GLFW_KEY_F2: return ImGuiKey_F2;
  379. case GLFW_KEY_F3: return ImGuiKey_F3;
  380. case GLFW_KEY_F4: return ImGuiKey_F4;
  381. case GLFW_KEY_F5: return ImGuiKey_F5;
  382. case GLFW_KEY_F6: return ImGuiKey_F6;
  383. case GLFW_KEY_F7: return ImGuiKey_F7;
  384. case GLFW_KEY_F8: return ImGuiKey_F8;
  385. case GLFW_KEY_F9: return ImGuiKey_F9;
  386. case GLFW_KEY_F10: return ImGuiKey_F10;
  387. case GLFW_KEY_F11: return ImGuiKey_F11;
  388. case GLFW_KEY_F12: return ImGuiKey_F12;
  389. case GLFW_KEY_F13: return ImGuiKey_F13;
  390. case GLFW_KEY_F14: return ImGuiKey_F14;
  391. case GLFW_KEY_F15: return ImGuiKey_F15;
  392. case GLFW_KEY_F16: return ImGuiKey_F16;
  393. case GLFW_KEY_F17: return ImGuiKey_F17;
  394. case GLFW_KEY_F18: return ImGuiKey_F18;
  395. case GLFW_KEY_F19: return ImGuiKey_F19;
  396. case GLFW_KEY_F20: return ImGuiKey_F20;
  397. case GLFW_KEY_F21: return ImGuiKey_F21;
  398. case GLFW_KEY_F22: return ImGuiKey_F22;
  399. case GLFW_KEY_F23: return ImGuiKey_F23;
  400. case GLFW_KEY_F24: return ImGuiKey_F24;
  401. default: return ImGuiKey_None;
  402. }
  403. }
  404. // X11 does not include current pressed/released modifier key in 'mods' flags submitted by GLFW
  405. // See https://github.com/ocornut/imgui/issues/6034 and https://github.com/glfw/glfw/issues/1630
  406. static void ImGui_ImplGlfw_UpdateKeyModifiers(ImGuiIO& io, GLFWwindow* window)
  407. {
  408. io.AddKeyEvent(ImGuiMod_Ctrl, (glfwGetKey(window, GLFW_KEY_LEFT_CONTROL) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_CONTROL) == GLFW_PRESS));
  409. io.AddKeyEvent(ImGuiMod_Shift, (glfwGetKey(window, GLFW_KEY_LEFT_SHIFT) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_SHIFT) == GLFW_PRESS));
  410. io.AddKeyEvent(ImGuiMod_Alt, (glfwGetKey(window, GLFW_KEY_LEFT_ALT) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_ALT) == GLFW_PRESS));
  411. io.AddKeyEvent(ImGuiMod_Super, (glfwGetKey(window, GLFW_KEY_LEFT_SUPER) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_SUPER) == GLFW_PRESS));
  412. }
  413. static bool ImGui_ImplGlfw_ShouldChainCallback(ImGui_ImplGlfw_Data* bd, GLFWwindow* window)
  414. {
  415. return bd->CallbacksChainForAllWindows ? true : (window == bd->Window);
  416. }
  417. void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods)
  418. {
  419. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  420. if (bd->PrevUserCallbackMousebutton != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  421. bd->PrevUserCallbackMousebutton(window, button, action, mods);
  422. // Workaround for Linux: ignore mouse up events which are following an focus loss following a viewport creation
  423. if (bd->MouseIgnoreButtonUp && action == GLFW_RELEASE)
  424. return;
  425. ImGuiIO& io = ImGui::GetIO(bd->Context);
  426. ImGui_ImplGlfw_UpdateKeyModifiers(io, window);
  427. if (button >= 0 && button < ImGuiMouseButton_COUNT)
  428. io.AddMouseButtonEvent(button, action == GLFW_PRESS);
  429. }
  430. void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset)
  431. {
  432. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  433. if (bd->PrevUserCallbackScroll != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  434. bd->PrevUserCallbackScroll(window, xoffset, yoffset);
  435. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  436. // Ignore GLFW events: will be processed in ImGui_ImplEmscripten_WheelCallback().
  437. return;
  438. #endif
  439. ImGuiIO& io = ImGui::GetIO(bd->Context);
  440. io.AddMouseWheelEvent((float)xoffset, (float)yoffset);
  441. }
  442. // FIXME: should this be baked into ImGui_ImplGlfw_KeyToImGuiKey()? then what about the values passed to io.SetKeyEventNativeData()?
  443. static int ImGui_ImplGlfw_TranslateUntranslatedKey(int key, int scancode)
  444. {
  445. #if GLFW_HAS_GETKEYNAME && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3)
  446. // GLFW 3.1+ attempts to "untranslate" keys, which goes the opposite of what every other framework does, making using lettered shortcuts difficult.
  447. // (It had reasons to do so: namely GLFW is/was more likely to be used for WASD-type game controls rather than lettered shortcuts, but IHMO the 3.1 change could have been done differently)
  448. // See https://github.com/glfw/glfw/issues/1502 for details.
  449. // Adding a workaround to undo this (so our keys are translated->untranslated->translated, likely a lossy process).
  450. // This won't cover edge cases but this is at least going to cover common cases.
  451. if (key >= GLFW_KEY_KP_0 && key <= GLFW_KEY_KP_EQUAL)
  452. return key;
  453. GLFWerrorfun prev_error_callback = glfwSetErrorCallback(nullptr);
  454. const char* key_name = glfwGetKeyName(key, scancode);
  455. glfwSetErrorCallback(prev_error_callback);
  456. #if GLFW_HAS_GETERROR && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3) // Eat errors (see #5908)
  457. (void)glfwGetError(nullptr);
  458. #endif
  459. if (key_name && key_name[0] != 0 && key_name[1] == 0)
  460. {
  461. const char char_names[] = "`-=[]\\,;\'./";
  462. const int char_keys[] = { GLFW_KEY_GRAVE_ACCENT, GLFW_KEY_MINUS, GLFW_KEY_EQUAL, GLFW_KEY_LEFT_BRACKET, GLFW_KEY_RIGHT_BRACKET, GLFW_KEY_BACKSLASH, GLFW_KEY_COMMA, GLFW_KEY_SEMICOLON, GLFW_KEY_APOSTROPHE, GLFW_KEY_PERIOD, GLFW_KEY_SLASH, 0 };
  463. IM_ASSERT(IM_ARRAYSIZE(char_names) == IM_ARRAYSIZE(char_keys));
  464. if (key_name[0] >= '0' && key_name[0] <= '9') { key = GLFW_KEY_0 + (key_name[0] - '0'); }
  465. else if (key_name[0] >= 'A' && key_name[0] <= 'Z') { key = GLFW_KEY_A + (key_name[0] - 'A'); }
  466. else if (key_name[0] >= 'a' && key_name[0] <= 'z') { key = GLFW_KEY_A + (key_name[0] - 'a'); }
  467. else if (const char* p = strchr(char_names, key_name[0])) { key = char_keys[p - char_names]; }
  468. }
  469. // if (action == GLFW_PRESS) printf("key %d scancode %d name '%s'\n", key, scancode, key_name);
  470. #else
  471. IM_UNUSED(scancode);
  472. #endif
  473. return key;
  474. }
  475. void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int keycode, int scancode, int action, int mods)
  476. {
  477. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  478. if (bd->PrevUserCallbackKey != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  479. bd->PrevUserCallbackKey(window, keycode, scancode, action, mods);
  480. if (action != GLFW_PRESS && action != GLFW_RELEASE)
  481. return;
  482. ImGuiIO& io = ImGui::GetIO(bd->Context);
  483. ImGui_ImplGlfw_UpdateKeyModifiers(io, window);
  484. if (keycode >= 0 && keycode < IM_ARRAYSIZE(bd->KeyOwnerWindows))
  485. bd->KeyOwnerWindows[keycode] = (action == GLFW_PRESS) ? window : nullptr;
  486. keycode = ImGui_ImplGlfw_TranslateUntranslatedKey(keycode, scancode);
  487. ImGuiKey imgui_key = ImGui_ImplGlfw_KeyToImGuiKey(keycode, scancode);
  488. io.AddKeyEvent(imgui_key, (action == GLFW_PRESS));
  489. io.SetKeyEventNativeData(imgui_key, keycode, scancode); // To support legacy indexing (<1.87 user code)
  490. }
  491. void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window, int focused)
  492. {
  493. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  494. if (bd->PrevUserCallbackWindowFocus != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  495. bd->PrevUserCallbackWindowFocus(window, focused);
  496. // Workaround for Linux: when losing focus with MouseIgnoreButtonUpWaitForFocusLoss set, we will temporarily ignore subsequent Mouse Up events
  497. bd->MouseIgnoreButtonUp = (bd->MouseIgnoreButtonUpWaitForFocusLoss && focused == 0);
  498. bd->MouseIgnoreButtonUpWaitForFocusLoss = false;
  499. ImGuiIO& io = ImGui::GetIO(bd->Context);
  500. io.AddFocusEvent(focused != 0);
  501. }
  502. void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window, double x, double y)
  503. {
  504. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  505. if (bd->PrevUserCallbackCursorPos != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  506. bd->PrevUserCallbackCursorPos(window, x, y);
  507. ImGuiIO& io = ImGui::GetIO(bd->Context);
  508. if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
  509. {
  510. int window_x, window_y;
  511. glfwGetWindowPos(window, &window_x, &window_y);
  512. x += window_x;
  513. y += window_y;
  514. }
  515. io.AddMousePosEvent((float)x, (float)y);
  516. bd->LastValidMousePos = ImVec2((float)x, (float)y);
  517. }
  518. // Workaround: X11 seems to send spurious Leave/Enter events which would make us lose our position,
  519. // so we back it up and restore on Leave/Enter (see https://github.com/ocornut/imgui/issues/4984)
  520. void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window, int entered)
  521. {
  522. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  523. if (bd->PrevUserCallbackCursorEnter != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  524. bd->PrevUserCallbackCursorEnter(window, entered);
  525. ImGuiIO& io = ImGui::GetIO(bd->Context);
  526. if (entered)
  527. {
  528. bd->MouseWindow = window;
  529. io.AddMousePosEvent(bd->LastValidMousePos.x, bd->LastValidMousePos.y);
  530. }
  531. else if (!entered && bd->MouseWindow == window)
  532. {
  533. bd->LastValidMousePos = io.MousePos;
  534. bd->MouseWindow = nullptr;
  535. io.AddMousePosEvent(-FLT_MAX, -FLT_MAX);
  536. }
  537. }
  538. void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c)
  539. {
  540. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  541. if (bd->PrevUserCallbackChar != nullptr && ImGui_ImplGlfw_ShouldChainCallback(bd, window))
  542. bd->PrevUserCallbackChar(window, c);
  543. ImGuiIO& io = ImGui::GetIO(bd->Context);
  544. io.AddInputCharacter(c);
  545. }
  546. void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor*, int)
  547. {
  548. // This function is technically part of the API even if we stopped using the callback, so leaving it around.
  549. }
  550. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  551. static EM_BOOL ImGui_ImplEmscripten_WheelCallback(int, const EmscriptenWheelEvent* ev, void* user_data)
  552. {
  553. // Mimic Emscripten_HandleWheel() in SDL.
  554. // Corresponding equivalent in GLFW JS emulation layer has incorrect quantizing preventing small values. See #6096
  555. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)user_data;
  556. float multiplier = 0.0f;
  557. if (ev->deltaMode == DOM_DELTA_PIXEL) { multiplier = 1.0f / 100.0f; } // 100 pixels make up a step.
  558. else if (ev->deltaMode == DOM_DELTA_LINE) { multiplier = 1.0f / 3.0f; } // 3 lines make up a step.
  559. else if (ev->deltaMode == DOM_DELTA_PAGE) { multiplier = 80.0f; } // A page makes up 80 steps.
  560. float wheel_x = ev->deltaX * -multiplier;
  561. float wheel_y = ev->deltaY * -multiplier;
  562. ImGuiIO& io = ImGui::GetIO(bd->Context);
  563. io.AddMouseWheelEvent(wheel_x, wheel_y);
  564. //IMGUI_DEBUG_LOG("[Emsc] mode %d dx: %.2f, dy: %.2f, dz: %.2f --> feed %.2f %.2f\n", (int)ev->deltaMode, ev->deltaX, ev->deltaY, ev->deltaZ, wheel_x, wheel_y);
  565. return EM_TRUE;
  566. }
  567. #endif
  568. #ifdef _WIN32
  569. static LRESULT CALLBACK ImGui_ImplGlfw_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
  570. #endif
  571. void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window)
  572. {
  573. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  574. IM_ASSERT(bd->InstalledCallbacks == false && "Callbacks already installed!");
  575. IM_ASSERT(bd->Window == window);
  576. bd->PrevUserCallbackWindowFocus = glfwSetWindowFocusCallback(window, ImGui_ImplGlfw_WindowFocusCallback);
  577. bd->PrevUserCallbackCursorEnter = glfwSetCursorEnterCallback(window, ImGui_ImplGlfw_CursorEnterCallback);
  578. bd->PrevUserCallbackCursorPos = glfwSetCursorPosCallback(window, ImGui_ImplGlfw_CursorPosCallback);
  579. bd->PrevUserCallbackMousebutton = glfwSetMouseButtonCallback(window, ImGui_ImplGlfw_MouseButtonCallback);
  580. bd->PrevUserCallbackScroll = glfwSetScrollCallback(window, ImGui_ImplGlfw_ScrollCallback);
  581. bd->PrevUserCallbackKey = glfwSetKeyCallback(window, ImGui_ImplGlfw_KeyCallback);
  582. bd->PrevUserCallbackChar = glfwSetCharCallback(window, ImGui_ImplGlfw_CharCallback);
  583. bd->PrevUserCallbackMonitor = glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
  584. bd->InstalledCallbacks = true;
  585. }
  586. void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window)
  587. {
  588. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  589. IM_ASSERT(bd->InstalledCallbacks == true && "Callbacks not installed!");
  590. IM_ASSERT(bd->Window == window);
  591. glfwSetWindowFocusCallback(window, bd->PrevUserCallbackWindowFocus);
  592. glfwSetCursorEnterCallback(window, bd->PrevUserCallbackCursorEnter);
  593. glfwSetCursorPosCallback(window, bd->PrevUserCallbackCursorPos);
  594. glfwSetMouseButtonCallback(window, bd->PrevUserCallbackMousebutton);
  595. glfwSetScrollCallback(window, bd->PrevUserCallbackScroll);
  596. glfwSetKeyCallback(window, bd->PrevUserCallbackKey);
  597. glfwSetCharCallback(window, bd->PrevUserCallbackChar);
  598. glfwSetMonitorCallback(bd->PrevUserCallbackMonitor);
  599. bd->InstalledCallbacks = false;
  600. bd->PrevUserCallbackWindowFocus = nullptr;
  601. bd->PrevUserCallbackCursorEnter = nullptr;
  602. bd->PrevUserCallbackCursorPos = nullptr;
  603. bd->PrevUserCallbackMousebutton = nullptr;
  604. bd->PrevUserCallbackScroll = nullptr;
  605. bd->PrevUserCallbackKey = nullptr;
  606. bd->PrevUserCallbackChar = nullptr;
  607. bd->PrevUserCallbackMonitor = nullptr;
  608. }
  609. // Set to 'true' to enable chaining installed callbacks for all windows (including secondary viewports created by backends or by user).
  610. // This is 'false' by default meaning we only chain callbacks for the main viewport.
  611. // We cannot set this to 'true' by default because user callbacks code may be not testing the 'window' parameter of their callback.
  612. // If you set this to 'true' your user callback code will need to make sure you are testing the 'window' parameter.
  613. void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows)
  614. {
  615. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  616. bd->CallbacksChainForAllWindows = chain_for_all_windows;
  617. }
  618. #ifdef __EMSCRIPTEN__
  619. #if EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3 >= 34020240817
  620. void ImGui_ImplGlfw_EmscriptenOpenURL(const char* url) { if (url) emscripten::glfw3::OpenURL(url); }
  621. #else
  622. EM_JS(void, ImGui_ImplGlfw_EmscriptenOpenURL, (const char* url), { url = url ? UTF8ToString(url) : null; if (url) window.open(url, '_blank'); });
  623. #endif
  624. #endif
  625. static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, GlfwClientApi client_api)
  626. {
  627. ImGuiIO& io = ImGui::GetIO();
  628. IMGUI_CHECKVERSION();
  629. IM_ASSERT(io.BackendPlatformUserData == nullptr && "Already initialized a platform backend!");
  630. //printf("GLFW_VERSION: %d.%d.%d (%d)", GLFW_VERSION_MAJOR, GLFW_VERSION_MINOR, GLFW_VERSION_REVISION, GLFW_VERSION_COMBINED);
  631. // Setup backend capabilities flags
  632. ImGui_ImplGlfw_Data* bd = IM_NEW(ImGui_ImplGlfw_Data)();
  633. snprintf(bd->BackendPlatformName, sizeof(bd->BackendPlatformName), "imgui_impl_glfw (%d)", GLFW_VERSION_COMBINED);
  634. io.BackendPlatformUserData = (void*)bd;
  635. io.BackendPlatformName = bd->BackendPlatformName;
  636. #if GLFW_HAS_CREATECURSOR
  637. io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional)
  638. #endif
  639. io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used)
  640. bool has_viewports = false;
  641. #ifndef __EMSCRIPTEN__
  642. has_viewports = true;
  643. #if GLFW_HAS_GETPLATFORM
  644. if (glfwGetPlatform() == GLFW_PLATFORM_WAYLAND)
  645. has_viewports = false;
  646. #endif
  647. if (has_viewports)
  648. io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports; // We can create multi-viewports on the Platform side (optional)
  649. #endif
  650. #if GLFW_HAS_MOUSE_PASSTHROUGH || GLFW_HAS_WINDOW_HOVERED
  651. io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can call io.AddMouseViewportEvent() with correct data (optional)
  652. #endif
  653. bd->Context = ImGui::GetCurrentContext();
  654. bd->Window = window;
  655. bd->Time = 0.0;
  656. bd->IsWayland = ImGui_ImplGlfw_IsWayland();
  657. ImGui_ImplGlfw_ContextMap_Add(window, bd->Context);
  658. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  659. #if GLFW_VERSION_COMBINED < 3300
  660. platform_io.Platform_SetClipboardTextFn = [](ImGuiContext*, const char* text) { glfwSetClipboardString(ImGui_ImplGlfw_GetBackendData()->Window, text); };
  661. platform_io.Platform_GetClipboardTextFn = [](ImGuiContext*) { return glfwGetClipboardString(ImGui_ImplGlfw_GetBackendData()->Window); };
  662. #else
  663. platform_io.Platform_SetClipboardTextFn = [](ImGuiContext*, const char* text) { glfwSetClipboardString(nullptr, text); };
  664. platform_io.Platform_GetClipboardTextFn = [](ImGuiContext*) { return glfwGetClipboardString(nullptr); };
  665. #endif
  666. #ifdef __EMSCRIPTEN__
  667. platform_io.Platform_OpenInShellFn = [](ImGuiContext*, const char* url) { ImGui_ImplGlfw_EmscriptenOpenURL(url); return true; };
  668. #endif
  669. // Create mouse cursors
  670. // (By design, on X11 cursors are user configurable and some cursors may be missing. When a cursor doesn't exist,
  671. // GLFW will emit an error which will often be printed by the app, so we temporarily disable error reporting.
  672. // Missing cursors will return nullptr and our _UpdateMouseCursor() function will use the Arrow cursor instead.)
  673. #if GLFW_HAS_CREATECURSOR
  674. GLFWerrorfun prev_error_callback = glfwSetErrorCallback(nullptr);
  675. bd->MouseCursors[ImGuiMouseCursor_Arrow] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  676. bd->MouseCursors[ImGuiMouseCursor_TextInput] = glfwCreateStandardCursor(GLFW_IBEAM_CURSOR);
  677. bd->MouseCursors[ImGuiMouseCursor_ResizeNS] = glfwCreateStandardCursor(GLFW_VRESIZE_CURSOR);
  678. bd->MouseCursors[ImGuiMouseCursor_ResizeEW] = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR);
  679. bd->MouseCursors[ImGuiMouseCursor_Hand] = glfwCreateStandardCursor(GLFW_HAND_CURSOR);
  680. #if GLFW_HAS_NEW_CURSORS
  681. bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_RESIZE_ALL_CURSOR);
  682. bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_RESIZE_NESW_CURSOR);
  683. bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_RESIZE_NWSE_CURSOR);
  684. bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_NOT_ALLOWED_CURSOR);
  685. #else
  686. bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  687. bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  688. bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  689. bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  690. #endif
  691. glfwSetErrorCallback(prev_error_callback);
  692. #endif
  693. #if GLFW_HAS_GETERROR && !defined(__EMSCRIPTEN__) // Eat errors (see #5908)
  694. (void)glfwGetError(nullptr);
  695. #endif
  696. // Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
  697. if (install_callbacks)
  698. ImGui_ImplGlfw_InstallCallbacks(window);
  699. // Update monitor a first time during init
  700. // (note: monitor callback are broken in GLFW 3.2 and earlier, see github.com/glfw/glfw/issues/784)
  701. ImGui_ImplGlfw_UpdateMonitors();
  702. glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
  703. // Set platform dependent data in viewport
  704. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  705. main_viewport->PlatformHandle = (void*)bd->Window;
  706. #ifdef _WIN32
  707. main_viewport->PlatformHandleRaw = glfwGetWin32Window(bd->Window);
  708. #elif defined(__APPLE__)
  709. main_viewport->PlatformHandleRaw = (void*)glfwGetCocoaWindow(bd->Window);
  710. #else
  711. IM_UNUSED(main_viewport);
  712. #endif
  713. if (has_viewports)
  714. ImGui_ImplGlfw_InitMultiViewportSupport();
  715. // Windows: register a WndProc hook so we can intercept some messages.
  716. #ifdef _WIN32
  717. HWND hwnd = (HWND)main_viewport->PlatformHandleRaw;
  718. ::SetPropA(hwnd, "IMGUI_BACKEND_DATA", bd);
  719. bd->PrevWndProc = (WNDPROC)::GetWindowLongPtrW(hwnd, GWLP_WNDPROC);
  720. IM_ASSERT(bd->PrevWndProc != nullptr);
  721. ::SetWindowLongPtrW((HWND)main_viewport->PlatformHandleRaw, GWLP_WNDPROC, (LONG_PTR)ImGui_ImplGlfw_WndProc);
  722. #endif
  723. // Emscripten: the same application can run on various platforms, so we detect the Apple platform at runtime
  724. // to override io.ConfigMacOSXBehaviors from its default (which is always false in Emscripten).
  725. #ifdef __EMSCRIPTEN__
  726. #if EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3 >= 34020240817
  727. if (emscripten::glfw3::IsRuntimePlatformApple())
  728. {
  729. io.ConfigMacOSXBehaviors = true;
  730. // Due to how the browser (poorly) handles the Meta Key, this line essentially disables repeats when used.
  731. // This means that Meta + V only registers a single key-press, even if the keys are held.
  732. // This is a compromise for dealing with this issue in ImGui since ImGui implements key repeat itself.
  733. // See https://github.com/pongasoft/emscripten-glfw/blob/v3.4.0.20240817/docs/Usage.md#the-problem-of-the-super-key
  734. emscripten::glfw3::SetSuperPlusKeyTimeouts(10, 10);
  735. }
  736. #endif
  737. #endif
  738. bd->ClientApi = client_api;
  739. return true;
  740. }
  741. bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks)
  742. {
  743. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_OpenGL);
  744. }
  745. bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks)
  746. {
  747. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Vulkan);
  748. }
  749. bool ImGui_ImplGlfw_InitForOther(GLFWwindow* window, bool install_callbacks)
  750. {
  751. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Unknown);
  752. }
  753. void ImGui_ImplGlfw_Shutdown()
  754. {
  755. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  756. IM_ASSERT(bd != nullptr && "No platform backend to shutdown, or already shutdown?");
  757. ImGuiIO& io = ImGui::GetIO();
  758. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  759. ImGui_ImplGlfw_ShutdownMultiViewportSupport();
  760. if (bd->InstalledCallbacks)
  761. ImGui_ImplGlfw_RestoreCallbacks(bd->Window);
  762. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  763. if (bd->CanvasSelector)
  764. emscripten_set_wheel_callback(bd->CanvasSelector, nullptr, false, nullptr);
  765. #endif
  766. #if GLFW_HAS_CREATECURSOR
  767. for (ImGuiMouseCursor cursor_n = 0; cursor_n < ImGuiMouseCursor_COUNT; cursor_n++)
  768. glfwDestroyCursor(bd->MouseCursors[cursor_n]);
  769. #endif
  770. // Windows: restore our WndProc hook
  771. #ifdef _WIN32
  772. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  773. ::SetPropA((HWND)main_viewport->PlatformHandleRaw, "IMGUI_BACKEND_DATA", nullptr);
  774. ::SetWindowLongPtrW((HWND)main_viewport->PlatformHandleRaw, GWLP_WNDPROC, (LONG_PTR)bd->PrevWndProc);
  775. bd->PrevWndProc = nullptr;
  776. #endif
  777. io.BackendPlatformName = nullptr;
  778. io.BackendPlatformUserData = nullptr;
  779. io.BackendFlags &= ~(ImGuiBackendFlags_HasMouseCursors | ImGuiBackendFlags_HasSetMousePos | ImGuiBackendFlags_HasGamepad | ImGuiBackendFlags_PlatformHasViewports | ImGuiBackendFlags_HasMouseHoveredViewport);
  780. platform_io.ClearPlatformHandlers();
  781. ImGui_ImplGlfw_ContextMap_Remove(bd->Window);
  782. IM_DELETE(bd);
  783. }
  784. static void ImGui_ImplGlfw_UpdateMouseData()
  785. {
  786. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  787. ImGuiIO& io = ImGui::GetIO();
  788. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  789. ImGuiID mouse_viewport_id = 0;
  790. const ImVec2 mouse_pos_prev = io.MousePos;
  791. for (int n = 0; n < platform_io.Viewports.Size; n++)
  792. {
  793. ImGuiViewport* viewport = platform_io.Viewports[n];
  794. GLFWwindow* window = (GLFWwindow*)viewport->PlatformHandle;
  795. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  796. const bool is_window_focused = true;
  797. #else
  798. const bool is_window_focused = glfwGetWindowAttrib(window, GLFW_FOCUSED) != 0;
  799. #endif
  800. if (is_window_focused)
  801. {
  802. // (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when io.ConfigNavMoveSetMousePos is enabled by user)
  803. // When multi-viewports are enabled, all Dear ImGui positions are same as OS positions.
  804. if (io.WantSetMousePos)
  805. glfwSetCursorPos(window, (double)(mouse_pos_prev.x - viewport->Pos.x), (double)(mouse_pos_prev.y - viewport->Pos.y));
  806. // (Optional) Fallback to provide mouse position when focused (ImGui_ImplGlfw_CursorPosCallback already provides this when hovered or captured)
  807. if (bd->MouseWindow == nullptr)
  808. {
  809. double mouse_x, mouse_y;
  810. glfwGetCursorPos(window, &mouse_x, &mouse_y);
  811. if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
  812. {
  813. // 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)
  814. // 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)
  815. int window_x, window_y;
  816. glfwGetWindowPos(window, &window_x, &window_y);
  817. mouse_x += window_x;
  818. mouse_y += window_y;
  819. }
  820. bd->LastValidMousePos = ImVec2((float)mouse_x, (float)mouse_y);
  821. io.AddMousePosEvent((float)mouse_x, (float)mouse_y);
  822. }
  823. }
  824. // (Optional) When using multiple viewports: call io.AddMouseViewportEvent() with the viewport the OS mouse cursor is hovering.
  825. // If ImGuiBackendFlags_HasMouseHoveredViewport is not set by the backend, Dear imGui will ignore this field and infer the information using its flawed heuristic.
  826. // - [X] GLFW >= 3.3 backend ON WINDOWS ONLY does correctly ignore viewports with the _NoInputs flag (since we implement hit via our WndProc hook)
  827. // On other platforms we rely on the library fallbacking to its own search when reporting a viewport with _NoInputs flag.
  828. // - [!] GLFW <= 3.2 backend CANNOT correctly ignore viewports with the _NoInputs flag, and CANNOT reported Hovered Viewport because of mouse capture.
  829. // Some backend are not able to handle that correctly. If a backend report an hovered viewport that has the _NoInputs flag (e.g. when dragging a window
  830. // for docking, the viewport has the _NoInputs flag in order to allow us to find the viewport under), then Dear ImGui is forced to ignore the value reported
  831. // by the backend, and use its flawed heuristic to guess the viewport behind.
  832. // - [X] GLFW backend correctly reports this regardless of another viewport behind focused and dragged from (we need this to find a useful drag and drop target).
  833. // FIXME: This is currently only correct on Win32. See what we do below with the WM_NCHITTEST, missing an equivalent for other systems.
  834. // See https://github.com/glfw/glfw/issues/1236 if you want to help in making this a GLFW feature.
  835. #if GLFW_HAS_MOUSE_PASSTHROUGH
  836. const bool window_no_input = (viewport->Flags & ImGuiViewportFlags_NoInputs) != 0;
  837. glfwSetWindowAttrib(window, GLFW_MOUSE_PASSTHROUGH, window_no_input);
  838. #endif
  839. #if GLFW_HAS_MOUSE_PASSTHROUGH || GLFW_HAS_WINDOW_HOVERED
  840. if (glfwGetWindowAttrib(window, GLFW_HOVERED))
  841. mouse_viewport_id = viewport->ID;
  842. #else
  843. // We cannot use bd->MouseWindow maintained from CursorEnter/Leave callbacks, because it is locked to the window capturing mouse.
  844. #endif
  845. }
  846. if (io.BackendFlags & ImGuiBackendFlags_HasMouseHoveredViewport)
  847. io.AddMouseViewportEvent(mouse_viewport_id);
  848. }
  849. static void ImGui_ImplGlfw_UpdateMouseCursor()
  850. {
  851. ImGuiIO& io = ImGui::GetIO();
  852. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  853. if ((io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) || glfwGetInputMode(bd->Window, GLFW_CURSOR) == GLFW_CURSOR_DISABLED)
  854. return;
  855. ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor();
  856. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  857. for (int n = 0; n < platform_io.Viewports.Size; n++)
  858. {
  859. GLFWwindow* window = (GLFWwindow*)platform_io.Viewports[n]->PlatformHandle;
  860. if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor)
  861. {
  862. // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor
  863. glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN);
  864. }
  865. else
  866. {
  867. // Show OS mouse cursor
  868. // FIXME-PLATFORM: Unfocused windows seems to fail changing the mouse cursor with GLFW 3.2, but 3.3 works here.
  869. #if GLFW_HAS_CREATECURSOR
  870. glfwSetCursor(window, bd->MouseCursors[imgui_cursor] ? bd->MouseCursors[imgui_cursor] : bd->MouseCursors[ImGuiMouseCursor_Arrow]);
  871. #endif
  872. glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
  873. }
  874. }
  875. }
  876. // Update gamepad inputs
  877. static inline float Saturate(float v) { return v < 0.0f ? 0.0f : v > 1.0f ? 1.0f : v; }
  878. static void ImGui_ImplGlfw_UpdateGamepads()
  879. {
  880. ImGuiIO& io = ImGui::GetIO();
  881. if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs, but see #8075
  882. return;
  883. io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
  884. #if GLFW_HAS_GAMEPAD_API && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3)
  885. GLFWgamepadstate gamepad;
  886. if (!glfwGetGamepadState(GLFW_JOYSTICK_1, &gamepad))
  887. return;
  888. #define MAP_BUTTON(KEY_NO, BUTTON_NO, _UNUSED) do { io.AddKeyEvent(KEY_NO, gamepad.buttons[BUTTON_NO] != 0); } while (0)
  889. #define MAP_ANALOG(KEY_NO, AXIS_NO, _UNUSED, V0, V1) do { float v = gamepad.axes[AXIS_NO]; v = (v - V0) / (V1 - V0); io.AddKeyAnalogEvent(KEY_NO, v > 0.10f, Saturate(v)); } while (0)
  890. #else
  891. int axes_count = 0, buttons_count = 0;
  892. const float* axes = glfwGetJoystickAxes(GLFW_JOYSTICK_1, &axes_count);
  893. const unsigned char* buttons = glfwGetJoystickButtons(GLFW_JOYSTICK_1, &buttons_count);
  894. if (axes_count == 0 || buttons_count == 0)
  895. return;
  896. #define MAP_BUTTON(KEY_NO, _UNUSED, BUTTON_NO) do { io.AddKeyEvent(KEY_NO, (buttons_count > BUTTON_NO && buttons[BUTTON_NO] == GLFW_PRESS)); } while (0)
  897. #define MAP_ANALOG(KEY_NO, _UNUSED, AXIS_NO, V0, V1) do { float v = (axes_count > AXIS_NO) ? axes[AXIS_NO] : V0; v = (v - V0) / (V1 - V0); io.AddKeyAnalogEvent(KEY_NO, v > 0.10f, Saturate(v)); } while (0)
  898. #endif
  899. io.BackendFlags |= ImGuiBackendFlags_HasGamepad;
  900. MAP_BUTTON(ImGuiKey_GamepadStart, GLFW_GAMEPAD_BUTTON_START, 7);
  901. MAP_BUTTON(ImGuiKey_GamepadBack, GLFW_GAMEPAD_BUTTON_BACK, 6);
  902. MAP_BUTTON(ImGuiKey_GamepadFaceLeft, GLFW_GAMEPAD_BUTTON_X, 2); // Xbox X, PS Square
  903. MAP_BUTTON(ImGuiKey_GamepadFaceRight, GLFW_GAMEPAD_BUTTON_B, 1); // Xbox B, PS Circle
  904. MAP_BUTTON(ImGuiKey_GamepadFaceUp, GLFW_GAMEPAD_BUTTON_Y, 3); // Xbox Y, PS Triangle
  905. MAP_BUTTON(ImGuiKey_GamepadFaceDown, GLFW_GAMEPAD_BUTTON_A, 0); // Xbox A, PS Cross
  906. MAP_BUTTON(ImGuiKey_GamepadDpadLeft, GLFW_GAMEPAD_BUTTON_DPAD_LEFT, 13);
  907. MAP_BUTTON(ImGuiKey_GamepadDpadRight, GLFW_GAMEPAD_BUTTON_DPAD_RIGHT, 11);
  908. MAP_BUTTON(ImGuiKey_GamepadDpadUp, GLFW_GAMEPAD_BUTTON_DPAD_UP, 10);
  909. MAP_BUTTON(ImGuiKey_GamepadDpadDown, GLFW_GAMEPAD_BUTTON_DPAD_DOWN, 12);
  910. MAP_BUTTON(ImGuiKey_GamepadL1, GLFW_GAMEPAD_BUTTON_LEFT_BUMPER, 4);
  911. MAP_BUTTON(ImGuiKey_GamepadR1, GLFW_GAMEPAD_BUTTON_RIGHT_BUMPER, 5);
  912. MAP_ANALOG(ImGuiKey_GamepadL2, GLFW_GAMEPAD_AXIS_LEFT_TRIGGER, 4, -0.75f, +1.0f);
  913. MAP_ANALOG(ImGuiKey_GamepadR2, GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER, 5, -0.75f, +1.0f);
  914. MAP_BUTTON(ImGuiKey_GamepadL3, GLFW_GAMEPAD_BUTTON_LEFT_THUMB, 8);
  915. MAP_BUTTON(ImGuiKey_GamepadR3, GLFW_GAMEPAD_BUTTON_RIGHT_THUMB, 9);
  916. MAP_ANALOG(ImGuiKey_GamepadLStickLeft, GLFW_GAMEPAD_AXIS_LEFT_X, 0, -0.25f, -1.0f);
  917. MAP_ANALOG(ImGuiKey_GamepadLStickRight, GLFW_GAMEPAD_AXIS_LEFT_X, 0, +0.25f, +1.0f);
  918. MAP_ANALOG(ImGuiKey_GamepadLStickUp, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, -0.25f, -1.0f);
  919. MAP_ANALOG(ImGuiKey_GamepadLStickDown, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, +0.25f, +1.0f);
  920. MAP_ANALOG(ImGuiKey_GamepadRStickLeft, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, -0.25f, -1.0f);
  921. MAP_ANALOG(ImGuiKey_GamepadRStickRight, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, +0.25f, +1.0f);
  922. MAP_ANALOG(ImGuiKey_GamepadRStickUp, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, -0.25f, -1.0f);
  923. MAP_ANALOG(ImGuiKey_GamepadRStickDown, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, +0.25f, +1.0f);
  924. #undef MAP_BUTTON
  925. #undef MAP_ANALOG
  926. }
  927. static void ImGui_ImplGlfw_UpdateMonitors()
  928. {
  929. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  930. int monitors_count = 0;
  931. GLFWmonitor** glfw_monitors = glfwGetMonitors(&monitors_count);
  932. if (monitors_count == 0) // Preserve existing monitor list if there are none. Happens on macOS sleeping (#5683)
  933. return;
  934. platform_io.Monitors.resize(0);
  935. for (int n = 0; n < monitors_count; n++)
  936. {
  937. ImGuiPlatformMonitor monitor;
  938. int x, y;
  939. glfwGetMonitorPos(glfw_monitors[n], &x, &y);
  940. const GLFWvidmode* vid_mode = glfwGetVideoMode(glfw_monitors[n]);
  941. if (vid_mode == nullptr)
  942. continue; // Failed to get Video mode (e.g. Emscripten does not support this function)
  943. monitor.MainPos = monitor.WorkPos = ImVec2((float)x, (float)y);
  944. monitor.MainSize = monitor.WorkSize = ImVec2((float)vid_mode->width, (float)vid_mode->height);
  945. #if GLFW_HAS_MONITOR_WORK_AREA
  946. int w, h;
  947. glfwGetMonitorWorkarea(glfw_monitors[n], &x, &y, &w, &h);
  948. if (w > 0 && h > 0) // Workaround a small GLFW issue reporting zero on monitor changes: https://github.com/glfw/glfw/pull/1761
  949. {
  950. monitor.WorkPos = ImVec2((float)x, (float)y);
  951. monitor.WorkSize = ImVec2((float)w, (float)h);
  952. }
  953. #endif
  954. float scale = ImGui_ImplGlfw_GetContentScaleForMonitor(glfw_monitors[n]);
  955. if (scale == 0.0f)
  956. continue; // Some accessibility applications are declaring virtual monitors with a DPI of 0, see #7902.
  957. monitor.DpiScale = scale;
  958. monitor.PlatformHandle = (void*)glfw_monitors[n]; // [...] GLFW doc states: "guaranteed to be valid only until the monitor configuration changes"
  959. platform_io.Monitors.push_back(monitor);
  960. }
  961. }
  962. // - On Windows the process needs to be marked DPI-aware!! SDL2 doesn't do it by default. You can call ::SetProcessDPIAware() or call ImGui_ImplWin32_EnableDpiAwareness() from Win32 backend.
  963. // - Apple platforms use FramebufferScale so we always return 1.0f.
  964. // - Some accessibility applications are declaring virtual monitors with a DPI of 0.0f, see #7902. We preserve this value for caller to handle.
  965. float ImGui_ImplGlfw_GetContentScaleForWindow(GLFWwindow* window)
  966. {
  967. #if GLFW_HAS_X11_OR_WAYLAND
  968. if (ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window))
  969. if (bd->IsWayland)
  970. return 1.0f;
  971. #endif
  972. #if GLFW_HAS_PER_MONITOR_DPI && !(defined(__APPLE__) || defined(__EMSCRIPTEN__) || defined(__ANDROID__))
  973. float x_scale, y_scale;
  974. glfwGetWindowContentScale(window, &x_scale, &y_scale);
  975. return x_scale;
  976. #else
  977. IM_UNUSED(window);
  978. return 1.0f;
  979. #endif
  980. }
  981. float ImGui_ImplGlfw_GetContentScaleForMonitor(GLFWmonitor* monitor)
  982. {
  983. #if GLFW_HAS_X11_OR_WAYLAND
  984. if (ImGui_ImplGlfw_IsWayland()) // We can't access our bd->IsWayland cache for a monitor.
  985. return 1.0f;
  986. #endif
  987. #if GLFW_HAS_PER_MONITOR_DPI && !(defined(__APPLE__) || defined(__EMSCRIPTEN__) || defined(__ANDROID__))
  988. float x_scale, y_scale;
  989. glfwGetMonitorContentScale(monitor, &x_scale, &y_scale);
  990. return x_scale;
  991. #else
  992. IM_UNUSED(monitor);
  993. return 1.0f;
  994. #endif
  995. }
  996. static void ImGui_ImplGlfw_GetWindowSizeAndFramebufferScale(GLFWwindow* window, ImVec2* out_size, ImVec2* out_framebuffer_scale)
  997. {
  998. int w, h;
  999. int display_w, display_h;
  1000. glfwGetWindowSize(window, &w, &h);
  1001. glfwGetFramebufferSize(window, &display_w, &display_h);
  1002. float fb_scale_x = (w > 0) ? (float)display_w / (float)w : 1.0f;
  1003. float fb_scale_y = (h > 0) ? (float)display_h / (float)h : 1.0f;
  1004. #if GLFW_HAS_X11_OR_WAYLAND
  1005. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData(window);
  1006. if (!bd->IsWayland)
  1007. fb_scale_x = fb_scale_y = 1.0f;
  1008. #endif
  1009. if (out_size != nullptr)
  1010. *out_size = ImVec2((float)w, (float)h);
  1011. if (out_framebuffer_scale != nullptr)
  1012. *out_framebuffer_scale = ImVec2(fb_scale_x, fb_scale_y);
  1013. }
  1014. void ImGui_ImplGlfw_NewFrame()
  1015. {
  1016. ImGuiIO& io = ImGui::GetIO();
  1017. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1018. IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplGlfw_InitForXXX()?");
  1019. // Setup main viewport size (every frame to accommodate for window resizing)
  1020. ImGui_ImplGlfw_GetWindowSizeAndFramebufferScale(bd->Window, &io.DisplaySize, &io.DisplayFramebufferScale);
  1021. ImGui_ImplGlfw_UpdateMonitors();
  1022. // Setup time step
  1023. // (Accept glfwGetTime() not returning a monotonically increasing value. Seems to happens on disconnecting peripherals and probably on VMs and Emscripten, see #6491, #6189, #6114, #3644)
  1024. double current_time = glfwGetTime();
  1025. if (current_time <= bd->Time)
  1026. current_time = bd->Time + 0.00001f;
  1027. io.DeltaTime = bd->Time > 0.0 ? (float)(current_time - bd->Time) : (float)(1.0f / 60.0f);
  1028. bd->Time = current_time;
  1029. bd->MouseIgnoreButtonUp = false;
  1030. ImGui_ImplGlfw_UpdateMouseData();
  1031. ImGui_ImplGlfw_UpdateMouseCursor();
  1032. // Update game controllers (if enabled and available)
  1033. ImGui_ImplGlfw_UpdateGamepads();
  1034. }
  1035. // GLFW doesn't provide a portable sleep function
  1036. void ImGui_ImplGlfw_Sleep(int milliseconds)
  1037. {
  1038. #ifdef _WIN32
  1039. ::Sleep(milliseconds);
  1040. #else
  1041. usleep(milliseconds * 1000);
  1042. #endif
  1043. }
  1044. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  1045. static EM_BOOL ImGui_ImplGlfw_OnCanvasSizeChange(int event_type, const EmscriptenUiEvent* event, void* user_data)
  1046. {
  1047. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)user_data;
  1048. double canvas_width, canvas_height;
  1049. emscripten_get_element_css_size(bd->CanvasSelector, &canvas_width, &canvas_height);
  1050. glfwSetWindowSize(bd->Window, (int)canvas_width, (int)canvas_height);
  1051. return true;
  1052. }
  1053. static EM_BOOL ImGui_ImplEmscripten_FullscreenChangeCallback(int event_type, const EmscriptenFullscreenChangeEvent* event, void* user_data)
  1054. {
  1055. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)user_data;
  1056. double canvas_width, canvas_height;
  1057. emscripten_get_element_css_size(bd->CanvasSelector, &canvas_width, &canvas_height);
  1058. glfwSetWindowSize(bd->Window, (int)canvas_width, (int)canvas_height);
  1059. return true;
  1060. }
  1061. // 'canvas_selector' is a CSS selector. The event listener is applied to the first element that matches the query.
  1062. // STRING MUST PERSIST FOR THE APPLICATION DURATION. PLEASE USE A STRING LITERAL OR ENSURE POINTER WILL STAY VALID.
  1063. void ImGui_ImplGlfw_InstallEmscriptenCallbacks(GLFWwindow*, const char* canvas_selector)
  1064. {
  1065. IM_ASSERT(canvas_selector != nullptr);
  1066. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1067. IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplGlfw_InitForXXX()?");
  1068. bd->CanvasSelector = canvas_selector;
  1069. emscripten_set_resize_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, bd, false, ImGui_ImplGlfw_OnCanvasSizeChange);
  1070. emscripten_set_fullscreenchange_callback(EMSCRIPTEN_EVENT_TARGET_DOCUMENT, bd, false, ImGui_ImplEmscripten_FullscreenChangeCallback);
  1071. // Change the size of the GLFW window according to the size of the canvas
  1072. ImGui_ImplGlfw_OnCanvasSizeChange(EMSCRIPTEN_EVENT_RESIZE, {}, bd);
  1073. // Register Emscripten Wheel callback to workaround issue in Emscripten GLFW Emulation (#6096)
  1074. // We intentionally do not check 'if (install_callbacks)' here, as some users may set it to false and call GLFW callback themselves.
  1075. // FIXME: May break chaining in case user registered their own Emscripten callback?
  1076. emscripten_set_wheel_callback(bd->CanvasSelector, bd, false, ImGui_ImplEmscripten_WheelCallback);
  1077. }
  1078. #elif defined(EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3)
  1079. // When using --use-port=contrib.glfw3 for the GLFW implementation, you can override the behavior of this call
  1080. // by invoking emscripten_glfw_make_canvas_resizable afterward.
  1081. // See https://github.com/pongasoft/emscripten-glfw/blob/master/docs/Usage.md#how-to-make-the-canvas-resizable-by-the-user for an explanation
  1082. void ImGui_ImplGlfw_InstallEmscriptenCallbacks(GLFWwindow* window, const char* canvas_selector)
  1083. {
  1084. GLFWwindow* w = (GLFWwindow*)(EM_ASM_INT({ return Module.glfwGetWindow(UTF8ToString($0)); }, canvas_selector));
  1085. IM_ASSERT(window == w); // Sanity check
  1086. IM_UNUSED(w);
  1087. emscripten_glfw_make_canvas_resizable(window, "window", nullptr);
  1088. }
  1089. #endif // #ifdef EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3
  1090. //--------------------------------------------------------------------------------------------------------
  1091. // MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT
  1092. // This is an _advanced_ and _optional_ feature, allowing the backend to create and handle multiple viewports simultaneously.
  1093. // 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..
  1094. //--------------------------------------------------------------------------------------------------------
  1095. // Helper structure we store in the void* PlatformUserData field of each ImGuiViewport to easily retrieve our backend data.
  1096. struct ImGui_ImplGlfw_ViewportData
  1097. {
  1098. GLFWwindow* Window; // Stored in ImGuiViewport::PlatformHandle
  1099. bool WindowOwned;
  1100. int IgnoreWindowPosEventFrame;
  1101. int IgnoreWindowSizeEventFrame;
  1102. #ifdef _WIN32
  1103. WNDPROC PrevWndProc;
  1104. #endif
  1105. ImGui_ImplGlfw_ViewportData() { memset((void*)this, 0, sizeof(*this)); IgnoreWindowSizeEventFrame = IgnoreWindowPosEventFrame = -1; }
  1106. ~ImGui_ImplGlfw_ViewportData() { IM_ASSERT(Window == nullptr); }
  1107. };
  1108. static void ImGui_ImplGlfw_WindowCloseCallback(GLFWwindow* window)
  1109. {
  1110. if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
  1111. viewport->PlatformRequestClose = true;
  1112. }
  1113. // GLFW may dispatch window pos/size events after calling glfwSetWindowPos()/glfwSetWindowSize().
  1114. // However: depending on the platform the callback may be invoked at different time:
  1115. // - on Windows it appears to be called within the glfwSetWindowPos()/glfwSetWindowSize() call
  1116. // - on Linux it is queued and invoked during glfwPollEvents()
  1117. // Because the event doesn't always fire on glfwSetWindowXXX() we use a frame counter tag to only
  1118. // ignore recent glfwSetWindowXXX() calls.
  1119. static void ImGui_ImplGlfw_WindowPosCallback(GLFWwindow* window, int, int)
  1120. {
  1121. if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
  1122. {
  1123. if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
  1124. {
  1125. bool ignore_event = (ImGui::GetFrameCount() <= vd->IgnoreWindowPosEventFrame + 1);
  1126. //data->IgnoreWindowPosEventFrame = -1;
  1127. if (ignore_event)
  1128. return;
  1129. }
  1130. viewport->PlatformRequestMove = true;
  1131. }
  1132. }
  1133. static void ImGui_ImplGlfw_WindowSizeCallback(GLFWwindow* window, int, int)
  1134. {
  1135. if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window))
  1136. {
  1137. if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
  1138. {
  1139. bool ignore_event = (ImGui::GetFrameCount() <= vd->IgnoreWindowSizeEventFrame + 1);
  1140. //data->IgnoreWindowSizeEventFrame = -1;
  1141. if (ignore_event)
  1142. return;
  1143. }
  1144. viewport->PlatformRequestResize = true;
  1145. }
  1146. }
  1147. #if !defined(__APPLE__) && !defined(_WIN32) && !defined(__EMSCRIPTEN__) && GLFW_HAS_GETPLATFORM
  1148. #define IMGUI_GLFW_HAS_SETWINDOWFLOATING
  1149. static void ImGui_ImplGlfw_SetWindowFloating(GLFWwindow* window)
  1150. {
  1151. #ifdef GLFW_EXPOSE_NATIVE_X11
  1152. if (glfwGetPlatform() == GLFW_PLATFORM_X11)
  1153. {
  1154. Display* display = glfwGetX11Display();
  1155. Window xwindow = glfwGetX11Window(window);
  1156. Atom wm_type = XInternAtom(display, "_NET_WM_WINDOW_TYPE", False);
  1157. Atom wm_type_dialog = XInternAtom(display, "_NET_WM_WINDOW_TYPE_DIALOG", False);
  1158. XChangeProperty(display, xwindow, wm_type, XA_ATOM, 32, PropModeReplace, (unsigned char*)&wm_type_dialog, 1);
  1159. XSetWindowAttributes attrs;
  1160. attrs.override_redirect = False;
  1161. XChangeWindowAttributes(display, xwindow, CWOverrideRedirect, &attrs);
  1162. XFlush(display);
  1163. }
  1164. #endif // GLFW_EXPOSE_NATIVE_X11
  1165. #ifdef GLFW_EXPOSE_NATIVE_WAYLAND
  1166. // FIXME: Help needed, see #8884, #8474 for discussions about this.
  1167. #endif // GLFW_EXPOSE_NATIVE_X11
  1168. }
  1169. #endif // IMGUI_GLFW_HAS_SETWINDOWFLOATING
  1170. static void ImGui_ImplGlfw_CreateWindow(ImGuiViewport* viewport)
  1171. {
  1172. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1173. ImGui_ImplGlfw_ViewportData* vd = IM_NEW(ImGui_ImplGlfw_ViewportData)();
  1174. viewport->PlatformUserData = vd;
  1175. // Workaround for Linux: ignore mouse up events corresponding to losing focus of the previously focused window (#7733, #3158, #7922)
  1176. #ifdef __linux__
  1177. bd->MouseIgnoreButtonUpWaitForFocusLoss = true;
  1178. #endif
  1179. // GLFW 3.2 unfortunately always set focus on glfwCreateWindow() if GLFW_VISIBLE is set, regardless of GLFW_FOCUSED
  1180. // With GLFW 3.3, the hint GLFW_FOCUS_ON_SHOW fixes this problem
  1181. glfwWindowHint(GLFW_VISIBLE, false);
  1182. glfwWindowHint(GLFW_FOCUSED, false);
  1183. #if GLFW_HAS_FOCUS_ON_SHOW
  1184. glfwWindowHint(GLFW_FOCUS_ON_SHOW, false);
  1185. #endif
  1186. glfwWindowHint(GLFW_DECORATED, (viewport->Flags & ImGuiViewportFlags_NoDecoration) ? false : true);
  1187. #if GLFW_HAS_WINDOW_TOPMOST
  1188. glfwWindowHint(GLFW_FLOATING, (viewport->Flags & ImGuiViewportFlags_TopMost) ? true : false);
  1189. #endif
  1190. GLFWwindow* share_window = (bd->ClientApi == GlfwClientApi_OpenGL) ? bd->Window : nullptr;
  1191. vd->Window = glfwCreateWindow((int)viewport->Size.x, (int)viewport->Size.y, "No Title Yet", nullptr, share_window);
  1192. vd->WindowOwned = true;
  1193. ImGui_ImplGlfw_ContextMap_Add(vd->Window, bd->Context);
  1194. viewport->PlatformHandle = (void*)vd->Window;
  1195. #ifdef IMGUI_GLFW_HAS_SETWINDOWFLOATING
  1196. ImGui_ImplGlfw_SetWindowFloating(vd->Window);
  1197. #endif
  1198. #ifdef _WIN32
  1199. viewport->PlatformHandleRaw = glfwGetWin32Window(vd->Window);
  1200. ::SetPropA((HWND)viewport->PlatformHandleRaw, "IMGUI_BACKEND_DATA", bd);
  1201. #elif defined(__APPLE__)
  1202. viewport->PlatformHandleRaw = (void*)glfwGetCocoaWindow(vd->Window);
  1203. #endif
  1204. glfwSetWindowPos(vd->Window, (int)viewport->Pos.x, (int)viewport->Pos.y);
  1205. // Install GLFW callbacks for secondary viewports
  1206. glfwSetWindowFocusCallback(vd->Window, ImGui_ImplGlfw_WindowFocusCallback);
  1207. glfwSetCursorEnterCallback(vd->Window, ImGui_ImplGlfw_CursorEnterCallback);
  1208. glfwSetCursorPosCallback(vd->Window, ImGui_ImplGlfw_CursorPosCallback);
  1209. glfwSetMouseButtonCallback(vd->Window, ImGui_ImplGlfw_MouseButtonCallback);
  1210. glfwSetScrollCallback(vd->Window, ImGui_ImplGlfw_ScrollCallback);
  1211. glfwSetKeyCallback(vd->Window, ImGui_ImplGlfw_KeyCallback);
  1212. glfwSetCharCallback(vd->Window, ImGui_ImplGlfw_CharCallback);
  1213. glfwSetWindowCloseCallback(vd->Window, ImGui_ImplGlfw_WindowCloseCallback);
  1214. glfwSetWindowPosCallback(vd->Window, ImGui_ImplGlfw_WindowPosCallback);
  1215. glfwSetWindowSizeCallback(vd->Window, ImGui_ImplGlfw_WindowSizeCallback);
  1216. if (bd->ClientApi == GlfwClientApi_OpenGL)
  1217. {
  1218. glfwMakeContextCurrent(vd->Window);
  1219. glfwSwapInterval(0);
  1220. }
  1221. }
  1222. static void ImGui_ImplGlfw_DestroyWindow(ImGuiViewport* viewport)
  1223. {
  1224. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1225. if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
  1226. {
  1227. if (vd->WindowOwned)
  1228. {
  1229. #if !GLFW_HAS_MOUSE_PASSTHROUGH && GLFW_HAS_WINDOW_HOVERED && defined(_WIN32)
  1230. HWND hwnd = (HWND)viewport->PlatformHandleRaw;
  1231. ::RemovePropA(hwnd, "IMGUI_VIEWPORT");
  1232. #endif
  1233. // Release any keys that were pressed in the window being destroyed and are still held down,
  1234. // because we will not receive any release events after window is destroyed.
  1235. for (int i = 0; i < IM_ARRAYSIZE(bd->KeyOwnerWindows); i++)
  1236. if (bd->KeyOwnerWindows[i] == vd->Window)
  1237. ImGui_ImplGlfw_KeyCallback(vd->Window, i, 0, GLFW_RELEASE, 0); // Later params are only used for main viewport, on which this function is never called.
  1238. ImGui_ImplGlfw_ContextMap_Remove(vd->Window);
  1239. glfwDestroyWindow(vd->Window);
  1240. }
  1241. vd->Window = nullptr;
  1242. IM_DELETE(vd);
  1243. }
  1244. viewport->PlatformUserData = viewport->PlatformHandle = nullptr;
  1245. }
  1246. static void ImGui_ImplGlfw_ShowWindow(ImGuiViewport* viewport)
  1247. {
  1248. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1249. #if defined(_WIN32)
  1250. // GLFW hack: Hide icon from task bar
  1251. HWND hwnd = (HWND)viewport->PlatformHandleRaw;
  1252. if (viewport->Flags & ImGuiViewportFlags_NoTaskBarIcon)
  1253. {
  1254. LONG ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE);
  1255. ex_style &= ~WS_EX_APPWINDOW;
  1256. ex_style |= WS_EX_TOOLWINDOW;
  1257. ::SetWindowLong(hwnd, GWL_EXSTYLE, ex_style);
  1258. }
  1259. // GLFW hack: install WndProc for mouse source event and WM_NCHITTEST message handler.
  1260. ::SetPropA(hwnd, "IMGUI_VIEWPORT", viewport);
  1261. vd->PrevWndProc = (WNDPROC)::GetWindowLongPtrW(hwnd, GWLP_WNDPROC);
  1262. ::SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (LONG_PTR)ImGui_ImplGlfw_WndProc);
  1263. #if !GLFW_HAS_FOCUS_ON_SHOW
  1264. // GLFW hack: GLFW 3.2 has a bug where glfwShowWindow() also activates/focus the window.
  1265. // The fix was pushed to GLFW repository on 2018/01/09 and should be included in GLFW 3.3 via a GLFW_FOCUS_ON_SHOW window attribute.
  1266. // See https://github.com/glfw/glfw/issues/1189
  1267. // FIXME-VIEWPORT: Implement same work-around for Linux/OSX in the meanwhile.
  1268. if (viewport->Flags & ImGuiViewportFlags_NoFocusOnAppearing)
  1269. {
  1270. ::ShowWindow(hwnd, SW_SHOWNA);
  1271. return;
  1272. }
  1273. #endif
  1274. #endif
  1275. glfwShowWindow(vd->Window);
  1276. }
  1277. static ImVec2 ImGui_ImplGlfw_GetWindowPos(ImGuiViewport* viewport)
  1278. {
  1279. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1280. int x = 0, y = 0;
  1281. glfwGetWindowPos(vd->Window, &x, &y);
  1282. return ImVec2((float)x, (float)y);
  1283. }
  1284. static void ImGui_ImplGlfw_SetWindowPos(ImGuiViewport* viewport, ImVec2 pos)
  1285. {
  1286. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1287. vd->IgnoreWindowPosEventFrame = ImGui::GetFrameCount();
  1288. glfwSetWindowPos(vd->Window, (int)pos.x, (int)pos.y);
  1289. }
  1290. static ImVec2 ImGui_ImplGlfw_GetWindowSize(ImGuiViewport* viewport)
  1291. {
  1292. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1293. int w = 0, h = 0;
  1294. glfwGetWindowSize(vd->Window, &w, &h);
  1295. return ImVec2((float)w, (float)h);
  1296. }
  1297. static void ImGui_ImplGlfw_SetWindowSize(ImGuiViewport* viewport, ImVec2 size)
  1298. {
  1299. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1300. #if defined(__APPLE__) && !GLFW_HAS_OSX_WINDOW_POS_FIX
  1301. // Native OS windows are positioned from the bottom-left corner on macOS, whereas on other platforms they are
  1302. // positioned from the upper-left corner. GLFW makes an effort to convert macOS style coordinates, however it
  1303. // doesn't handle it when changing size. We are manually moving the window in order for changes of size to be based
  1304. // on the upper-left corner.
  1305. int x, y, width, height;
  1306. glfwGetWindowPos(vd->Window, &x, &y);
  1307. glfwGetWindowSize(vd->Window, &width, &height);
  1308. glfwSetWindowPos(vd->Window, x, y - height + size.y);
  1309. #endif
  1310. vd->IgnoreWindowSizeEventFrame = ImGui::GetFrameCount();
  1311. glfwSetWindowSize(vd->Window, (int)size.x, (int)size.y);
  1312. }
  1313. static ImVec2 ImGui_ImplGlfw_GetWindowFramebufferScale(ImGuiViewport* viewport)
  1314. {
  1315. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1316. ImVec2 framebuffer_scale;
  1317. ImGui_ImplGlfw_GetWindowSizeAndFramebufferScale(vd->Window, nullptr, &framebuffer_scale);
  1318. return framebuffer_scale;
  1319. }
  1320. static void ImGui_ImplGlfw_SetWindowTitle(ImGuiViewport* viewport, const char* title)
  1321. {
  1322. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1323. glfwSetWindowTitle(vd->Window, title);
  1324. }
  1325. static void ImGui_ImplGlfw_SetWindowFocus(ImGuiViewport* viewport)
  1326. {
  1327. #if GLFW_HAS_FOCUS_WINDOW
  1328. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1329. glfwFocusWindow(vd->Window);
  1330. #else
  1331. // FIXME: What are the effect of not having this function? At the moment imgui doesn't actually call SetWindowFocus - we set that up ahead, will answer that question later.
  1332. (void)viewport;
  1333. #endif
  1334. }
  1335. static bool ImGui_ImplGlfw_GetWindowFocus(ImGuiViewport* viewport)
  1336. {
  1337. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1338. return glfwGetWindowAttrib(vd->Window, GLFW_FOCUSED) != 0;
  1339. }
  1340. static bool ImGui_ImplGlfw_GetWindowMinimized(ImGuiViewport* viewport)
  1341. {
  1342. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1343. return glfwGetWindowAttrib(vd->Window, GLFW_ICONIFIED) != 0;
  1344. }
  1345. #if GLFW_HAS_WINDOW_ALPHA
  1346. static void ImGui_ImplGlfw_SetWindowAlpha(ImGuiViewport* viewport, float alpha)
  1347. {
  1348. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1349. glfwSetWindowOpacity(vd->Window, alpha);
  1350. }
  1351. #endif
  1352. static void ImGui_ImplGlfw_RenderWindow(ImGuiViewport* viewport, void*)
  1353. {
  1354. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1355. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1356. if (bd->ClientApi == GlfwClientApi_OpenGL)
  1357. glfwMakeContextCurrent(vd->Window);
  1358. }
  1359. static void ImGui_ImplGlfw_SwapBuffers(ImGuiViewport* viewport, void*)
  1360. {
  1361. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1362. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1363. if (bd->ClientApi == GlfwClientApi_OpenGL)
  1364. {
  1365. glfwMakeContextCurrent(vd->Window);
  1366. glfwSwapBuffers(vd->Window);
  1367. }
  1368. }
  1369. //--------------------------------------------------------------------------------------------------------
  1370. // Vulkan support (the Vulkan renderer needs to call a platform-side support function to create the surface)
  1371. //--------------------------------------------------------------------------------------------------------
  1372. // Avoid including <vulkan.h> so we can build without it
  1373. #if GLFW_HAS_VULKAN
  1374. #ifndef VULKAN_H_
  1375. #define VK_DEFINE_HANDLE(object) typedef struct object##_T* object;
  1376. #if defined(__LP64__) || defined(_WIN64) || defined(__x86_64__) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
  1377. #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object;
  1378. #else
  1379. #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object;
  1380. #endif
  1381. VK_DEFINE_HANDLE(VkInstance)
  1382. VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR)
  1383. struct VkAllocationCallbacks;
  1384. enum VkResult { VK_RESULT_MAX_ENUM = 0x7FFFFFFF };
  1385. #endif // VULKAN_H_
  1386. extern "C" { extern GLFWAPI VkResult glfwCreateWindowSurface(VkInstance instance, GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface); }
  1387. static int ImGui_ImplGlfw_CreateVkSurface(ImGuiViewport* viewport, ImU64 vk_instance, const void* vk_allocator, ImU64* out_vk_surface)
  1388. {
  1389. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1390. ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData;
  1391. IM_UNUSED(bd);
  1392. IM_ASSERT(bd->ClientApi == GlfwClientApi_Vulkan);
  1393. VkResult err = glfwCreateWindowSurface((VkInstance)vk_instance, vd->Window, (const VkAllocationCallbacks*)vk_allocator, (VkSurfaceKHR*)out_vk_surface);
  1394. return (int)err;
  1395. }
  1396. #endif // GLFW_HAS_VULKAN
  1397. static void ImGui_ImplGlfw_InitMultiViewportSupport()
  1398. {
  1399. // Register platform interface (will be coupled with a renderer interface)
  1400. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  1401. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  1402. platform_io.Platform_CreateWindow = ImGui_ImplGlfw_CreateWindow;
  1403. platform_io.Platform_DestroyWindow = ImGui_ImplGlfw_DestroyWindow;
  1404. platform_io.Platform_ShowWindow = ImGui_ImplGlfw_ShowWindow;
  1405. platform_io.Platform_SetWindowPos = ImGui_ImplGlfw_SetWindowPos;
  1406. platform_io.Platform_GetWindowPos = ImGui_ImplGlfw_GetWindowPos;
  1407. platform_io.Platform_SetWindowSize = ImGui_ImplGlfw_SetWindowSize;
  1408. platform_io.Platform_GetWindowSize = ImGui_ImplGlfw_GetWindowSize;
  1409. platform_io.Platform_GetWindowFramebufferScale = ImGui_ImplGlfw_GetWindowFramebufferScale;
  1410. platform_io.Platform_SetWindowFocus = ImGui_ImplGlfw_SetWindowFocus;
  1411. platform_io.Platform_GetWindowFocus = ImGui_ImplGlfw_GetWindowFocus;
  1412. platform_io.Platform_GetWindowMinimized = ImGui_ImplGlfw_GetWindowMinimized;
  1413. platform_io.Platform_SetWindowTitle = ImGui_ImplGlfw_SetWindowTitle;
  1414. platform_io.Platform_RenderWindow = ImGui_ImplGlfw_RenderWindow;
  1415. platform_io.Platform_SwapBuffers = ImGui_ImplGlfw_SwapBuffers;
  1416. #if GLFW_HAS_WINDOW_ALPHA
  1417. platform_io.Platform_SetWindowAlpha = ImGui_ImplGlfw_SetWindowAlpha;
  1418. #endif
  1419. #if GLFW_HAS_VULKAN
  1420. platform_io.Platform_CreateVkSurface = ImGui_ImplGlfw_CreateVkSurface;
  1421. #endif
  1422. // Register main window handle (which is owned by the main application, not by us)
  1423. // 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.
  1424. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  1425. ImGui_ImplGlfw_ViewportData* vd = IM_NEW(ImGui_ImplGlfw_ViewportData)();
  1426. vd->Window = bd->Window;
  1427. vd->WindowOwned = false;
  1428. main_viewport->PlatformUserData = vd;
  1429. main_viewport->PlatformHandle = (void*)bd->Window;
  1430. }
  1431. static void ImGui_ImplGlfw_ShutdownMultiViewportSupport()
  1432. {
  1433. ImGui::DestroyPlatformWindows();
  1434. }
  1435. //-----------------------------------------------------------------------------
  1436. // WndProc hook (declared here because we will need access to ImGui_ImplGlfw_ViewportData)
  1437. #ifdef _WIN32
  1438. static ImGuiMouseSource GetMouseSourceFromMessageExtraInfo()
  1439. {
  1440. LPARAM extra_info = ::GetMessageExtraInfo();
  1441. if ((extra_info & 0xFFFFFF80) == 0xFF515700)
  1442. return ImGuiMouseSource_Pen;
  1443. if ((extra_info & 0xFFFFFF80) == 0xFF515780)
  1444. return ImGuiMouseSource_TouchScreen;
  1445. return ImGuiMouseSource_Mouse;
  1446. }
  1447. static LRESULT CALLBACK ImGui_ImplGlfw_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
  1448. {
  1449. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)::GetPropA(hWnd, "IMGUI_BACKEND_DATA");
  1450. ImGuiIO& io = ImGui::GetIO(bd->Context);
  1451. WNDPROC prev_wndproc = bd->PrevWndProc;
  1452. ImGuiViewport* viewport = (ImGuiViewport*)::GetPropA(hWnd, "IMGUI_VIEWPORT");
  1453. if (viewport != NULL)
  1454. if (ImGui_ImplGlfw_ViewportData* vd = (ImGui_ImplGlfw_ViewportData*)viewport->PlatformUserData)
  1455. prev_wndproc = vd->PrevWndProc;
  1456. switch (msg)
  1457. {
  1458. // GLFW doesn't allow to distinguish Mouse vs TouchScreen vs Pen.
  1459. // Add support for Win32 (based on imgui_impl_win32), because we rely on _TouchScreen info to trickle inputs differently.
  1460. case WM_MOUSEMOVE: case WM_NCMOUSEMOVE:
  1461. case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK: case WM_LBUTTONUP:
  1462. case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK: case WM_RBUTTONUP:
  1463. case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK: case WM_MBUTTONUP:
  1464. case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK: case WM_XBUTTONUP:
  1465. io.AddMouseSourceEvent(GetMouseSourceFromMessageExtraInfo());
  1466. break;
  1467. // We have submitted https://github.com/glfw/glfw/pull/1568 to allow GLFW to support "transparent inputs".
  1468. // In the meanwhile we implement custom per-platform workarounds here (FIXME-VIEWPORT: Implement same work-around for Linux/OSX!)
  1469. #if !GLFW_HAS_MOUSE_PASSTHROUGH && GLFW_HAS_WINDOW_HOVERED
  1470. case WM_NCHITTEST:
  1471. {
  1472. // Let mouse pass-through the window. This will allow the backend to call io.AddMouseViewportEvent() properly (which is OPTIONAL).
  1473. // The ImGuiViewportFlags_NoInputs flag is set while dragging a viewport, as want to detect the window behind the one we are dragging.
  1474. // If you cannot easily access those viewport flags from your windowing/event code: you may manually synchronize its state e.g. in
  1475. // your main loop after calling UpdatePlatformWindows(). Iterate all viewports/platform windows and pass the flag to your windowing system.
  1476. if (viewport && (viewport->Flags & ImGuiViewportFlags_NoInputs))
  1477. return HTTRANSPARENT;
  1478. break;
  1479. }
  1480. #endif
  1481. default: break;
  1482. }
  1483. return ::CallWindowProcW(prev_wndproc, hWnd, msg, wParam, lParam);
  1484. }
  1485. #endif // #ifdef _WIN32
  1486. //-----------------------------------------------------------------------------
  1487. #if defined(__clang__)
  1488. #pragma clang diagnostic pop
  1489. #endif
  1490. #endif // #ifndef IMGUI_DISABLE