Package net.minecraft.client.gui.widget
Class ButtonListWidget.ButtonEntry
java.lang.Object
net.minecraft.client.gui.widget.EntryListWidget.Entry<E>
net.minecraft.client.gui.widget.ElementListWidget.Entry<ButtonListWidget.ButtonEntry>
net.minecraft.client.gui.widget.ButtonListWidget.ButtonEntry
- All Implemented Interfaces:
Element
,ParentElement
- Enclosing class:
- ButtonListWidget
@Environment(CLIENT) public static class ButtonListWidget.ButtonEntry extends ElementListWidget.Entry<ButtonListWidget.ButtonEntry>
-
Field Summary
Fields Modifier and Type Field Description private List<AbstractButtonWidget>
buttons
private Map<Option,AbstractButtonWidget>
field_27983
-
Constructor Summary
Constructors Modifier Constructor Description private
ButtonEntry(Map<Option,AbstractButtonWidget> map)
-
Method Summary
Modifier and Type Method Description List<? extends Element>
children()
Gets a list of all child GUI elements.static ButtonListWidget.ButtonEntry
create(GameOptions options, int width, Option option)
static ButtonListWidget.ButtonEntry
create(GameOptions options, int width, Option firstOption, Option secondOption)
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.Methods inherited from class net.minecraft.client.gui.widget.ElementListWidget.Entry
getFocused, isDragging, setDragging, setFocused
Methods inherited from class net.minecraft.client.gui.widget.EntryListWidget.Entry
isMouseOver
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minecraft.client.gui.Element
isMouseOver, mouseMoved
Methods inherited from interface net.minecraft.client.gui.ParentElement
changeFocus, charTyped, focusOn, hoveredElement, keyPressed, keyReleased, mouseClicked, mouseDragged, mouseReleased, mouseScrolled, setInitialFocus
-
Field Details
-
field_27983
-
buttons
-
-
Constructor Details
-
ButtonEntry
-
-
Method Details
-
create
-
create
public static ButtonListWidget.ButtonEntry create(GameOptions options, int width, Option firstOption, @Nullable Option secondOption) -
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:
render
in classEntryListWidget.Entry<ButtonListWidget.ButtonEntry>
- 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
-
children
Gets a list of all child GUI elements.
-