Class ButtonImage
java.lang.Object
net.minecraft.client.gui.GuiComponent
net.minecraft.client.gui.components.AbstractWidget
net.minecraft.client.gui.components.AbstractButton
net.minecraft.client.gui.components.Button
org.cyclops.cyclopscore.client.gui.component.button.ButtonExtended
org.cyclops.cyclopscore.client.gui.component.button.ButtonImage
- All Implemented Interfaces:
net.minecraft.client.gui.components.events.GuiEventListener
,net.minecraft.client.gui.components.Widget
,net.minecraft.client.gui.narration.NarratableEntry
,net.minecraft.client.gui.narration.NarrationSupplier
A button with an image.
-
Nested Class Summary
Nested classes/interfaces inherited from class net.minecraft.client.gui.components.Button
net.minecraft.client.gui.components.Button.OnPress, net.minecraft.client.gui.components.Button.OnTooltip
Nested classes/interfaces inherited from interface net.minecraft.client.gui.narration.NarratableEntry
net.minecraft.client.gui.narration.NarratableEntry.NarrationPriority
-
Field Summary
Fields inherited from class net.minecraft.client.gui.components.Button
DEFAULT_HEIGHT, DEFAULT_WIDTH, NO_TOOLTIP, onPress, onTooltip, SMALL_WIDTH
Fields inherited from class net.minecraft.client.gui.components.AbstractWidget
active, alpha, height, isHovered, packedFGColor, UNSET_FG_COLOR, visible, WIDGETS_LOCATION, width, x, y
Fields inherited from class net.minecraft.client.gui.GuiComponent
BACKGROUND_LOCATION, GUI_ICONS_LOCATION, STATS_ICON_LOCATION
Fields inherited from interface net.minecraft.client.gui.components.events.GuiEventListener
DOUBLE_CLICK_THRESHOLD_MS
-
Constructor Summary
ConstructorsConstructorDescriptionButtonImage
(int x, int y, int width, int height, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, boolean background, IImage image, int offsetX, int offsetY) Make a new instance.ButtonImage
(int x, int y, int width, int height, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage[] images, boolean background, int offsetX, int offsetY) Make a new instance.ButtonImage
(int x, int y, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage image) Make a new instance.ButtonImage
(int x, int y, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage... images) Make a new instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
drawButtonInner
(com.mojang.blaze3d.vertex.PoseStack matrixStack, int mouseX, int mouseY) void
void
Methods inherited from class org.cyclops.cyclopscore.client.gui.component.button.ButtonExtended
drawBackground, renderButton
Methods inherited from class net.minecraft.client.gui.components.Button
onPress, renderToolTip, updateNarration
Methods inherited from class net.minecraft.client.gui.components.AbstractButton
keyPressed, onClick
Methods inherited from class net.minecraft.client.gui.components.AbstractWidget
changeFocus, clearFGColor, clicked, createNarrationMessage, defaultButtonNarrationText, getFGColor, getHeight, getMessage, getWidth, getYImage, isActive, isFocused, isHoveredOrFocused, isMouseOver, isValidClickButton, mouseClicked, mouseDragged, mouseReleased, narrationPriority, onDrag, onFocusedChanged, onRelease, playDownSound, render, renderBg, setAlpha, setFGColor, setFocused, setHeight, setMessage, setWidth, wrapDefaultNarrationMessage
Methods inherited from class net.minecraft.client.gui.GuiComponent
blit, blit, blit, blit, blit, blitOutlineBlack, disableScissor, drawCenteredString, drawCenteredString, drawCenteredString, drawString, drawString, drawString, enableScissor, fill, fillGradient, fillGradient, fillGradient, getBlitOffset, hLine, setBlitOffset, vLine
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.components.events.GuiEventListener
charTyped, keyReleased, mouseMoved, mouseScrolled
-
Constructor Details
-
ButtonImage
public ButtonImage(int x, int y, int width, int height, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage[] images, boolean background, int offsetX, int offsetY) Make a new instance.- Parameters:
x
- Xy
- Ywidth
- Widthheight
- HeightnarrationMessage
- The string to print.offsetX
- The x coordinate for the image inside the button.offsetY
- The y coordinate for the image inside the button.pressCallback
- A callback for when this button was pressed.images
- The images to render. First images are rendered behind later images.background
- If the button background should be rendered.
-
ButtonImage
public ButtonImage(int x, int y, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage... images) Make a new instance.- Parameters:
x
- Xy
- YnarrationMessage
- The string to print.pressCallback
- A callback for when this button was pressed.images
- The images to render
-
ButtonImage
public ButtonImage(int x, int y, int width, int height, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, boolean background, IImage image, int offsetX, int offsetY) Make a new instance.- Parameters:
x
- Xy
- Ywidth
- Widthheight
- HeightnarrationMessage
- The string to print.pressCallback
- A callback for when this button was pressed.background
- If the button background should be rendered.image
- The image to renderoffsetX
- The x coordinate for the image inside the button.offsetY
- The y coordinate for the image inside the button.
-
ButtonImage
public ButtonImage(int x, int y, net.minecraft.network.chat.Component narrationMessage, net.minecraft.client.gui.components.Button.OnPress pressCallback, IImage image) Make a new instance.- Parameters:
x
- Xy
- YnarrationMessage
- The string to print.pressCallback
- A callback for when this button was pressed.image
- The image to render
-
-
Method Details
-
drawButtonInner
protected void drawButtonInner(com.mojang.blaze3d.vertex.PoseStack matrixStack, int mouseX, int mouseY) - Specified by:
drawButtonInner
in classButtonExtended
-
setImage
-
setImages
-