MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ImGuiButtonFlags_

Enum ImGuiButtonFlags_

KBotExt/imgui/imgui.h:1658–1668  ·  view source on GitHub ↗

Flags for InvisibleButton() [extended in imgui_internal.h]

Source from the content-addressed store, hash-verified

1656
1657// Flags for InvisibleButton() [extended in imgui_internal.h]
1658enum 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()
1671enum ImGuiColorEditFlags_

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected