Class ControlsListWidget.KeyBindingEntry
java.lang.Object
net.minecraft.client.gui.widget.EntryListWidget.Entry<E>
net.minecraft.client.gui.widget.ElementListWidget.Entry<ControlsListWidget.Entry>
net.minecraft.client.gui.screen.option.ControlsListWidget.Entry
net.minecraft.client.gui.screen.option.ControlsListWidget.KeyBindingEntry
- All Implemented Interfaces:
Element,ParentElement
- Enclosing class:
- ControlsListWidget
@Environment(CLIENT) public class ControlsListWidget.KeyBindingEntry extends ControlsListWidget.Entry
- Mappings:
Namespace Name official dvv$cintermediary net/minecraft/class_459$class_462named net/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry
-
Field Summary
Fields Modifier and Type Field Description private KeyBindingbindingprivate TextbindingNameprivate ButtonWidgeteditButtonprivate ButtonWidgetresetButton -
Constructor Summary
Constructors Modifier Constructor Description privateKeyBindingEntry(KeyBinding binding, Text text) -
Method Summary
Modifier and Type Method Description List<? extends Element>children()Gets a list of all child GUI elements.booleanmouseClicked(double mouseX, double mouseY, int button)Callback for when a mouse button down event has been captured.booleanmouseReleased(double mouseX, double mouseY, int button)Callback for when a mouse button release event has been captured.voidrender(MatrixStack matrices, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta)Renders an entry in a list.Methods inherited from class net.minecraft.client.gui.widget.ElementListWidget.Entry
getFocused, isDragging, setDragging, setFocusedMethods inherited from class net.minecraft.client.gui.widget.EntryListWidget.Entry
isMouseOverMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.client.gui.Element
isMouseOver, mouseMovedMethods inherited from interface net.minecraft.client.gui.ParentElement
changeFocus, charTyped, focusOn, hoveredElement, keyPressed, keyReleased, mouseDragged, mouseScrolled, setInitialFocus
-
Field Details
-
binding
- Mappings:
Namespace Name Mixin selector official bLdvv$c;b:Ldqh;intermediary field_2740Lnet/minecraft/class_459$class_462;field_2740:Lnet/minecraft/class_304;named bindingLnet/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry;binding:Lnet/minecraft/client/option/KeyBinding;
-
bindingName
- Mappings:
Namespace Name Mixin selector official cLdvv$c;c:Loi;intermediary field_2741Lnet/minecraft/class_459$class_462;field_2741:Lnet/minecraft/class_2561;named bindingNameLnet/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry;bindingName:Lnet/minecraft/text/Text;
-
editButton
- Mappings:
Namespace Name Mixin selector official dLdvv$c;d:Ldru;intermediary field_2739Lnet/minecraft/class_459$class_462;field_2739:Lnet/minecraft/class_4185;named editButtonLnet/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry;editButton:Lnet/minecraft/client/gui/widget/ButtonWidget;
-
resetButton
- Mappings:
Namespace Name Mixin selector official eLdvv$c;e:Ldru;intermediary field_2743Lnet/minecraft/class_459$class_462;field_2743:Lnet/minecraft/class_4185;named resetButtonLnet/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry;resetButton:Lnet/minecraft/client/gui/widget/ButtonWidget;
-
-
Constructor Details
-
KeyBindingEntry
- Mappings:
Namespace Name Mixin selector official <init>Ldvv$c;<init>(Ldvv;Ldqh;Loi;)Vintermediary <init>Lnet/minecraft/class_459$class_462;<init>(Lnet/minecraft/class_459;Lnet/minecraft/class_304;Lnet/minecraft/class_2561;)Vnamed <init>Lnet/minecraft/client/gui/screen/option/ControlsListWidget$KeyBindingEntry;<init>(Lnet/minecraft/client/gui/screen/option/ControlsListWidget;Lnet/minecraft/client/option/KeyBinding;Lnet/minecraft/text/Text;)V
-
-
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)Renders an entry in a list.- Specified by:
renderin classEntryListWidget.Entry<ControlsListWidget.Entry>- Parameters:
matrices- the matrix stack used for renderingindex- the index of the entryy- the Y coordinate of the entryx- the X coordinate of the entryentryWidth- the width of the entryentryHeight- the height of the entrymouseX- the X coordinate of the mousemouseY- the Y coordinate of the mousehovered- whether the mouse is hovering over the entry- Mappings:
Namespace Name Mixin selector official aLdrq$a;a(Ldlr;IIIIIIIZF)Vintermediary method_25343Lnet/minecraft/class_350$class_351;method_25343(Lnet/minecraft/class_4587;IIIIIIIZF)Vnamed renderLnet/minecraft/client/gui/widget/EntryListWidget$Entry;render(Lnet/minecraft/client/util/math/MatrixStack;IIIIIIIZF)V
-
children
Gets a list of all child GUI elements.- Mappings:
Namespace Name Mixin selector official aA_Ldss;aA_()Ljava/util/List;intermediary method_25396Lnet/minecraft/class_4069;method_25396()Ljava/util/List;named childrenLnet/minecraft/client/gui/ParentElement;children()Ljava/util/List;
-
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 inGLFWclass.- Parameters:
mouseX- the X coordinate of the mousemouseY- the Y coordinate of the mousebutton- the mouse button number- Returns:
trueto indicate that the event handling is successful/valid- See Also:
Mouse.onMouseButton(long, int, int, int),GLFW.GLFW_MOUSE_BUTTON_1- Mappings:
Namespace Name Mixin selector official aLdst;a(DDI)Zintermediary method_25402Lnet/minecraft/class_364;method_25402(DDI)Znamed mouseClickedLnet/minecraft/client/gui/Element;mouseClicked(DDI)Z
-
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 inGLFWclass.- Parameters:
mouseX- the X coordinate of the mousemouseY- the Y coordinate of the mousebutton- the mouse button number- Returns:
trueto indicate that the event handling is successful/valid- See Also:
Mouse.onMouseButton(long, int, int, int),GLFW.GLFW_MOUSE_BUTTON_1- Mappings:
Namespace Name Mixin selector official cLdst;c(DDI)Zintermediary method_25406Lnet/minecraft/class_364;method_25406(DDI)Znamed mouseReleasedLnet/minecraft/client/gui/Element;mouseReleased(DDI)Z
-