ImWindow icon indicating copy to clipboard operation
ImWindow copied to clipboard

Window and GUI system based on Dear ImGui from OCornut

Results 14 ImWindow issues
Sort by recently updated
recently updated
newest added

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...

help wanted

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...

help wanted

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,...

enhancement

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...