Class RealmsMainScreen.SnapshotEntry
java.lang.Object
net.minecraft.client.gui.widget.EntryListWidget.Entry<RealmsMainScreen.Entry>
net.minecraft.client.gui.widget.AlwaysSelectedEntryListWidget.Entry<RealmsMainScreen.Entry>
net.minecraft.client.realms.gui.screen.RealmsMainScreen.Entry
net.minecraft.client.realms.gui.screen.RealmsMainScreen.SnapshotEntry
- All Implemented Interfaces:
Element
,Narratable
,Navigable
- Enclosing class:
RealmsMainScreen
- Mappings:
Namespace Name named net/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry
intermediary net/minecraft/class_4325$class_8840
official fal$a
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final int
private final RealmsServer
private static final Text
private final TooltipState
Fields inherited from interface net.minecraft.client.gui.Element
MAX_DOUBLE_CLICK_INTERVAL
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
keyPressed
(int keyCode, int scanCode, int modifiers) Callback for when a key down event has been captured.boolean
mouseClicked
(double mouseX, double mouseY, int button) Callback for when a mouse button down event has been captured.void
render
(DrawContext context, int index, int y, int x, int entryWidth, int entryHeight, int mouseX, int mouseY, boolean hovered, float tickDelta) Renders an entry in a list.private void
Methods inherited from class net.minecraft.client.realms.gui.screen.RealmsMainScreen.Entry
drawOwnerOrExpiredText, drawTrimmedText, getDescriptionY, getNameX, getNameY, getStatusY, getTextHeight, getVersionRight, renderStatusIcon
Methods inherited from class net.minecraft.client.gui.widget.AlwaysSelectedEntryListWidget.Entry
appendNarrations
Methods inherited from class net.minecraft.client.gui.widget.EntryListWidget.Entry
drawBorder, isFocused, isMouseOver, setFocused
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
charTyped, getFocusedPath, getNavigationFocus, getNavigationPath, keyReleased, mouseDragged, mouseMoved, mouseReleased, mouseScrolled
Methods inherited from interface net.minecraft.client.gui.navigation.Navigable
getNavigationOrder
-
Field Details
-
START_TEXT
- Mappings:
Namespace Name Mixin selector named START_TEXT
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;START_TEXT:Lnet/minecraft/text/Text;
intermediary field_46676
Lnet/minecraft/class_4325$class_8840;field_46676:Lnet/minecraft/class_2561;
official c
Lfal$a;c:Lxp;
-
field_46677
private static final int field_46677- See Also:
- Mappings:
Namespace Name Mixin selector named field_46677
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;field_46677:I
intermediary field_46677
Lnet/minecraft/class_4325$class_8840;field_46677:I
official d
Lfal$a;d:I
-
tooltip
- Mappings:
Namespace Name Mixin selector named tooltip
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;tooltip:Lnet/minecraft/client/gui/tooltip/TooltipState;
intermediary field_46678
Lnet/minecraft/class_4325$class_8840;field_46678:Lnet/minecraft/class_9110;
official e
Lfal$a;e:Lfiu;
-
server
- Mappings:
Namespace Name Mixin selector named server
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;server:Lnet/minecraft/client/realms/dto/RealmsServer;
intermediary field_46679
Lnet/minecraft/class_4325$class_8840;field_46679:Lnet/minecraft/class_4877;
official f
Lfal$a;f:Lfbh;
-
-
Constructor Details
-
SnapshotEntry
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;<init>(Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen;Lnet/minecraft/client/realms/dto/RealmsServer;)V
intermediary <init>
Lnet/minecraft/class_4325$class_8840;<init>(Lnet/minecraft/class_4325;Lnet/minecraft/class_4877;)V
official <init>
Lfal$a;<init>(Lfal;Lfbh;)V
-
-
Method Details
-
render
public void render(DrawContext context, 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<RealmsMainScreen.Entry>
- Parameters:
index
- 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 named render
Lnet/minecraft/client/gui/widget/EntryListWidget$Entry;render(Lnet/minecraft/client/gui/DrawContext;IIIIIIIZF)V
intermediary method_25343
Lnet/minecraft/class_350$class_351;method_25343(Lnet/minecraft/class_332;IIIIIIIZF)V
official a
Lfhb$a;a(Lfgt;IIIIIIIZF)V
-
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
- Overrides:
mouseClicked
in classAlwaysSelectedEntryListWidget.Entry<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:
- Mappings:
Namespace Name Mixin selector named mouseClicked
Lnet/minecraft/client/gui/Element;mouseClicked(DDI)Z
intermediary method_25402
Lnet/minecraft/class_364;method_25402(DDI)Z
official a
Lfjc;a(DDI)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.- 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:
- Mappings:
Namespace Name Mixin selector named keyPressed
Lnet/minecraft/client/gui/Element;keyPressed(III)Z
intermediary method_25404
Lnet/minecraft/class_364;method_25404(III)Z
official a
Lfjc;a(III)Z
-
showPopup
private void showPopup()- Mappings:
Namespace Name Mixin selector named showPopup
Lnet/minecraft/client/realms/gui/screen/RealmsMainScreen$SnapshotEntry;showPopup()V
intermediary method_54344
Lnet/minecraft/class_4325$class_8840;method_54344()V
official c
Lfal$a;c()V
-
getNarration
- Specified by:
getNarration
in classAlwaysSelectedEntryListWidget.Entry<RealmsMainScreen.Entry>
- Mappings:
Namespace Name Mixin selector named getNarration
Lnet/minecraft/client/gui/widget/AlwaysSelectedEntryListWidget$Entry;getNarration()Lnet/minecraft/text/Text;
intermediary method_37006
Lnet/minecraft/class_4280$class_4281;method_37006()Lnet/minecraft/class_2561;
official a
Lfic$a;a()Lxp;
-