enum
ImGui::ImGuiSelectableFlags
Overview
Defined in:
types.crEnum Members
-
None =
0 -
DontClosePopups =
1 -
Clicking this doesn't close parent popup window
-
SpanAllColumns =
2 -
Frame will span all columns of its container table (text will still fit in current column)
-
AllowDoubleClick =
4 -
Generate press events on double clicks too
-
Disabled =
8 -
Cannot be selected, display grayed out text
-
AllowOverlap =
16 -
(WIP) Hit testing to allow subsequent widgets to overlap this one
-
All =
31
Instance Method Summary
-
#allow_double_click?
Returns
trueif this enum value containsAllowDoubleClick -
#allow_overlap?
Returns
trueif this enum value containsAllowOverlap -
#disabled?
Returns
trueif this enum value containsDisabled -
#dont_close_popups?
Returns
trueif this enum value containsDontClosePopups -
#none?
Returns
trueif this enum value containsNone -
#span_all_columns?
Returns
trueif this enum value containsSpanAllColumns