Class ControlsListWidget.KeyBindingEntry

All Implemented Interfaces:
Element, ParentElement
Enclosing class:
ControlsListWidget

@Environment(CLIENT)
public class ControlsListWidget.KeyBindingEntry
extends ControlsListWidget.Entry
  • Field Details

    • binding

      private final KeyBinding binding
    • bindingName

      private final Text bindingName
    • editButton

      private final ButtonWidget editButton
    • resetButton

      private final ButtonWidget resetButton
  • Constructor Details

    • KeyBindingEntry

      private KeyBindingEntry​(KeyBinding binding, Text text)
  • Method Details

    • render

      public void render​(MatrixStack matrices, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta)
      Specified by:
      render in class EntryListWidget.Entry<ControlsListWidget.Entry>
    • children

      public List<? extends Element> children()
      Gets a list of all child GUI elements.
    • mouseClicked

      public boolean mouseClicked​(double mouseX, double mouseY, int button)
      Callback for when a mouse button down event has been captured. The button number is identified by the constants in GLFW class.
      Parameters:
      mouseX - the X coordinate of the mouse
      mouseY - the Y coordinate of the mouse
      button - the mouse button number
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mouse.onMouseButton(long, int, int, int), GLFW.GLFW_MOUSE_BUTTON_1
    • mouseReleased

      public boolean mouseReleased​(double mouseX, double mouseY, int button)
      Callback for when a mouse button release event has been captured. The button number is identified by the constants in GLFW class.
      Parameters:
      mouseX - the X coordinate of the mouse
      mouseY - the Y coordinate of the mouse
      button - the mouse button number
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Mouse.onMouseButton(long, int, int, int), GLFW.GLFW_MOUSE_BUTTON_1