imgui_impl_glfw.cpp 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925
  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.1+. Prefer GLFW 3.3+ or GLFW 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). Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
  11. // You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
  12. // Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
  13. // Learn about Dear ImGui:
  14. // - FAQ https://dearimgui.com/faq
  15. // - Getting Started https://dearimgui.com/getting-started
  16. // - Documentation https://dearimgui.com/docs (same as your local docs/ folder).
  17. // - Introduction, links and more at the top of imgui.cpp
  18. // About Emscripten support:
  19. // - 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.)
  20. // - 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.
  21. // See https://github.com/pongasoft/emscripten-glfw/blob/master/docs/Comparison.md for details.
  22. // CHANGELOG
  23. // (minor and older changes stripped away, please see git history for details)
  24. // 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
  25. // - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
  26. // - io.SetClipboardTextFn -> platform_io.Platform_SetClipboardTextFn
  27. // - io.PlatformOpenInShellFn -> platform_io.Platform_OpenInShellFn
  28. // 2024-07-31: Added ImGui_ImplGlfw_Sleep() helper function for usage by our examples app, since GLFW doesn't provide one.
  29. // 2024-07-08: *BREAKING* Renamed ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback to ImGui_ImplGlfw_InstallEmscriptenCallbacks(), added GLFWWindow* parameter.
  30. // 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)
  31. // 2024-07-02: Emscripten: Added io.PlatformOpenInShellFn() handler for Emscripten versions.
  32. // 2023-12-19: Emscripten: Added ImGui_ImplGlfw_InstallEmscriptenCanvasResizeCallback() to register canvas selector and auto-resize GLFW window.
  33. // 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys.
  34. // 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)
  35. // 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)
  36. // 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)
  37. // 2023-03-16: Inputs: Fixed key modifiers handling on secondary viewports (docking branch). Broken on 2023/01/04. (#6248, #6034)
  38. // 2023-03-14: Emscripten: Avoid using glfwGetError() and glfwGetGamepadState() which are not correctly implemented in Emscripten emulation. (#6240)
  39. // 2023-02-03: Emscripten: Registering custom low-level mouse wheel handler to get more accurate scrolling impulses on Emscripten. (#4019, #6096)
  40. // 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.
  41. // 2022-11-22: Perform a dummy glfwGetError() read to cancel missing names with glfwGetKeyName(). (#5908)
  42. // 2022-10-18: Perform a dummy glfwGetError() read to cancel missing mouse cursors errors. Using GLFW_VERSION_COMBINED directly. (#5785)
  43. // 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11.
  44. // 2022-09-26: Inputs: Renamed ImGuiKey_ModXXX introduced in 1.87 to ImGuiMod_XXX (old names still supported).
  45. // 2022-09-01: Inputs: Honor GLFW_CURSOR_DISABLED by not setting mouse position *EDIT* Reverted 2023-07-18.
  46. // 2022-04-30: Inputs: Fixed ImGui_ImplGlfw_TranslateUntranslatedKey() for lower case letters on OSX.
  47. // 2022-03-23: Inputs: Fixed a regression in 1.87 which resulted in keyboard modifiers events being reported incorrectly on Linux/X11.
  48. // 2022-02-07: Added ImGui_ImplGlfw_InstallCallbacks()/ImGui_ImplGlfw_RestoreCallbacks() helpers to facilitate user installing callbacks after initializing backend.
  49. // 2022-01-26: Inputs: replaced short-lived io.AddKeyModsEvent() (added two weeks ago) with io.AddKeyEvent() using ImGuiKey_ModXXX flags. Sorry for the confusion.
  50. // 2021-01-20: Inputs: calling new io.AddKeyAnalogEvent() for gamepad support, instead of writing directly to io.NavInputs[].
  51. // 2022-01-17: Inputs: calling new io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() API (1.87+).
  52. // 2022-01-17: Inputs: always update key mods next and before key event (not in NewFrame) to fix input queue with very low framerates.
  53. // 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().
  54. // 2022-01-10: Inputs: calling new io.AddKeyEvent(), io.AddKeyModsEvent() + io.SetKeyEventNativeData() API (1.87+). Support for full ImGuiKey range.
  55. // 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.
  56. // 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().
  57. // 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().
  58. // 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).
  59. // 2020-01-17: Inputs: Disable error callback while assigning mouse cursors because some X11 setup don't have them and it generates errors.
  60. // 2019-12-05: Inputs: Added support for new mouse cursors added in GLFW 3.4+ (resizing cursors, not allowed cursor).
  61. // 2019-10-18: Misc: Previously installed user callbacks are now restored on shutdown.
  62. // 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter.
  63. // 2019-05-11: Inputs: Don't filter value from character callback before calling AddInputCharacter().
  64. // 2019-03-12: Misc: Preserve DisplayFramebufferScale when main window is minimized.
  65. // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window.
  66. // 2018-11-07: Inputs: When installing our GLFW callbacks, we save user's previously installed ones - if any - and chain call them.
  67. // 2018-08-01: Inputs: Workaround for Emscripten which doesn't seem to handle focus related calls.
  68. // 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor.
  69. // 2018-06-08: Misc: Extracted imgui_impl_glfw.cpp/.h away from the old combined GLFW+OpenGL/Vulkan examples.
  70. // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag.
  71. // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value, passed to glfwSetCursor()).
  72. // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves.
  73. // 2018-02-06: Inputs: Added mapping for ImGuiKey_Space.
  74. // 2018-01-25: Inputs: Added gamepad support if ImGuiConfigFlags_NavEnableGamepad is set.
  75. // 2018-01-25: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set).
  76. // 2018-01-20: Inputs: Added Horizontal Mouse Wheel support.
  77. // 2018-01-18: Inputs: Added mapping for ImGuiKey_Insert.
  78. // 2017-08-25: Inputs: MousePos set to -FLT_MAX,-FLT_MAX when mouse is unavailable/missing (instead of -1,-1).
  79. // 2016-10-15: Misc: Added a void* user_data parameter to Clipboard function handlers.
  80. #include "imgui.h"
  81. #ifndef IMGUI_DISABLE
  82. #include "imgui_impl_glfw.h"
  83. // Clang warnings with -Weverything
  84. #if defined(__clang__)
  85. #pragma clang diagnostic push
  86. #pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast
  87. #pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
  88. #endif
  89. // GLFW
  90. #include <GLFW/glfw3.h>
  91. #ifdef _WIN32
  92. #undef APIENTRY
  93. #ifndef GLFW_EXPOSE_NATIVE_WIN32
  94. #define GLFW_EXPOSE_NATIVE_WIN32
  95. #endif
  96. #include <GLFW/glfw3native.h> // for glfwGetWin32Window()
  97. #endif
  98. #ifdef __APPLE__
  99. #ifndef GLFW_EXPOSE_NATIVE_COCOA
  100. #define GLFW_EXPOSE_NATIVE_COCOA
  101. #endif
  102. #include <GLFW/glfw3native.h> // for glfwGetCocoaWindow()
  103. #endif
  104. #ifndef _WIN32
  105. #include <unistd.h> // for usleep()
  106. #endif
  107. #ifdef __EMSCRIPTEN__
  108. #include <emscripten.h>
  109. #include <emscripten/html5.h>
  110. #ifdef EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3
  111. #include <GLFW/emscripten_glfw3.h>
  112. #else
  113. #define EMSCRIPTEN_USE_EMBEDDED_GLFW3
  114. #endif
  115. #endif
  116. // We gather version tests as define in order to easily see which features are version-dependent.
  117. #define GLFW_VERSION_COMBINED (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 + GLFW_VERSION_REVISION)
  118. #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?
  119. #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
  120. #else
  121. #define GLFW_HAS_NEW_CURSORS (0)
  122. #endif
  123. #define GLFW_HAS_GAMEPAD_API (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetGamepadState() new api
  124. #define GLFW_HAS_GETKEYNAME (GLFW_VERSION_COMBINED >= 3200) // 3.2+ glfwGetKeyName()
  125. #define GLFW_HAS_GETERROR (GLFW_VERSION_COMBINED >= 3300) // 3.3+ glfwGetError()
  126. // GLFW data
  127. enum GlfwClientApi
  128. {
  129. GlfwClientApi_Unknown,
  130. GlfwClientApi_OpenGL,
  131. GlfwClientApi_Vulkan,
  132. };
  133. struct ImGui_ImplGlfw_Data
  134. {
  135. GLFWwindow* Window;
  136. GlfwClientApi ClientApi;
  137. double Time;
  138. GLFWwindow* MouseWindow;
  139. GLFWcursor* MouseCursors[ImGuiMouseCursor_COUNT];
  140. ImVec2 LastValidMousePos;
  141. bool InstalledCallbacks;
  142. bool CallbacksChainForAllWindows;
  143. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  144. const char* CanvasSelector;
  145. #endif
  146. // Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
  147. GLFWwindowfocusfun PrevUserCallbackWindowFocus;
  148. GLFWcursorposfun PrevUserCallbackCursorPos;
  149. GLFWcursorenterfun PrevUserCallbackCursorEnter;
  150. GLFWmousebuttonfun PrevUserCallbackMousebutton;
  151. GLFWscrollfun PrevUserCallbackScroll;
  152. GLFWkeyfun PrevUserCallbackKey;
  153. GLFWcharfun PrevUserCallbackChar;
  154. GLFWmonitorfun PrevUserCallbackMonitor;
  155. #ifdef _WIN32
  156. WNDPROC PrevWndProc;
  157. #endif
  158. ImGui_ImplGlfw_Data() { memset((void*)this, 0, sizeof(*this)); }
  159. };
  160. // Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts
  161. // It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
  162. // FIXME: multi-context support is not well tested and probably dysfunctional in this backend.
  163. // - Because glfwPollEvents() process all windows and some events may be called outside of it, you will need to register your own callbacks
  164. // (passing install_callbacks=false in ImGui_ImplGlfw_InitXXX functions), set the current dear imgui context and then call our callbacks.
  165. // - 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.
  166. // FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context.
  167. static ImGui_ImplGlfw_Data* ImGui_ImplGlfw_GetBackendData()
  168. {
  169. return ImGui::GetCurrentContext() ? (ImGui_ImplGlfw_Data*)ImGui::GetIO().BackendPlatformUserData : nullptr;
  170. }
  171. // Functions
  172. // Not static to allow third-party code to use that if they want to (but undocumented)
  173. ImGuiKey ImGui_ImplGlfw_KeyToImGuiKey(int keycode, int scancode);
  174. ImGuiKey ImGui_ImplGlfw_KeyToImGuiKey(int keycode, int scancode)
  175. {
  176. IM_UNUSED(scancode);
  177. switch (keycode)
  178. {
  179. case GLFW_KEY_TAB: return ImGuiKey_Tab;
  180. case GLFW_KEY_LEFT: return ImGuiKey_LeftArrow;
  181. case GLFW_KEY_RIGHT: return ImGuiKey_RightArrow;
  182. case GLFW_KEY_UP: return ImGuiKey_UpArrow;
  183. case GLFW_KEY_DOWN: return ImGuiKey_DownArrow;
  184. case GLFW_KEY_PAGE_UP: return ImGuiKey_PageUp;
  185. case GLFW_KEY_PAGE_DOWN: return ImGuiKey_PageDown;
  186. case GLFW_KEY_HOME: return ImGuiKey_Home;
  187. case GLFW_KEY_END: return ImGuiKey_End;
  188. case GLFW_KEY_INSERT: return ImGuiKey_Insert;
  189. case GLFW_KEY_DELETE: return ImGuiKey_Delete;
  190. case GLFW_KEY_BACKSPACE: return ImGuiKey_Backspace;
  191. case GLFW_KEY_SPACE: return ImGuiKey_Space;
  192. case GLFW_KEY_ENTER: return ImGuiKey_Enter;
  193. case GLFW_KEY_ESCAPE: return ImGuiKey_Escape;
  194. case GLFW_KEY_APOSTROPHE: return ImGuiKey_Apostrophe;
  195. case GLFW_KEY_COMMA: return ImGuiKey_Comma;
  196. case GLFW_KEY_MINUS: return ImGuiKey_Minus;
  197. case GLFW_KEY_PERIOD: return ImGuiKey_Period;
  198. case GLFW_KEY_SLASH: return ImGuiKey_Slash;
  199. case GLFW_KEY_SEMICOLON: return ImGuiKey_Semicolon;
  200. case GLFW_KEY_EQUAL: return ImGuiKey_Equal;
  201. case GLFW_KEY_LEFT_BRACKET: return ImGuiKey_LeftBracket;
  202. case GLFW_KEY_BACKSLASH: return ImGuiKey_Backslash;
  203. case GLFW_KEY_RIGHT_BRACKET: return ImGuiKey_RightBracket;
  204. case GLFW_KEY_GRAVE_ACCENT: return ImGuiKey_GraveAccent;
  205. case GLFW_KEY_CAPS_LOCK: return ImGuiKey_CapsLock;
  206. case GLFW_KEY_SCROLL_LOCK: return ImGuiKey_ScrollLock;
  207. case GLFW_KEY_NUM_LOCK: return ImGuiKey_NumLock;
  208. case GLFW_KEY_PRINT_SCREEN: return ImGuiKey_PrintScreen;
  209. case GLFW_KEY_PAUSE: return ImGuiKey_Pause;
  210. case GLFW_KEY_KP_0: return ImGuiKey_Keypad0;
  211. case GLFW_KEY_KP_1: return ImGuiKey_Keypad1;
  212. case GLFW_KEY_KP_2: return ImGuiKey_Keypad2;
  213. case GLFW_KEY_KP_3: return ImGuiKey_Keypad3;
  214. case GLFW_KEY_KP_4: return ImGuiKey_Keypad4;
  215. case GLFW_KEY_KP_5: return ImGuiKey_Keypad5;
  216. case GLFW_KEY_KP_6: return ImGuiKey_Keypad6;
  217. case GLFW_KEY_KP_7: return ImGuiKey_Keypad7;
  218. case GLFW_KEY_KP_8: return ImGuiKey_Keypad8;
  219. case GLFW_KEY_KP_9: return ImGuiKey_Keypad9;
  220. case GLFW_KEY_KP_DECIMAL: return ImGuiKey_KeypadDecimal;
  221. case GLFW_KEY_KP_DIVIDE: return ImGuiKey_KeypadDivide;
  222. case GLFW_KEY_KP_MULTIPLY: return ImGuiKey_KeypadMultiply;
  223. case GLFW_KEY_KP_SUBTRACT: return ImGuiKey_KeypadSubtract;
  224. case GLFW_KEY_KP_ADD: return ImGuiKey_KeypadAdd;
  225. case GLFW_KEY_KP_ENTER: return ImGuiKey_KeypadEnter;
  226. case GLFW_KEY_KP_EQUAL: return ImGuiKey_KeypadEqual;
  227. case GLFW_KEY_LEFT_SHIFT: return ImGuiKey_LeftShift;
  228. case GLFW_KEY_LEFT_CONTROL: return ImGuiKey_LeftCtrl;
  229. case GLFW_KEY_LEFT_ALT: return ImGuiKey_LeftAlt;
  230. case GLFW_KEY_LEFT_SUPER: return ImGuiKey_LeftSuper;
  231. case GLFW_KEY_RIGHT_SHIFT: return ImGuiKey_RightShift;
  232. case GLFW_KEY_RIGHT_CONTROL: return ImGuiKey_RightCtrl;
  233. case GLFW_KEY_RIGHT_ALT: return ImGuiKey_RightAlt;
  234. case GLFW_KEY_RIGHT_SUPER: return ImGuiKey_RightSuper;
  235. case GLFW_KEY_MENU: return ImGuiKey_Menu;
  236. case GLFW_KEY_0: return ImGuiKey_0;
  237. case GLFW_KEY_1: return ImGuiKey_1;
  238. case GLFW_KEY_2: return ImGuiKey_2;
  239. case GLFW_KEY_3: return ImGuiKey_3;
  240. case GLFW_KEY_4: return ImGuiKey_4;
  241. case GLFW_KEY_5: return ImGuiKey_5;
  242. case GLFW_KEY_6: return ImGuiKey_6;
  243. case GLFW_KEY_7: return ImGuiKey_7;
  244. case GLFW_KEY_8: return ImGuiKey_8;
  245. case GLFW_KEY_9: return ImGuiKey_9;
  246. case GLFW_KEY_A: return ImGuiKey_A;
  247. case GLFW_KEY_B: return ImGuiKey_B;
  248. case GLFW_KEY_C: return ImGuiKey_C;
  249. case GLFW_KEY_D: return ImGuiKey_D;
  250. case GLFW_KEY_E: return ImGuiKey_E;
  251. case GLFW_KEY_F: return ImGuiKey_F;
  252. case GLFW_KEY_G: return ImGuiKey_G;
  253. case GLFW_KEY_H: return ImGuiKey_H;
  254. case GLFW_KEY_I: return ImGuiKey_I;
  255. case GLFW_KEY_J: return ImGuiKey_J;
  256. case GLFW_KEY_K: return ImGuiKey_K;
  257. case GLFW_KEY_L: return ImGuiKey_L;
  258. case GLFW_KEY_M: return ImGuiKey_M;
  259. case GLFW_KEY_N: return ImGuiKey_N;
  260. case GLFW_KEY_O: return ImGuiKey_O;
  261. case GLFW_KEY_P: return ImGuiKey_P;
  262. case GLFW_KEY_Q: return ImGuiKey_Q;
  263. case GLFW_KEY_R: return ImGuiKey_R;
  264. case GLFW_KEY_S: return ImGuiKey_S;
  265. case GLFW_KEY_T: return ImGuiKey_T;
  266. case GLFW_KEY_U: return ImGuiKey_U;
  267. case GLFW_KEY_V: return ImGuiKey_V;
  268. case GLFW_KEY_W: return ImGuiKey_W;
  269. case GLFW_KEY_X: return ImGuiKey_X;
  270. case GLFW_KEY_Y: return ImGuiKey_Y;
  271. case GLFW_KEY_Z: return ImGuiKey_Z;
  272. case GLFW_KEY_F1: return ImGuiKey_F1;
  273. case GLFW_KEY_F2: return ImGuiKey_F2;
  274. case GLFW_KEY_F3: return ImGuiKey_F3;
  275. case GLFW_KEY_F4: return ImGuiKey_F4;
  276. case GLFW_KEY_F5: return ImGuiKey_F5;
  277. case GLFW_KEY_F6: return ImGuiKey_F6;
  278. case GLFW_KEY_F7: return ImGuiKey_F7;
  279. case GLFW_KEY_F8: return ImGuiKey_F8;
  280. case GLFW_KEY_F9: return ImGuiKey_F9;
  281. case GLFW_KEY_F10: return ImGuiKey_F10;
  282. case GLFW_KEY_F11: return ImGuiKey_F11;
  283. case GLFW_KEY_F12: return ImGuiKey_F12;
  284. case GLFW_KEY_F13: return ImGuiKey_F13;
  285. case GLFW_KEY_F14: return ImGuiKey_F14;
  286. case GLFW_KEY_F15: return ImGuiKey_F15;
  287. case GLFW_KEY_F16: return ImGuiKey_F16;
  288. case GLFW_KEY_F17: return ImGuiKey_F17;
  289. case GLFW_KEY_F18: return ImGuiKey_F18;
  290. case GLFW_KEY_F19: return ImGuiKey_F19;
  291. case GLFW_KEY_F20: return ImGuiKey_F20;
  292. case GLFW_KEY_F21: return ImGuiKey_F21;
  293. case GLFW_KEY_F22: return ImGuiKey_F22;
  294. case GLFW_KEY_F23: return ImGuiKey_F23;
  295. case GLFW_KEY_F24: return ImGuiKey_F24;
  296. default: return ImGuiKey_None;
  297. }
  298. }
  299. // X11 does not include current pressed/released modifier key in 'mods' flags submitted by GLFW
  300. // See https://github.com/ocornut/imgui/issues/6034 and https://github.com/glfw/glfw/issues/1630
  301. static void ImGui_ImplGlfw_UpdateKeyModifiers(GLFWwindow* window)
  302. {
  303. ImGuiIO& io = ImGui::GetIO();
  304. io.AddKeyEvent(ImGuiMod_Ctrl, (glfwGetKey(window, GLFW_KEY_LEFT_CONTROL) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_CONTROL) == GLFW_PRESS));
  305. io.AddKeyEvent(ImGuiMod_Shift, (glfwGetKey(window, GLFW_KEY_LEFT_SHIFT) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_SHIFT) == GLFW_PRESS));
  306. io.AddKeyEvent(ImGuiMod_Alt, (glfwGetKey(window, GLFW_KEY_LEFT_ALT) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_ALT) == GLFW_PRESS));
  307. io.AddKeyEvent(ImGuiMod_Super, (glfwGetKey(window, GLFW_KEY_LEFT_SUPER) == GLFW_PRESS) || (glfwGetKey(window, GLFW_KEY_RIGHT_SUPER) == GLFW_PRESS));
  308. }
  309. static bool ImGui_ImplGlfw_ShouldChainCallback(GLFWwindow* window)
  310. {
  311. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  312. return bd->CallbacksChainForAllWindows ? true : (window == bd->Window);
  313. }
  314. void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods)
  315. {
  316. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  317. if (bd->PrevUserCallbackMousebutton != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  318. bd->PrevUserCallbackMousebutton(window, button, action, mods);
  319. ImGui_ImplGlfw_UpdateKeyModifiers(window);
  320. ImGuiIO& io = ImGui::GetIO();
  321. if (button >= 0 && button < ImGuiMouseButton_COUNT)
  322. io.AddMouseButtonEvent(button, action == GLFW_PRESS);
  323. }
  324. void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset)
  325. {
  326. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  327. if (bd->PrevUserCallbackScroll != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  328. bd->PrevUserCallbackScroll(window, xoffset, yoffset);
  329. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  330. // Ignore GLFW events: will be processed in ImGui_ImplEmscripten_WheelCallback().
  331. return;
  332. #endif
  333. ImGuiIO& io = ImGui::GetIO();
  334. io.AddMouseWheelEvent((float)xoffset, (float)yoffset);
  335. }
  336. // FIXME: should this be baked into ImGui_ImplGlfw_KeyToImGuiKey()? then what about the values passed to io.SetKeyEventNativeData()?
  337. static int ImGui_ImplGlfw_TranslateUntranslatedKey(int key, int scancode)
  338. {
  339. #if GLFW_HAS_GETKEYNAME && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3)
  340. // GLFW 3.1+ attempts to "untranslate" keys, which goes the opposite of what every other framework does, making using lettered shortcuts difficult.
  341. // (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)
  342. // See https://github.com/glfw/glfw/issues/1502 for details.
  343. // Adding a workaround to undo this (so our keys are translated->untranslated->translated, likely a lossy process).
  344. // This won't cover edge cases but this is at least going to cover common cases.
  345. if (key >= GLFW_KEY_KP_0 && key <= GLFW_KEY_KP_EQUAL)
  346. return key;
  347. GLFWerrorfun prev_error_callback = glfwSetErrorCallback(nullptr);
  348. const char* key_name = glfwGetKeyName(key, scancode);
  349. glfwSetErrorCallback(prev_error_callback);
  350. #if GLFW_HAS_GETERROR && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3) // Eat errors (see #5908)
  351. (void)glfwGetError(nullptr);
  352. #endif
  353. if (key_name && key_name[0] != 0 && key_name[1] == 0)
  354. {
  355. const char char_names[] = "`-=[]\\,;\'./";
  356. 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 };
  357. IM_ASSERT(IM_ARRAYSIZE(char_names) == IM_ARRAYSIZE(char_keys));
  358. if (key_name[0] >= '0' && key_name[0] <= '9') { key = GLFW_KEY_0 + (key_name[0] - '0'); }
  359. else if (key_name[0] >= 'A' && key_name[0] <= 'Z') { key = GLFW_KEY_A + (key_name[0] - 'A'); }
  360. else if (key_name[0] >= 'a' && key_name[0] <= 'z') { key = GLFW_KEY_A + (key_name[0] - 'a'); }
  361. else if (const char* p = strchr(char_names, key_name[0])) { key = char_keys[p - char_names]; }
  362. }
  363. // if (action == GLFW_PRESS) printf("key %d scancode %d name '%s'\n", key, scancode, key_name);
  364. #else
  365. IM_UNUSED(scancode);
  366. #endif
  367. return key;
  368. }
  369. void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int keycode, int scancode, int action, int mods)
  370. {
  371. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  372. if (bd->PrevUserCallbackKey != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  373. bd->PrevUserCallbackKey(window, keycode, scancode, action, mods);
  374. if (action != GLFW_PRESS && action != GLFW_RELEASE)
  375. return;
  376. ImGui_ImplGlfw_UpdateKeyModifiers(window);
  377. keycode = ImGui_ImplGlfw_TranslateUntranslatedKey(keycode, scancode);
  378. ImGuiIO& io = ImGui::GetIO();
  379. ImGuiKey imgui_key = ImGui_ImplGlfw_KeyToImGuiKey(keycode, scancode);
  380. io.AddKeyEvent(imgui_key, (action == GLFW_PRESS));
  381. io.SetKeyEventNativeData(imgui_key, keycode, scancode); // To support legacy indexing (<1.87 user code)
  382. }
  383. void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window, int focused)
  384. {
  385. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  386. if (bd->PrevUserCallbackWindowFocus != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  387. bd->PrevUserCallbackWindowFocus(window, focused);
  388. ImGuiIO& io = ImGui::GetIO();
  389. io.AddFocusEvent(focused != 0);
  390. }
  391. void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window, double x, double y)
  392. {
  393. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  394. if (bd->PrevUserCallbackCursorPos != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  395. bd->PrevUserCallbackCursorPos(window, x, y);
  396. ImGuiIO& io = ImGui::GetIO();
  397. io.AddMousePosEvent((float)x, (float)y);
  398. bd->LastValidMousePos = ImVec2((float)x, (float)y);
  399. }
  400. // Workaround: X11 seems to send spurious Leave/Enter events which would make us lose our position,
  401. // so we back it up and restore on Leave/Enter (see https://github.com/ocornut/imgui/issues/4984)
  402. void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window, int entered)
  403. {
  404. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  405. if (bd->PrevUserCallbackCursorEnter != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  406. bd->PrevUserCallbackCursorEnter(window, entered);
  407. ImGuiIO& io = ImGui::GetIO();
  408. if (entered)
  409. {
  410. bd->MouseWindow = window;
  411. io.AddMousePosEvent(bd->LastValidMousePos.x, bd->LastValidMousePos.y);
  412. }
  413. else if (!entered && bd->MouseWindow == window)
  414. {
  415. bd->LastValidMousePos = io.MousePos;
  416. bd->MouseWindow = nullptr;
  417. io.AddMousePosEvent(-FLT_MAX, -FLT_MAX);
  418. }
  419. }
  420. void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c)
  421. {
  422. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  423. if (bd->PrevUserCallbackChar != nullptr && ImGui_ImplGlfw_ShouldChainCallback(window))
  424. bd->PrevUserCallbackChar(window, c);
  425. ImGuiIO& io = ImGui::GetIO();
  426. io.AddInputCharacter(c);
  427. }
  428. void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor*, int)
  429. {
  430. // Unused in 'master' branch but 'docking' branch will use this, so we declare it ahead of it so if you have to install callbacks you can install this one too.
  431. }
  432. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  433. static EM_BOOL ImGui_ImplEmscripten_WheelCallback(int, const EmscriptenWheelEvent* ev, void*)
  434. {
  435. // Mimic Emscripten_HandleWheel() in SDL.
  436. // Corresponding equivalent in GLFW JS emulation layer has incorrect quantizing preventing small values. See #6096
  437. float multiplier = 0.0f;
  438. if (ev->deltaMode == DOM_DELTA_PIXEL) { multiplier = 1.0f / 100.0f; } // 100 pixels make up a step.
  439. else if (ev->deltaMode == DOM_DELTA_LINE) { multiplier = 1.0f / 3.0f; } // 3 lines make up a step.
  440. else if (ev->deltaMode == DOM_DELTA_PAGE) { multiplier = 80.0f; } // A page makes up 80 steps.
  441. float wheel_x = ev->deltaX * -multiplier;
  442. float wheel_y = ev->deltaY * -multiplier;
  443. ImGuiIO& io = ImGui::GetIO();
  444. io.AddMouseWheelEvent(wheel_x, wheel_y);
  445. //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);
  446. return EM_TRUE;
  447. }
  448. #endif
  449. #ifdef _WIN32
  450. // GLFW doesn't allow to distinguish Mouse vs TouchScreen vs Pen.
  451. // Add support for Win32 (based on imgui_impl_win32), because we rely on _TouchScreen info to trickle inputs differently.
  452. static ImGuiMouseSource GetMouseSourceFromMessageExtraInfo()
  453. {
  454. LPARAM extra_info = ::GetMessageExtraInfo();
  455. if ((extra_info & 0xFFFFFF80) == 0xFF515700)
  456. return ImGuiMouseSource_Pen;
  457. if ((extra_info & 0xFFFFFF80) == 0xFF515780)
  458. return ImGuiMouseSource_TouchScreen;
  459. return ImGuiMouseSource_Mouse;
  460. }
  461. static LRESULT CALLBACK ImGui_ImplGlfw_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
  462. {
  463. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  464. switch (msg)
  465. {
  466. case WM_MOUSEMOVE: case WM_NCMOUSEMOVE:
  467. case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK: case WM_LBUTTONUP:
  468. case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK: case WM_RBUTTONUP:
  469. case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK: case WM_MBUTTONUP:
  470. case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK: case WM_XBUTTONUP:
  471. ImGui::GetIO().AddMouseSourceEvent(GetMouseSourceFromMessageExtraInfo());
  472. break;
  473. }
  474. return ::CallWindowProcW(bd->PrevWndProc, hWnd, msg, wParam, lParam);
  475. }
  476. #endif
  477. void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window)
  478. {
  479. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  480. IM_ASSERT(bd->InstalledCallbacks == false && "Callbacks already installed!");
  481. IM_ASSERT(bd->Window == window);
  482. bd->PrevUserCallbackWindowFocus = glfwSetWindowFocusCallback(window, ImGui_ImplGlfw_WindowFocusCallback);
  483. bd->PrevUserCallbackCursorEnter = glfwSetCursorEnterCallback(window, ImGui_ImplGlfw_CursorEnterCallback);
  484. bd->PrevUserCallbackCursorPos = glfwSetCursorPosCallback(window, ImGui_ImplGlfw_CursorPosCallback);
  485. bd->PrevUserCallbackMousebutton = glfwSetMouseButtonCallback(window, ImGui_ImplGlfw_MouseButtonCallback);
  486. bd->PrevUserCallbackScroll = glfwSetScrollCallback(window, ImGui_ImplGlfw_ScrollCallback);
  487. bd->PrevUserCallbackKey = glfwSetKeyCallback(window, ImGui_ImplGlfw_KeyCallback);
  488. bd->PrevUserCallbackChar = glfwSetCharCallback(window, ImGui_ImplGlfw_CharCallback);
  489. bd->PrevUserCallbackMonitor = glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback);
  490. bd->InstalledCallbacks = true;
  491. }
  492. void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window)
  493. {
  494. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  495. IM_ASSERT(bd->InstalledCallbacks == true && "Callbacks not installed!");
  496. IM_ASSERT(bd->Window == window);
  497. glfwSetWindowFocusCallback(window, bd->PrevUserCallbackWindowFocus);
  498. glfwSetCursorEnterCallback(window, bd->PrevUserCallbackCursorEnter);
  499. glfwSetCursorPosCallback(window, bd->PrevUserCallbackCursorPos);
  500. glfwSetMouseButtonCallback(window, bd->PrevUserCallbackMousebutton);
  501. glfwSetScrollCallback(window, bd->PrevUserCallbackScroll);
  502. glfwSetKeyCallback(window, bd->PrevUserCallbackKey);
  503. glfwSetCharCallback(window, bd->PrevUserCallbackChar);
  504. glfwSetMonitorCallback(bd->PrevUserCallbackMonitor);
  505. bd->InstalledCallbacks = false;
  506. bd->PrevUserCallbackWindowFocus = nullptr;
  507. bd->PrevUserCallbackCursorEnter = nullptr;
  508. bd->PrevUserCallbackCursorPos = nullptr;
  509. bd->PrevUserCallbackMousebutton = nullptr;
  510. bd->PrevUserCallbackScroll = nullptr;
  511. bd->PrevUserCallbackKey = nullptr;
  512. bd->PrevUserCallbackChar = nullptr;
  513. bd->PrevUserCallbackMonitor = nullptr;
  514. }
  515. // Set to 'true' to enable chaining installed callbacks for all windows (including secondary viewports created by backends or by user.
  516. // This is 'false' by default meaning we only chain callbacks for the main viewport.
  517. // We cannot set this to 'true' by default because user callbacks code may be not testing the 'window' parameter of their callback.
  518. // If you set this to 'true' your user callback code will need to make sure you are testing the 'window' parameter.
  519. void ImGui_ImplGlfw_SetCallbacksChainForAllWindows(bool chain_for_all_windows)
  520. {
  521. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  522. bd->CallbacksChainForAllWindows = chain_for_all_windows;
  523. }
  524. #ifdef __EMSCRIPTEN__
  525. #if EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3 >= 34020240817
  526. void ImGui_ImplGlfw_EmscriptenOpenURL(const char* url) { if (url) emscripten::glfw3::OpenURL(url); }
  527. #else
  528. EM_JS(void, ImGui_ImplGlfw_EmscriptenOpenURL, (const char* url), { url = url ? UTF8ToString(url) : null; if (url) window.open(url, '_blank'); });
  529. #endif
  530. #endif
  531. static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, GlfwClientApi client_api)
  532. {
  533. ImGuiIO& io = ImGui::GetIO();
  534. IMGUI_CHECKVERSION();
  535. IM_ASSERT(io.BackendPlatformUserData == nullptr && "Already initialized a platform backend!");
  536. //printf("GLFW_VERSION: %d.%d.%d (%d)", GLFW_VERSION_MAJOR, GLFW_VERSION_MINOR, GLFW_VERSION_REVISION, GLFW_VERSION_COMBINED);
  537. // Setup backend capabilities flags
  538. ImGui_ImplGlfw_Data* bd = IM_NEW(ImGui_ImplGlfw_Data)();
  539. io.BackendPlatformUserData = (void*)bd;
  540. io.BackendPlatformName = "imgui_impl_glfw";
  541. io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional)
  542. io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used)
  543. bd->Window = window;
  544. bd->Time = 0.0;
  545. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  546. platform_io.Platform_SetClipboardTextFn = [](ImGuiContext*, const char* text) { glfwSetClipboardString(nullptr, text); };
  547. platform_io.Platform_GetClipboardTextFn = [](ImGuiContext*) { return glfwGetClipboardString(nullptr); };
  548. #ifdef __EMSCRIPTEN__
  549. platform_io.Platform_OpenInShellFn = [](ImGuiContext*, const char* url) { ImGui_ImplGlfw_EmscriptenOpenURL(url); return true; };
  550. #endif
  551. // Create mouse cursors
  552. // (By design, on X11 cursors are user configurable and some cursors may be missing. When a cursor doesn't exist,
  553. // GLFW will emit an error which will often be printed by the app, so we temporarily disable error reporting.
  554. // Missing cursors will return nullptr and our _UpdateMouseCursor() function will use the Arrow cursor instead.)
  555. GLFWerrorfun prev_error_callback = glfwSetErrorCallback(nullptr);
  556. bd->MouseCursors[ImGuiMouseCursor_Arrow] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  557. bd->MouseCursors[ImGuiMouseCursor_TextInput] = glfwCreateStandardCursor(GLFW_IBEAM_CURSOR);
  558. bd->MouseCursors[ImGuiMouseCursor_ResizeNS] = glfwCreateStandardCursor(GLFW_VRESIZE_CURSOR);
  559. bd->MouseCursors[ImGuiMouseCursor_ResizeEW] = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR);
  560. bd->MouseCursors[ImGuiMouseCursor_Hand] = glfwCreateStandardCursor(GLFW_HAND_CURSOR);
  561. #if GLFW_HAS_NEW_CURSORS
  562. bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_RESIZE_ALL_CURSOR);
  563. bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_RESIZE_NESW_CURSOR);
  564. bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_RESIZE_NWSE_CURSOR);
  565. bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_NOT_ALLOWED_CURSOR);
  566. #else
  567. bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  568. bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  569. bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  570. bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR);
  571. #endif
  572. glfwSetErrorCallback(prev_error_callback);
  573. #if GLFW_HAS_GETERROR && !defined(__EMSCRIPTEN__) // Eat errors (see #5908)
  574. (void)glfwGetError(nullptr);
  575. #endif
  576. // Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any.
  577. if (install_callbacks)
  578. ImGui_ImplGlfw_InstallCallbacks(window);
  579. // Set platform dependent data in viewport
  580. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  581. main_viewport->PlatformHandle = (void*)bd->Window;
  582. #ifdef _WIN32
  583. main_viewport->PlatformHandleRaw = glfwGetWin32Window(bd->Window);
  584. #elif defined(__APPLE__)
  585. main_viewport->PlatformHandleRaw = (void*)glfwGetCocoaWindow(bd->Window);
  586. #else
  587. IM_UNUSED(main_viewport);
  588. #endif
  589. // Windows: register a WndProc hook so we can intercept some messages.
  590. #ifdef _WIN32
  591. bd->PrevWndProc = (WNDPROC)::GetWindowLongPtrW((HWND)main_viewport->PlatformHandleRaw, GWLP_WNDPROC);
  592. IM_ASSERT(bd->PrevWndProc != nullptr);
  593. ::SetWindowLongPtrW((HWND)main_viewport->PlatformHandleRaw, GWLP_WNDPROC, (LONG_PTR)ImGui_ImplGlfw_WndProc);
  594. #endif
  595. // Emscripten: the same application can run on various platforms, so we detect the Apple platform at runtime
  596. // to override io.ConfigMacOSXBehaviors from its default (which is always false in Emscripten).
  597. #ifdef __EMSCRIPTEN__
  598. #if EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3 >= 34020240817
  599. if (emscripten::glfw3::IsRuntimePlatformApple())
  600. {
  601. ImGui::GetIO().ConfigMacOSXBehaviors = true;
  602. // Due to how the browser (poorly) handles the Meta Key, this line essentially disables repeats when used.
  603. // This means that Meta + V only registers a single key-press, even if the keys are held.
  604. // This is a compromise for dealing with this issue in ImGui since ImGui implements key repeat itself.
  605. // See https://github.com/pongasoft/emscripten-glfw/blob/v3.4.0.20240817/docs/Usage.md#the-problem-of-the-super-key
  606. emscripten::glfw3::SetSuperPlusKeyTimeouts(10, 10);
  607. }
  608. #endif
  609. #endif
  610. bd->ClientApi = client_api;
  611. return true;
  612. }
  613. bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks)
  614. {
  615. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_OpenGL);
  616. }
  617. bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks)
  618. {
  619. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Vulkan);
  620. }
  621. bool ImGui_ImplGlfw_InitForOther(GLFWwindow* window, bool install_callbacks)
  622. {
  623. return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Unknown);
  624. }
  625. void ImGui_ImplGlfw_Shutdown()
  626. {
  627. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  628. IM_ASSERT(bd != nullptr && "No platform backend to shutdown, or already shutdown?");
  629. ImGuiIO& io = ImGui::GetIO();
  630. if (bd->InstalledCallbacks)
  631. ImGui_ImplGlfw_RestoreCallbacks(bd->Window);
  632. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  633. if (bd->CanvasSelector)
  634. emscripten_set_wheel_callback(bd->CanvasSelector, nullptr, false, nullptr);
  635. #endif
  636. for (ImGuiMouseCursor cursor_n = 0; cursor_n < ImGuiMouseCursor_COUNT; cursor_n++)
  637. glfwDestroyCursor(bd->MouseCursors[cursor_n]);
  638. // Windows: restore our WndProc hook
  639. #ifdef _WIN32
  640. ImGuiViewport* main_viewport = ImGui::GetMainViewport();
  641. ::SetWindowLongPtrW((HWND)main_viewport->PlatformHandleRaw, GWLP_WNDPROC, (LONG_PTR)bd->PrevWndProc);
  642. bd->PrevWndProc = nullptr;
  643. #endif
  644. io.BackendPlatformName = nullptr;
  645. io.BackendPlatformUserData = nullptr;
  646. io.BackendFlags &= ~(ImGuiBackendFlags_HasMouseCursors | ImGuiBackendFlags_HasSetMousePos | ImGuiBackendFlags_HasGamepad);
  647. IM_DELETE(bd);
  648. }
  649. static void ImGui_ImplGlfw_UpdateMouseData()
  650. {
  651. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  652. ImGuiIO& io = ImGui::GetIO();
  653. // (those braces are here to reduce diff with multi-viewports support in 'docking' branch)
  654. {
  655. GLFWwindow* window = bd->Window;
  656. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  657. const bool is_window_focused = true;
  658. #else
  659. const bool is_window_focused = glfwGetWindowAttrib(window, GLFW_FOCUSED) != 0;
  660. #endif
  661. if (is_window_focused)
  662. {
  663. // (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when io.ConfigNavMoveSetMousePos is enabled by user)
  664. if (io.WantSetMousePos)
  665. glfwSetCursorPos(window, (double)io.MousePos.x, (double)io.MousePos.y);
  666. // (Optional) Fallback to provide mouse position when focused (ImGui_ImplGlfw_CursorPosCallback already provides this when hovered or captured)
  667. if (bd->MouseWindow == nullptr)
  668. {
  669. double mouse_x, mouse_y;
  670. glfwGetCursorPos(window, &mouse_x, &mouse_y);
  671. bd->LastValidMousePos = ImVec2((float)mouse_x, (float)mouse_y);
  672. io.AddMousePosEvent((float)mouse_x, (float)mouse_y);
  673. }
  674. }
  675. }
  676. }
  677. static void ImGui_ImplGlfw_UpdateMouseCursor()
  678. {
  679. ImGuiIO& io = ImGui::GetIO();
  680. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  681. if ((io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) || glfwGetInputMode(bd->Window, GLFW_CURSOR) == GLFW_CURSOR_DISABLED)
  682. return;
  683. ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor();
  684. // (those braces are here to reduce diff with multi-viewports support in 'docking' branch)
  685. {
  686. GLFWwindow* window = bd->Window;
  687. if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor)
  688. {
  689. // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor
  690. glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN);
  691. }
  692. else
  693. {
  694. // Show OS mouse cursor
  695. // FIXME-PLATFORM: Unfocused windows seems to fail changing the mouse cursor with GLFW 3.2, but 3.3 works here.
  696. glfwSetCursor(window, bd->MouseCursors[imgui_cursor] ? bd->MouseCursors[imgui_cursor] : bd->MouseCursors[ImGuiMouseCursor_Arrow]);
  697. glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
  698. }
  699. }
  700. }
  701. // Update gamepad inputs
  702. static inline float Saturate(float v) { return v < 0.0f ? 0.0f : v > 1.0f ? 1.0f : v; }
  703. static void ImGui_ImplGlfw_UpdateGamepads()
  704. {
  705. ImGuiIO& io = ImGui::GetIO();
  706. if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
  707. return;
  708. io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
  709. #if GLFW_HAS_GAMEPAD_API && !defined(EMSCRIPTEN_USE_EMBEDDED_GLFW3)
  710. GLFWgamepadstate gamepad;
  711. if (!glfwGetGamepadState(GLFW_JOYSTICK_1, &gamepad))
  712. return;
  713. #define MAP_BUTTON(KEY_NO, BUTTON_NO, _UNUSED) do { io.AddKeyEvent(KEY_NO, gamepad.buttons[BUTTON_NO] != 0); } while (0)
  714. #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)
  715. #else
  716. int axes_count = 0, buttons_count = 0;
  717. const float* axes = glfwGetJoystickAxes(GLFW_JOYSTICK_1, &axes_count);
  718. const unsigned char* buttons = glfwGetJoystickButtons(GLFW_JOYSTICK_1, &buttons_count);
  719. if (axes_count == 0 || buttons_count == 0)
  720. return;
  721. #define MAP_BUTTON(KEY_NO, _UNUSED, BUTTON_NO) do { io.AddKeyEvent(KEY_NO, (buttons_count > BUTTON_NO && buttons[BUTTON_NO] == GLFW_PRESS)); } while (0)
  722. #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)
  723. #endif
  724. io.BackendFlags |= ImGuiBackendFlags_HasGamepad;
  725. MAP_BUTTON(ImGuiKey_GamepadStart, GLFW_GAMEPAD_BUTTON_START, 7);
  726. MAP_BUTTON(ImGuiKey_GamepadBack, GLFW_GAMEPAD_BUTTON_BACK, 6);
  727. MAP_BUTTON(ImGuiKey_GamepadFaceLeft, GLFW_GAMEPAD_BUTTON_X, 2); // Xbox X, PS Square
  728. MAP_BUTTON(ImGuiKey_GamepadFaceRight, GLFW_GAMEPAD_BUTTON_B, 1); // Xbox B, PS Circle
  729. MAP_BUTTON(ImGuiKey_GamepadFaceUp, GLFW_GAMEPAD_BUTTON_Y, 3); // Xbox Y, PS Triangle
  730. MAP_BUTTON(ImGuiKey_GamepadFaceDown, GLFW_GAMEPAD_BUTTON_A, 0); // Xbox A, PS Cross
  731. MAP_BUTTON(ImGuiKey_GamepadDpadLeft, GLFW_GAMEPAD_BUTTON_DPAD_LEFT, 13);
  732. MAP_BUTTON(ImGuiKey_GamepadDpadRight, GLFW_GAMEPAD_BUTTON_DPAD_RIGHT, 11);
  733. MAP_BUTTON(ImGuiKey_GamepadDpadUp, GLFW_GAMEPAD_BUTTON_DPAD_UP, 10);
  734. MAP_BUTTON(ImGuiKey_GamepadDpadDown, GLFW_GAMEPAD_BUTTON_DPAD_DOWN, 12);
  735. MAP_BUTTON(ImGuiKey_GamepadL1, GLFW_GAMEPAD_BUTTON_LEFT_BUMPER, 4);
  736. MAP_BUTTON(ImGuiKey_GamepadR1, GLFW_GAMEPAD_BUTTON_RIGHT_BUMPER, 5);
  737. MAP_ANALOG(ImGuiKey_GamepadL2, GLFW_GAMEPAD_AXIS_LEFT_TRIGGER, 4, -0.75f, +1.0f);
  738. MAP_ANALOG(ImGuiKey_GamepadR2, GLFW_GAMEPAD_AXIS_RIGHT_TRIGGER, 5, -0.75f, +1.0f);
  739. MAP_BUTTON(ImGuiKey_GamepadL3, GLFW_GAMEPAD_BUTTON_LEFT_THUMB, 8);
  740. MAP_BUTTON(ImGuiKey_GamepadR3, GLFW_GAMEPAD_BUTTON_RIGHT_THUMB, 9);
  741. MAP_ANALOG(ImGuiKey_GamepadLStickLeft, GLFW_GAMEPAD_AXIS_LEFT_X, 0, -0.25f, -1.0f);
  742. MAP_ANALOG(ImGuiKey_GamepadLStickRight, GLFW_GAMEPAD_AXIS_LEFT_X, 0, +0.25f, +1.0f);
  743. MAP_ANALOG(ImGuiKey_GamepadLStickUp, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, -0.25f, -1.0f);
  744. MAP_ANALOG(ImGuiKey_GamepadLStickDown, GLFW_GAMEPAD_AXIS_LEFT_Y, 1, +0.25f, +1.0f);
  745. MAP_ANALOG(ImGuiKey_GamepadRStickLeft, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, -0.25f, -1.0f);
  746. MAP_ANALOG(ImGuiKey_GamepadRStickRight, GLFW_GAMEPAD_AXIS_RIGHT_X, 2, +0.25f, +1.0f);
  747. MAP_ANALOG(ImGuiKey_GamepadRStickUp, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, -0.25f, -1.0f);
  748. MAP_ANALOG(ImGuiKey_GamepadRStickDown, GLFW_GAMEPAD_AXIS_RIGHT_Y, 3, +0.25f, +1.0f);
  749. #undef MAP_BUTTON
  750. #undef MAP_ANALOG
  751. }
  752. void ImGui_ImplGlfw_NewFrame()
  753. {
  754. ImGuiIO& io = ImGui::GetIO();
  755. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  756. IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplGlfw_InitForXXX()?");
  757. // Setup display size (every frame to accommodate for window resizing)
  758. int w, h;
  759. int display_w, display_h;
  760. glfwGetWindowSize(bd->Window, &w, &h);
  761. glfwGetFramebufferSize(bd->Window, &display_w, &display_h);
  762. io.DisplaySize = ImVec2((float)w, (float)h);
  763. if (w > 0 && h > 0)
  764. io.DisplayFramebufferScale = ImVec2((float)display_w / (float)w, (float)display_h / (float)h);
  765. // Setup time step
  766. // (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)
  767. double current_time = glfwGetTime();
  768. if (current_time <= bd->Time)
  769. current_time = bd->Time + 0.00001f;
  770. io.DeltaTime = bd->Time > 0.0 ? (float)(current_time - bd->Time) : (float)(1.0f / 60.0f);
  771. bd->Time = current_time;
  772. ImGui_ImplGlfw_UpdateMouseData();
  773. ImGui_ImplGlfw_UpdateMouseCursor();
  774. // Update game controllers (if enabled and available)
  775. ImGui_ImplGlfw_UpdateGamepads();
  776. }
  777. // GLFW doesn't provide a portable sleep function
  778. void ImGui_ImplGlfw_Sleep(int milliseconds)
  779. {
  780. #ifdef _WIN32
  781. ::Sleep(milliseconds);
  782. #else
  783. usleep(milliseconds * 1000);
  784. #endif
  785. }
  786. #ifdef EMSCRIPTEN_USE_EMBEDDED_GLFW3
  787. static EM_BOOL ImGui_ImplGlfw_OnCanvasSizeChange(int event_type, const EmscriptenUiEvent* event, void* user_data)
  788. {
  789. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)user_data;
  790. double canvas_width, canvas_height;
  791. emscripten_get_element_css_size(bd->CanvasSelector, &canvas_width, &canvas_height);
  792. glfwSetWindowSize(bd->Window, (int)canvas_width, (int)canvas_height);
  793. return true;
  794. }
  795. static EM_BOOL ImGui_ImplEmscripten_FullscreenChangeCallback(int event_type, const EmscriptenFullscreenChangeEvent* event, void* user_data)
  796. {
  797. ImGui_ImplGlfw_Data* bd = (ImGui_ImplGlfw_Data*)user_data;
  798. double canvas_width, canvas_height;
  799. emscripten_get_element_css_size(bd->CanvasSelector, &canvas_width, &canvas_height);
  800. glfwSetWindowSize(bd->Window, (int)canvas_width, (int)canvas_height);
  801. return true;
  802. }
  803. // 'canvas_selector' is a CSS selector. The event listener is applied to the first element that matches the query.
  804. // STRING MUST PERSIST FOR THE APPLICATION DURATION. PLEASE USE A STRING LITERAL OR ENSURE POINTER WILL STAY VALID.
  805. void ImGui_ImplGlfw_InstallEmscriptenCallbacks(GLFWwindow*, const char* canvas_selector)
  806. {
  807. IM_ASSERT(canvas_selector != nullptr);
  808. ImGui_ImplGlfw_Data* bd = ImGui_ImplGlfw_GetBackendData();
  809. IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplGlfw_InitForXXX()?");
  810. bd->CanvasSelector = canvas_selector;
  811. emscripten_set_resize_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, bd, false, ImGui_ImplGlfw_OnCanvasSizeChange);
  812. emscripten_set_fullscreenchange_callback(EMSCRIPTEN_EVENT_TARGET_DOCUMENT, bd, false, ImGui_ImplEmscripten_FullscreenChangeCallback);
  813. // Change the size of the GLFW window according to the size of the canvas
  814. ImGui_ImplGlfw_OnCanvasSizeChange(EMSCRIPTEN_EVENT_RESIZE, {}, bd);
  815. // Register Emscripten Wheel callback to workaround issue in Emscripten GLFW Emulation (#6096)
  816. // We intentionally do not check 'if (install_callbacks)' here, as some users may set it to false and call GLFW callback themselves.
  817. // FIXME: May break chaining in case user registered their own Emscripten callback?
  818. emscripten_set_wheel_callback(bd->CanvasSelector, nullptr, false, ImGui_ImplEmscripten_WheelCallback);
  819. }
  820. #elif defined(EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3)
  821. // When using --use-port=contrib.glfw3 for the GLFW implementation, you can override the behavior of this call
  822. // by invoking emscripten_glfw_make_canvas_resizable afterward.
  823. // See https://github.com/pongasoft/emscripten-glfw/blob/master/docs/Usage.md#how-to-make-the-canvas-resizable-by-the-user for an explanation
  824. void ImGui_ImplGlfw_InstallEmscriptenCallbacks(GLFWwindow* window, const char* canvas_selector)
  825. {
  826. GLFWwindow* w = (GLFWwindow*)(EM_ASM_INT({ return Module.glfwGetWindow(UTF8ToString($0)); }, canvas_selector));
  827. IM_ASSERT(window == w); // Sanity check
  828. IM_UNUSED(w);
  829. emscripten_glfw_make_canvas_resizable(window, "window", nullptr);
  830. }
  831. #endif // #ifdef EMSCRIPTEN_USE_PORT_CONTRIB_GLFW3
  832. //-----------------------------------------------------------------------------
  833. #if defined(__clang__)
  834. #pragma clang diagnostic pop
  835. #endif
  836. #endif // #ifndef IMGUI_DISABLE