• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // dear imgui: Platform Binding for OSX / Cocoa
2 // This needs to be used along with a Renderer (e.g. OpenGL2, OpenGL3, Vulkan, Metal..)
3 // [BETA] Beta bindings, not well tested. If you want a portable application, prefer using the Glfw or SDL platform bindings on Mac.
4 
5 // Issues:
6 // [ ] Platform: Keys are all generally very broken. Best using [event keycode] and not [event characters]..
7 // [ ] Platform: Mouse cursor shapes and visibility are not supported (see end of https://github.com/glfw/glfw/issues/427)
8 
9 @class NSEvent;
10 @class NSView;
11 
12 IMGUI_API bool        ImGui_ImplOSX_Init();
13 IMGUI_API void        ImGui_ImplOSX_Shutdown();
14 IMGUI_API void        ImGui_ImplOSX_NewFrame(NSView *_Nonnull view);
15 IMGUI_API bool        ImGui_ImplOSX_HandleEvent(NSEvent *_Nonnull event, NSView *_Nullable view);
16