We have a C++ application that uses imgui extensively with very good results. We want to offer our users the possibility to write plugins in python, and to provide own controls for the plugins we would prefer that rendering of the plugin controls is done with the already active imgui context. Python has various imgui bindings (e.g. pyimgui, dearpygui). Is it possible to pass the already existing C++ imgui context to Python and draw windows, draw controls there, so they all show up in the common ui (in the same swap, with the same font ... etc)?
0
There are 0 best solutions below
Related Questions in IMGUI
- Inject imgui in non OpenGL android application
- ImGui rendering wrong characters (characters received from tcp sockets)
- Basic ImGui program doesn't render, leaks memory and crashes
- Can Dear ImGui tables be sorted from somewhere else?
- Proper image layout transitions between two Render Passes in Vulkan
- Imgui openGl Unreal engine game
- Dear ImGui without window in the window
- How to correctly handle Window resizing when using ImGui?
- How to render image in SpaiR / imgui-java with Vulkan?
- Visual Studio 2022 File not found in current source file's directory or in build system paths
- When exactly is the WinAPI drawing content to the screen?
- OpenGL texture is black when being rendered inside imgui
- ImGui-SFML cmake error when using git submodules
- ImGUI - Menu bar not showing up
- How to make imgui menu bar stick to the top of SDL window?
Related Questions in DEARPYGUI
- Set the font of the title of window independently
- Numpy arrays for dearpygui image data
- DearPyGUI sending a request
- error 1009 occurs in dearpygui python program
- pythonic popup messagebox in dearpygui (asyncio or sync way)
- Need to track down specific color line and get coordinates
- Dearpygui - Stacked bar chart not supported
- How to set right y axis ticks using Dearpygui
- DearPyGUI script won't start after wrapping it in a class
- How can i format a link for pytube?
- Is there a function in dearpygui that extracts the exact selection from a text input widget?
- DearPyGui add_file_extension not working in file dialog after moving to object-oriented approach
- Dearpygui Select File
- Incorrect converting from PIL image to DearPyGUI image
- How to play video file with audio with DearPyGUI (Python)?
Related Questions in PYIMGUI
- TypeError: a bytes-like object is required, not 'list' when using pyimgui.plot_lines()
- Rendering Triangle using PyImgui/PyOpenGL/GLFW stack
- Using imgui from a python plugin
- I can't install pyimgui library on fedora
- Imgui asertion error when loading custom font
- Is there a way to efficiently (realtime) convert numpy arrays into bytes in Python?
- Closing an Imgui window: this seems like it should be easy. How does one do it?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?