Package net.minecraft.client.gui.screen
Class NoticeScreen
java.lang.Object
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.NoticeScreen
- All Implemented Interfaces:
Drawable,Element,Navigable,ParentElement
- Mappings:
Namespace Name official eswintermediary net/minecraft/class_403named net/minecraft/client/gui/screen/NoticeScreen
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraft.client.gui.screen.Screen
Screen.SelectedElementNarrationData -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Runnableprivate final Textprivate final Textprivate static final intprivate MultilineTextprivate final booleanFields inherited from class net.minecraft.client.gui.screen.Screen
client, height, OPTIONS_BACKGROUND_TEXTURE, textRenderer, title, widthFields inherited from interface net.minecraft.client.gui.Element
MAX_DOUBLE_CLICK_INTERVAL -
Constructor Summary
ConstructorsConstructorDescriptionNoticeScreen(Runnable actionHandler, Text title, Text notice) NoticeScreen(Runnable actionHandler, Text title, Text notice, Text buttonText, boolean shouldCloseOnEsc) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidinit()Called when a screen should be initialized.voidrender(DrawContext context, int mouseX, int mouseY, float delta) booleanChecks whether this screen should be closed when the escape key is pressed.Methods inherited from class net.minecraft.client.gui.screen.Screen
addDrawable, addDrawableChild, addElementNarrations, addScreenNarrations, addSelectableChild, applyKeyPressNarratorDelay, applyMouseMoveNarratorDelay, applyMousePressScrollNarratorDelay, applyNarratorModeChangeDelay, children, clearAndInit, clearChildren, close, filesDragged, findSelectedElementData, getMusic, getNavigationFocus, getTitle, getTooltipFromItem, handleTextClick, hasAltDown, hasControlDown, hasShiftDown, hasUsageText, hide, init, initTabNavigation, insertText, isCopy, isCut, isMouseOver, isPaste, isSelectAll, isValidCharacterForName, keyPressed, narrateScreenIfNarrationEnabled, onDisplayed, remove, removed, renderBackground, renderBackgroundTexture, renderWithTooltip, resize, setInitialFocus, setTooltip, setTooltip, setTooltip, setTooltip, shouldPause, switchFocus, tick, updateNarrator, wrapScreenErrorMethods inherited from class net.minecraft.client.gui.AbstractParentElement
getFocused, isDragging, setDragging, setFocusedMethods 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
mouseMovedMethods inherited from interface net.minecraft.client.gui.navigation.Navigable
getNavigationOrderMethods inherited from interface net.minecraft.client.gui.ParentElement
charTyped, focusOn, getFocusedPath, getNavigationPath, hoveredElement, isFocused, keyReleased, mouseClicked, mouseDragged, mouseReleased, mouseScrolled, setFocused
-
Field Details
-
NOTICE_TEXT_Y
private static final int NOTICE_TEXT_Y- See Also:
- Mappings:
Namespace Name Mixin selector official aLesw;a:Iintermediary field_39539Lnet/minecraft/class_403;field_39539:Inamed NOTICE_TEXT_YLnet/minecraft/client/gui/screen/NoticeScreen;NOTICE_TEXT_Y:I
-
notice
- Mappings:
Namespace Name Mixin selector official bLesw;b:Lsw;intermediary field_2346Lnet/minecraft/class_403;field_2346:Lnet/minecraft/class_2561;named noticeLnet/minecraft/client/gui/screen/NoticeScreen;notice:Lnet/minecraft/text/Text;
-
noticeLines
- Mappings:
Namespace Name Mixin selector official cLesw;c:Lepr;intermediary field_2348Lnet/minecraft/class_403;field_2348:Lnet/minecraft/class_5489;named noticeLinesLnet/minecraft/client/gui/screen/NoticeScreen;noticeLines:Lnet/minecraft/client/font/MultilineText;
-
actionHandler
- Mappings:
Namespace Name Mixin selector official jLesw;j:Ljava/lang/Runnable;intermediary field_2345Lnet/minecraft/class_403;field_2345:Ljava/lang/Runnable;named actionHandlerLnet/minecraft/client/gui/screen/NoticeScreen;actionHandler:Ljava/lang/Runnable;
-
buttonText
- Mappings:
Namespace Name Mixin selector official kLesw;k:Lsw;intermediary field_2349Lnet/minecraft/class_403;field_2349:Lnet/minecraft/class_2561;named buttonTextLnet/minecraft/client/gui/screen/NoticeScreen;buttonText:Lnet/minecraft/text/Text;
-
shouldCloseOnEsc
private final boolean shouldCloseOnEsc- Mappings:
Namespace Name Mixin selector official lLesw;l:Zintermediary field_39540Lnet/minecraft/class_403;field_39540:Znamed shouldCloseOnEscLnet/minecraft/client/gui/screen/NoticeScreen;shouldCloseOnEsc:Z
-
-
Constructor Details
-
NoticeScreen
- Mappings:
Namespace Name Mixin selector official <init>Lesw;<init>(Ljava/lang/Runnable;Lsw;Lsw;)Vintermediary <init>Lnet/minecraft/class_403;<init>(Ljava/lang/Runnable;Lnet/minecraft/class_2561;Lnet/minecraft/class_2561;)Vnamed <init>Lnet/minecraft/client/gui/screen/NoticeScreen;<init>(Ljava/lang/Runnable;Lnet/minecraft/text/Text;Lnet/minecraft/text/Text;)V
-
NoticeScreen
public NoticeScreen(Runnable actionHandler, Text title, Text notice, Text buttonText, boolean shouldCloseOnEsc) - Mappings:
Namespace Name Mixin selector official <init>Lesw;<init>(Ljava/lang/Runnable;Lsw;Lsw;Lsw;Z)Vintermediary <init>Lnet/minecraft/class_403;<init>(Ljava/lang/Runnable;Lnet/minecraft/class_2561;Lnet/minecraft/class_2561;Lnet/minecraft/class_2561;Z)Vnamed <init>Lnet/minecraft/client/gui/screen/NoticeScreen;<init>(Ljava/lang/Runnable;Lnet/minecraft/text/Text;Lnet/minecraft/text/Text;Lnet/minecraft/text/Text;Z)V
-
-
Method Details
-
getNarratedTitle
- Overrides:
getNarratedTitlein classScreen- Mappings:
Namespace Name Mixin selector official av_Leui;av_()Lsw;intermediary method_25435Lnet/minecraft/class_437;method_25435()Lnet/minecraft/class_2561;named getNarratedTitleLnet/minecraft/client/gui/screen/Screen;getNarratedTitle()Lnet/minecraft/text/Text;
-
init
protected void init()Called when a screen should be initialized.This method is called when this screen is opened or resized.
This should call
Screen.setInitialFocus(net.minecraft.client.gui.Element)to set the element that is initially focused. -
render
- Specified by:
renderin interfaceDrawable- Overrides:
renderin classScreen- Mappings:
Namespace Name Mixin selector official aLepz;a(Leoq;IIF)Vintermediary method_25394Lnet/minecraft/class_4068;method_25394(Lnet/minecraft/class_332;IIF)Vnamed renderLnet/minecraft/client/gui/Drawable;render(Lnet/minecraft/client/gui/DrawContext;IIF)V
-
shouldCloseOnEsc
public boolean shouldCloseOnEsc()Checks whether this screen should be closed when the escape key is pressed.- Overrides:
shouldCloseOnEscin classScreen- Mappings:
Namespace Name Mixin selector official aw_Leui;aw_()Zintermediary method_25422Lnet/minecraft/class_437;method_25422()Znamed shouldCloseOnEscLnet/minecraft/client/gui/screen/Screen;shouldCloseOnEsc()Z
-