ImWindow
ImWindow copied to clipboard
Window and GUI system based on Dear ImGui from OCornut
First over all, thanks a lot for sharing your code : this is a great idea, and an extremely interesting feature. Since we have everything available, of course, we can...
Hi, I would like to use your docking system but I have no idea how should I go about to integrate the docking into my editor. Can I get some...
Simple way to create custom dialog box with ImGui and ImWindow. Example of use: ```cpp bool MyDialogBoxCallback(void* pUserData) { ImGui::Text((const char*)pUserData); if (ImGui::Button("Close")) return true; return false; } ImwWindowManager::GetInstance()->ShowDialogBox( MyDialogBoxCallback,...
Thank you for providing a convenient window management tool. I found that under the touch screen operation, each control needs to be clicked twice before responding. I tried a variety...