Package net.minecraft.client.gui.screen
Class VideoOptionsScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.options.GameOptionsScreen
net.minecraft.client.gui.screen.VideoOptionsScreen
- All Implemented Interfaces:
Drawable
,Element
,ParentElement
,TickableElement
@Environment(CLIENT) public class VideoOptionsScreen extends GameOptionsScreen
-
Field Summary
Fields Modifier and Type Field Description private static Text
GRAPHICS_FABULOUS_TEXT
private static Text
GRAPHICS_WARNING_ACCEPT_TEXT
private static Text
GRAPHICS_WARNING_CANCEL_TEXT
private static Text
GRAPHICS_WARNING_MESSAGE_TEXT
private static Text
GRAPHICS_WARNING_TITLE_TEXT
private ButtonListWidget
list
private int
mipmapLevels
private static Text
NEWLINE_TEXT
private static Option[]
OPTIONS
private VideoWarningManager
warningManager
Fields inherited from class net.minecraft.client.gui.screen.options.GameOptionsScreen
gameOptions, parent
Fields inherited from class net.minecraft.client.gui.screen.Screen
buttons, children, client, height, itemRenderer, passEvents, textRenderer, title, width
Fields inherited from class net.minecraft.client.gui.DrawableHelper
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE
-
Constructor Summary
Constructors Constructor Description VideoOptionsScreen(Screen parent, GameOptions options)
-
Method Summary
Modifier and Type Method Description protected void
init()
Called when a screen should be initialized.boolean
mouseClicked(double mouseX, double mouseY, int button)
Callback for when a mouse button down event has been captured.boolean
mouseReleased(double mouseX, double mouseY, int button)
Callback for when a mouse button release event has been captured.void
removed()
void
render(MatrixStack matrices, int mouseX, int mouseY, float delta)
Methods inherited from class net.minecraft.client.gui.screen.options.GameOptionsScreen
getHoveredButtonTooltip, onClose
Methods inherited from class net.minecraft.client.gui.screen.Screen
addButton, addChild, children, filesDragged, getNarrationMessage, getTitle, getTooltipFromItem, handleTextClick, hasAltDown, hasControlDown, hasShiftDown, init, insertText, isCopy, isCut, isMouseOver, isPaste, isPauseScreen, isSelectAll, isValidCharacterForName, keyPressed, renderBackground, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, resize, sendMessage, sendMessage, shouldCloseOnEsc, tick, wrapScreenError
Methods inherited from class net.minecraft.client.gui.AbstractParentElement
getFocused, 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, 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
changeFocus, charTyped, focusOn, hoveredElement, keyReleased, mouseDragged, mouseScrolled, setInitialFocus
-
Field Details
-
GRAPHICS_FABULOUS_TEXT
-
GRAPHICS_WARNING_MESSAGE_TEXT
-
GRAPHICS_WARNING_TITLE_TEXT
-
GRAPHICS_WARNING_ACCEPT_TEXT
-
GRAPHICS_WARNING_CANCEL_TEXT
-
NEWLINE_TEXT
-
OPTIONS
-
list
-
warningManager
-
mipmapLevels
private final int mipmapLevels
-
-
Constructor Details
-
VideoOptionsScreen
-
-
Method Details
-
init
protected void init()Called when a screen should be initialized.This method is called when this screen is
opened
or resized. -
removed
public void removed()- Overrides:
removed
in classGameOptionsScreen
-
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.- 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
-
mouseReleased
public boolean mouseReleased(double mouseX, double mouseY, int button)Callback for when a mouse button release event has been captured. The button number is identified by the constants inGLFW
class.- 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
-
render
-