Class RealmsMainScreen.RealmSelectionList
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.widget.EntryListWidget<E>
net.minecraft.client.gui.widget.AlwaysSelectedEntryListWidget<E>
net.minecraft.client.realms.RealmsObjectSelectionList<RealmsMainScreen.Entry>
net.minecraft.client.realms.gui.screen.RealmsMainScreen.RealmSelectionList
- All Implemented Interfaces:
Drawable
,Element
,ParentElement
- Enclosing class:
- RealmsMainScreen
@Environment(CLIENT) class RealmsMainScreen.RealmSelectionList extends RealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name official dmb$f
intermediary net/minecraft/class_4325$class_4329
named net/minecraft/client/realms/gui/screen/RealmsMainScreen$RealmSelectionList
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraft.client.gui.widget.AlwaysSelectedEntryListWidget
AlwaysSelectedEntryListWidget.Entry<E extends AlwaysSelectedEntryListWidget.Entry<E>>
Nested classes/interfaces inherited from class net.minecraft.client.gui.widget.EntryListWidget
EntryListWidget.MoveDirection
-
Field Summary
Fields Modifier and Type Field Description private boolean
field_25723
Fields inherited from class net.minecraft.client.gui.widget.EntryListWidget
bottom, centerListVertically, client, headerHeight, height, itemHeight, left, right, top, width
Fields inherited from class net.minecraft.client.gui.DrawableHelper
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE
-
Constructor Summary
Constructors Constructor Description RealmSelectionList()
-
Method Summary
Modifier and Type Method Description void
clear()
int
getMaxPosition()
int
getRowWidth()
boolean
isFocused()
void
itemClicked(int cursorY, int selectionIndex, double mouseX, double mouseY, int listWidth)
boolean
keyPressed(int keyCode, int scanCode, int modifiers)
Callback for when a key down event has been captured.int
method_30161(AlwaysSelectedEntryListWidget.Entry entry)
boolean
mouseClicked(double mouseX, double mouseY, int button)
Callback for when a mouse button down event has been captured.void
setSelected(int index)
void
setSelected(AlwaysSelectedEntryListWidget.Entry entry)
Methods inherited from class net.minecraft.client.realms.RealmsObjectSelectionList
addEntry, getItemCount, getRowLeft, getRowTop, getScrollbarPositionX, replaceEntries, setSelectedItem
Methods inherited from class net.minecraft.client.gui.widget.AlwaysSelectedEntryListWidget
changeFocus
Methods inherited from class net.minecraft.client.gui.widget.EntryListWidget
centerScrollOn, children, clearEntries, clickedHeader, ensureVisible, getEntry, getEntryAtPosition, getFocused, getMaxScroll, getScrollAmount, getSelected, isMouseOver, isSelectedItem, method_30015, method_31322, method_31323, method_31383, mouseDragged, mouseReleased, mouseScrolled, moveSelection, moveSelectionIf, remove, removeEntry, render, renderBackground, renderDecorations, renderHeader, renderList, setLeftPos, setRenderHeader, setRenderSelection, setScrollAmount, setSelected, updateScrollingState, updateSize
Methods inherited from class net.minecraft.client.gui.AbstractParentElement
isDragging, setDragging, setFocused
Methods inherited from class net.minecraft.client.gui.DrawableHelper
drawCenteredString, drawCenteredText, drawHorizontalLine, drawSprite, drawStringWithShadow, drawTexture, drawTexture, drawTexture, drawTexture, drawTextWithShadow, drawVerticalLine, fill, fillGradient, fillGradient, getZOffset, method_29343, method_33284, setZOffset
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
mouseMoved
Methods inherited from interface net.minecraft.client.gui.ParentElement
charTyped, focusOn, hoveredElement, keyReleased, setInitialFocus
-
Field Details
-
field_25723
private boolean field_25723- Mappings:
Namespace Name Mixin selector official o
Ldmb$f;o:Z
intermediary field_25723
Lnet/minecraft/class_4325$class_4329;field_25723:Z
named field_25723
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$RealmSelectionList;field_25723:Z
-
-
Constructor Details
-
RealmSelectionList
public RealmSelectionList()
-
-
Method Details
-
clear
public void clear()- Overrides:
clear
in classRealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official a
Lewg;a()V
intermediary method_25493
Lnet/minecraft/class_4904;method_25493()V
named clear
Lnet/minecraft/client/realms/RealmsObjectSelectionList;clear()V
-
method_30161
- Mappings:
Namespace Name Mixin selector official a
Ldmb$f;a(Ldmb$b;)I
intermediary method_30161
Lnet/minecraft/class_4325$class_4329;method_30161(Lnet/minecraft/class_4325$class_4866;)I
named method_30161
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$RealmSelectionList;method_30161(Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$Entry;)I
-
isFocused
public boolean isFocused()- Overrides:
isFocused
in classEntryListWidget<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official b
Ldrq;b()Z
intermediary method_25316
Lnet/minecraft/class_350;method_25316()Z
named isFocused
Lnet/minecraft/client/gui/widget/EntryListWidget;isFocused()Z
-
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 inGLFW
class.- Specified by:
keyPressed
in interfaceElement
- Specified by:
keyPressed
in interfaceParentElement
- Overrides:
keyPressed
in classEntryListWidget<RealmsMainScreen.Entry>
- Parameters:
keyCode
- the named key code of the event as described in theGLFW
classscanCode
- the unique/platform-specific scan code of the keyboard inputmodifiers
- 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
-
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 inGLFW
class.- Specified by:
mouseClicked
in interfaceElement
- Specified by:
mouseClicked
in interfaceParentElement
- Overrides:
mouseClicked
in classEntryListWidget<RealmsMainScreen.Entry>
- Parameters:
mouseX
- the X coordinate of the mousemouseY
- the Y coordinate of the mousebutton
- 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
- Mappings:
Namespace Name Mixin selector official a
Ldst;a(DDI)Z
intermediary method_25402
Lnet/minecraft/class_364;method_25402(DDI)Z
named mouseClicked
Lnet/minecraft/client/gui/Element;mouseClicked(DDI)Z
-
setSelected
public void setSelected(int index)- Overrides:
setSelected
in classRealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official a
Lewg;a(I)V
intermediary method_25489
Lnet/minecraft/class_4904;method_25489(I)V
named setSelected
Lnet/minecraft/client/realms/RealmsObjectSelectionList;setSelected(I)V
-
setSelected
- Mappings:
Namespace Name Mixin selector official b
Ldmb$f;b(Ldmb$b;)V
intermediary method_25024
Lnet/minecraft/class_4325$class_4329;method_25024(Lnet/minecraft/class_4325$class_4866;)V
named setSelected
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$RealmSelectionList;setSelected(Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$Entry;)V
-
itemClicked
public void itemClicked(int cursorY, int selectionIndex, double mouseX, double mouseY, int listWidth)- Overrides:
itemClicked
in classRealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official a
Lewg;a(IIDDI)V
intermediary method_25490
Lnet/minecraft/class_4904;method_25490(IIDDI)V
named itemClicked
Lnet/minecraft/client/realms/RealmsObjectSelectionList;itemClicked(IIDDI)V
-
getMaxPosition
public int getMaxPosition()- Overrides:
getMaxPosition
in classRealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official c
Ldrq;c()I
intermediary method_25317
Lnet/minecraft/class_350;method_25317()I
named getMaxPosition
Lnet/minecraft/client/gui/widget/EntryListWidget;getMaxPosition()I
-
getRowWidth
public int getRowWidth()- Overrides:
getRowWidth
in classRealmsObjectSelectionList<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector official d
Ldrq;d()I
intermediary method_25322
Lnet/minecraft/class_350;method_25322()I
named getRowWidth
Lnet/minecraft/client/gui/widget/EntryListWidget;getRowWidth()I
-