Flags for InvisibleButton() [extended in imgui_internal.h]
| 1656 | |
| 1657 | // Flags for InvisibleButton() [extended in imgui_internal.h] |
| 1658 | enum ImGuiButtonFlags_ |
| 1659 | { |
| 1660 | ImGuiButtonFlags_None = 0, |
| 1661 | ImGuiButtonFlags_MouseButtonLeft = 1 << 0, // React on left mouse button (default) |
| 1662 | ImGuiButtonFlags_MouseButtonRight = 1 << 1, // React on right mouse button |
| 1663 | ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, // React on center mouse button |
| 1664 | |
| 1665 | // [Internal] |
| 1666 | ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, |
| 1667 | ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, |
| 1668 | }; |
| 1669 | |
| 1670 | // Flags for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton() |
| 1671 | enum ImGuiColorEditFlags_ |
nothing calls this directly
no outgoing calls
no test coverage detected