Class BackupPromptScreen

All Implemented Interfaces:
Drawable, Element, Navigable, ParentElement

@Environment(CLIENT) public class BackupPromptScreen extends Screen
Mappings:
Namespace Name
named net/minecraft/client/gui/screen/world/BackupPromptScreen
intermediary net/minecraft/class_405
official fmf
  • Field Details

    • onCancel

      private final Runnable onCancel
      Mappings:
      Namespace Name Mixin selector
      named onCancel Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;onCancel:Ljava/lang/Runnable;
      intermediary field_46858 Lnet/minecraft/class_405;field_46858:Ljava/lang/Runnable;
      official c Lfmf;c:Ljava/lang/Runnable;
    • callback

      protected final BackupPromptScreen.Callback callback
      Mappings:
      Namespace Name Mixin selector
      named callback Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;callback:Lnet/minecraft/client/gui/screen/world/BackupPromptScreen$Callback;
      intermediary field_46857 Lnet/minecraft/class_405;field_46857:Lnet/minecraft/class_405$class_406;
      official a Lfmf;a:Lfmf$a;
    • subtitle

      private final Text subtitle
      Mappings:
      Namespace Name Mixin selector
      named subtitle Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;subtitle:Lnet/minecraft/text/Text;
      intermediary field_2364 Lnet/minecraft/class_405;field_2364:Lnet/minecraft/class_2561;
      official q Lfmf;q:Lwu;
    • showEraseCacheCheckbox

      private final boolean showEraseCacheCheckbox
      Mappings:
      Namespace Name Mixin selector
      named showEraseCacheCheckbox Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;showEraseCacheCheckbox:Z
      intermediary field_19232 Lnet/minecraft/class_405;field_19232:Z
      official r Lfmf;r:Z
    • wrappedText

      private MultilineText wrappedText
      Mappings:
      Namespace Name Mixin selector
      named wrappedText Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;wrappedText:Lnet/minecraft/client/font/MultilineText;
      intermediary field_2365 Lnet/minecraft/class_405;field_2365:Lnet/minecraft/class_5489;
      official s Lfmf;s:Lfin;
    • field_32236

      protected int field_32236
      Mappings:
      Namespace Name Mixin selector
      named field_32236 Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;field_32236:I
      intermediary field_32236 Lnet/minecraft/class_405;field_32236:I
      official b Lfmf;b:I
    • eraseCacheCheckbox

      private CheckboxWidget eraseCacheCheckbox
      Mappings:
      Namespace Name Mixin selector
      named eraseCacheCheckbox Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;eraseCacheCheckbox:Lnet/minecraft/client/gui/widget/CheckboxWidget;
      intermediary field_19234 Lnet/minecraft/class_405;field_19234:Lnet/minecraft/class_4286;
      official u Lfmf;u:Lfhw;
  • Constructor Details

    • BackupPromptScreen

      public BackupPromptScreen(Runnable onCancel, BackupPromptScreen.Callback callback, Text title, Text subtitle, boolean showEraseCacheCheckBox)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/client/gui/screen/world/BackupPromptScreen;<init>(Ljava/lang/Runnable;Lnet/minecraft/client/gui/screen/world/BackupPromptScreen$Callback;Lnet/minecraft/text/Text;Lnet/minecraft/text/Text;Z)V
      intermediary <init> Lnet/minecraft/class_405;<init>(Ljava/lang/Runnable;Lnet/minecraft/class_405$class_406;Lnet/minecraft/class_2561;Lnet/minecraft/class_2561;Z)V
      official <init> Lfmf;<init>(Ljava/lang/Runnable;Lfmf$a;Lwu;Lwu;Z)V
  • Method Details

    • 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() to set the element that is initially focused.

      Overrides:
      init in class Screen
      Mappings:
      Namespace Name Mixin selector
      named init Lnet/minecraft/client/gui/screen/Screen;init()V
      intermediary method_25426 Lnet/minecraft/class_437;method_25426()V
      official aP_ Lfnl;aP_()V
    • render

      public void render(DrawContext context, int mouseX, int mouseY, float delta)
      Specified by:
      render in interface Drawable
      Overrides:
      render in class Screen
      Mappings:
      Namespace Name Mixin selector
      named render Lnet/minecraft/client/gui/Drawable;render(Lnet/minecraft/client/gui/DrawContext;IIF)V
      intermediary method_25394 Lnet/minecraft/class_4068;method_25394(Lnet/minecraft/class_332;IIF)V
      official a Lfix;a(Lfhh;IIF)V
    • shouldCloseOnEsc

      public boolean shouldCloseOnEsc()
      Checks whether this screen should be closed when the escape key is pressed.
      Overrides:
      shouldCloseOnEsc in class Screen
      Mappings:
      Namespace Name Mixin selector
      named shouldCloseOnEsc Lnet/minecraft/client/gui/screen/Screen;shouldCloseOnEsc()Z
      intermediary method_25422 Lnet/minecraft/class_437;method_25422()Z
      official aF_ Lfnl;aF_()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 in GLFW class.
      Specified by:
      keyPressed in interface Element
      Specified by:
      keyPressed in interface ParentElement
      Overrides:
      keyPressed in class Screen
      Parameters:
      keyCode - the named key code of the event as described in the GLFW class
      scanCode - the unique/platform-specific scan code of the keyboard input
      modifiers - 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 Lfjq;a(III)Z