Package imgui.flag

Class ImGuiButtonFlags

java.lang.Object
imgui.flag.ImGuiButtonFlags

public final class ImGuiButtonFlags extends Object
  • Field Details

    • None

      public static final int None
      Definition: 0
      See Also:
    • MouseButtonLeft

      public static final int MouseButtonLeft
      React on left mouse button (default)

      Definition: 1 << 0

      See Also:
    • MouseButtonRight

      public static final int MouseButtonRight
      React on right mouse button

      Definition: 1 << 1

      See Also:
    • MouseButtonMiddle

      public static final int MouseButtonMiddle
      React on center mouse button

      Definition: 1 << 2

      See Also:
    • MouseButtonMask_

      public static final int MouseButtonMask_
      [Internal]

      Definition: ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle

      See Also:
    • EnableNav

      public static final int EnableNav
      InvisibleButton(): do not disable navigation/tabbing. Otherwise disabled by default.

      Definition: 1 << 3

      See Also:
    • AllowOverlap

      public static final int AllowOverlap
      Hit testing will allow subsequent widgets to overlap this one. Require previous frame HoveredId to match before being usable. Shortcut to calling SetNextItemAllowOverlap().

      Definition: 1 << 12

      See Also: