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
- Getting lots of linker errors on linking cimgui
- How to use labels for ticks indefinitely like when no limits are specified in imgui?
- How to make a flashing image in imgui?
- (DearImGui, OpenGL 3.3): Rendering an imgui user interface on a texture
- Scaling entire imgui (glfw) interface
- ImGui Button doesn't recognize the click when the for loop is greater than 0?
- ImGui, with SDL2 Renderer, what is the point of the three separate NewFrame functions?
- Forgot to call ImGui::NewFrame()?
- How to set to specific scale in OpenGL?
- Make a window appear using Nuklear GUI library?
- Abort() has been called when trying to run ImPlot::BeginPlot in windows 10 visual studio 2022
- How to design page navigation system using ImGui
- IID_PPV_ARGS is not declared when compiling with wineg++
- Unable to find source of linking error in ImGui cpp repository
- ImGui don't recognize FreeGLUT?
Related Questions in DEARPYGUI
- error 1009 occurs in dearpygui python program
- DearPyGUI sending a request
- MessageBox in DearPyGui
- Cannot use DearPyGui function, like set_main_window_size, or add_drawing
- How to use a video logo for the DearPyGUI?
- Set initial axis limits while preserving pan/zoom in DearPyGui
- jupyter notebook's kernel keeps dying when using dearpygui
- How to draw a PIL image to a DearPyGui canvas?
- DearPyGui: Main window always on top
- Getting output from adb command in python pygui to populate combo
- An efficient way to fill a dearpygui table using pandas
- What does a "with" statement do without the "as"?
- Using imgui from a python plugin
- Dearpygui - built another window within an callback
- Can't add clicked handler for drawn figures using DearPyGui
Related Questions in PYIMGUI
- TypeError: a bytes-like object is required, not 'list' when using pyimgui.plot_lines()
- Using imgui from a python plugin
- Rendering Triangle using PyImgui/PyOpenGL/GLFW stack
- 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?
- Imgui asertion error when loading custom font
- I can't install pyimgui library on fedora
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?