imgui
imgui copied to clipboard
Dear ImGui Addons Branch = plain unmodified dear imgui plus some extra addon.
In order to change titlebar background color,I hope to provide titlebar drawing function as like ImWindow(https://github.com/thennequin/ImWindow.git branch:titlebar) 
Hello good evening, I'm having problems compiling your lib in my project, a good part of the implementations are compiling correctly in my MINGW compiler on a Windows machine. However,...
I use ImGui as a dll by setting ```IMGUI_API``` to either export or import symbols appropriately - currently the addons are unusable for me because the interface (forward declarations of...
My operating system is Windows 10 64-bits and the system's language is chinese. Here I have a folder, its cotents show like these:  When I use the IMGUIFs::Dialog and...
As I read status of current implementation is not good, but I did some improvements for "BadCodeEditor" (not another one) and I want to reimplement folding in this method but...
I got the dialog to pop up and show the current dir. but the opengl window frame the dialog is being drawn on is following the mouse motion I make....
When windows dpi scaling is respected, for example: ``` static float scale = 1.0; auto currentMonitorScale = getWindow().getCurrentMonitorContentScale(); // this is glfwGetWindowContentScale() if (currentMonitorScale.y != scale) { ImGui::GetStyle().ScaleAllSizes(currentMonitorScale.y / scale);...