Class AbstractPressableButtonWidget

All Implemented Interfaces:
Drawable, Element
Direct Known Subclasses:
BeaconScreen.BaseButtonWidget, ButtonWidget, CheckboxWidget, CyclingButtonWidget

@Environment(CLIENT)
public abstract class AbstractPressableButtonWidget
extends AbstractButtonWidget
Mappings:
Namespace Name
official dro
intermediary net/minecraft/class_4264
named net/minecraft/client/gui/widget/AbstractPressableButtonWidget
  • Constructor Details

    • AbstractPressableButtonWidget

      public AbstractPressableButtonWidget​(int x, int y, int width, int height, Text message)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldrs;<init>(IIIILoi;)V
      intermediary <init> Lnet/minecraft/class_339;<init>(IIIILnet/minecraft/class_2561;)V
      named <init> Lnet/minecraft/client/gui/widget/AbstractButtonWidget;<init>(IIIILnet/minecraft/text/Text;)V
  • Method Details

    • onPress

      public abstract void onPress()
      Mappings:
      Namespace Name Mixin selector
      official b Ldro;b()V
      intermediary method_25306 Lnet/minecraft/class_4264;method_25306()V
      named onPress Lnet/minecraft/client/gui/widget/AbstractPressableButtonWidget;onPress()V
    • onClick

      public void onClick​(double mouseX, double mouseY)
      Overrides:
      onClick in class AbstractButtonWidget
      Mappings:
      Namespace Name Mixin selector
      official a Ldrs;a(DD)V
      intermediary method_25348 Lnet/minecraft/class_339;method_25348(DD)V
      named onClick Lnet/minecraft/client/gui/widget/AbstractButtonWidget;onClick(DD)V
    • keyPressed

      public boolean keyPressed​(int keyCode, int scanCode, int modifiers)
      Callback for when a key down event has been captured. The key code is identified by the constants in GLFW class.
      Parameters:
      keyCode - the named key code of the event as described in the GLFW class
      scanCode - the unique/platform-specific scan code of the keyboard input
      modifiers - a GLFW bitfield describing the modifier keys that are held down (see GLFW Modifier key flags)
      Returns:
      true to indicate that the event handling is successful/valid
      See Also:
      Keyboard.onKey(long, int, int, int, int), GLFW.GLFW_KEY_Q, GLFWKeyCallbackI.invoke(long, int, int, int, int)
      Mappings:
      Namespace Name Mixin selector
      official a Ldst;a(III)Z
      intermediary method_25404 Lnet/minecraft/class_364;method_25404(III)Z
      named keyPressed Lnet/minecraft/client/gui/Element;keyPressed(III)Z