
imgui - How do you open a file explorer dialogue in C++ ... - Stack ...
Jul 31, 2021 · I'm developing a desktop application with ImGui in C++, and I need the user to be able to search for a file on their machine with a file explorer. It was extremely easy to do with Python tkinter, b...
c++ - How to use vulkan with imgui? - Stack Overflow
Jan 6, 2025 · I want to ues vulkan with imgui, but encounter some problems. The details are as follows. Use glfw. I create renderpass with two subpass to render 3d object and imGui. The result is that I …
imgui - If checkbox is checked, output text in Console Application C++ ...
Jul 15, 2022 · How can I output some text if checkbox is checked without having unlimited outputs? I'm using C++ ImGui for my project. So when checkbox in ImGui menu is checked, it should output some …
imgui - How to center align text horizontally? - Stack Overflow
Nov 2, 2020 · 11 I am creating a text in ImGui. It automatically aligns right, how do I make just that one text align in the center? ImGui::Text("Example Text"); I don't believe there is a function to do this. I …
How to correctly handle Window resizing when using ImGui?
I am using ImGui with the aim of creating a Windows Application. One thing I have noticed and is troubling me a lot is when resizing the Window, it doesn't update the contents (buffers?) correctly,...
c++ - How to correctly Install ImGui? - Stack Overflow
Sep 17, 2020 · The problem seem to be a missing linking step, you need to tell your compilation/linking process to link to imgui library. When you include a header in C/C++ you are just letting the compiler …
Zoom in and out centered about the mouse cursor in 2D using ImGUI
Jan 2, 2025 · I have a 2D canvas used in a ImGUI context, that requires Zoom and Pan functionality. Currently the Pan functionality works fine. However the zoom functionality does scale but the result is …
ImGui sample code/basic initialisation not working (Windows and Linux)
Dec 28, 2020 · So now when I compile and run, it gets to the ImGui::Begin() and then crashes at that stage. I have tried it in a much smaller example where it is just the ImGui::Begin() and ImGui::End() …
Building imgui with cmake, vcpkg.json and glfw(linking error)
Sep 4, 2023 · 0 I have been trying to build imgui and glfw for my application using vcpkg and cmake. I am following an example available with sdl2 and imgui, I am getting linking errors when I follow the …
ImGUI Popup not showing up but executing the code
Sep 14, 2022 · I am making a program using ImGui and I want to display a PopUp if the input on one window is bad after clicking the button "OK". It enter the IF statement and execute the code but the …