java.lang.Object
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.Renderable, net.minecraft.client.gui.components.TabOrderedElement, net.minecraft.client.gui.layouts.LayoutElement, net.minecraft.client.gui.narration.NarratableEntry, net.minecraft.client.gui.narration.NarrationSupplier, net.neoforged.neoforge.client.extensions.IAbstractWidgetExtension

public class ButtonImage extends ButtonExtended
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.Builder, net.minecraft.client.gui.components.Button.CreateNarration, net.minecraft.client.gui.components.Button.OnPress

    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

    createNarration, DEFAULT_HEIGHT, DEFAULT_NARRATION, DEFAULT_SPACING, DEFAULT_WIDTH, onPress, SMALL_WIDTH

    Fields inherited from class net.minecraft.client.gui.components.AbstractButton

    SPRITES, TEXT_MARGIN

    Fields inherited from class net.minecraft.client.gui.components.AbstractWidget

    active, alpha, height, isHovered, packedFGColor, UNSET_FG_COLOR, visible, width

    Fields inherited from interface net.minecraft.client.gui.components.events.GuiEventListener

    DOUBLE_CLICK_THRESHOLD_MS
  • Constructor Summary

    Constructors
    Constructor
    Description
    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.
    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 Type
    Method
    Description
    protected void
    drawButtonInner(net.minecraft.client.gui.GuiGraphics guiGraphics, int mouseX, int mouseY)
     
    void
     
    void
    setImages(IImage[] images)
     

    Methods inherited from class org.cyclops.cyclopscore.client.gui.component.button.ButtonExtended

    drawBackground, getTextureY, getYImage, renderWidget

    Methods inherited from class net.minecraft.client.gui.components.Button

    builder, createNarrationMessage, onPress, updateWidgetNarration

    Methods inherited from class net.minecraft.client.gui.components.AbstractButton

    keyPressed, onClick, renderString

    Methods inherited from class net.minecraft.client.gui.components.AbstractWidget

    clearFGColor, clicked, defaultButtonNarrationText, getBottom, getFGColor, getHeight, getMessage, getRectangle, getRight, getTabOrderGroup, getTooltip, getWidth, getX, getY, isActive, isFocused, isHovered, isHoveredOrFocused, isMouseOver, isValidClickButton, mouseClicked, mouseDragged, mouseReleased, narrationPriority, nextFocusPath, onDrag, onRelease, playDownSound, render, renderScrollingString, renderScrollingString, renderScrollingString, setAlpha, setFGColor, setFocused, setHeight, setMessage, setRectangle, setSize, setTabOrderGroup, setTooltip, setTooltipDelay, setWidth, setX, setY, updateNarration, visitWidgets, wrapDefaultNarrationMessage

    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, getCurrentFocusPath, keyReleased, mouseMoved, mouseScrolled

    Methods inherited from interface net.neoforged.neoforge.client.extensions.IAbstractWidgetExtension

    onClick

    Methods inherited from interface net.minecraft.client.gui.layouts.LayoutElement

    setPosition
  • 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 - X
      y - Y
      width - Width
      height - Height
      narrationMessage - 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 - X
      y - Y
      narrationMessage - 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 - X
      y - Y
      width - Width
      height - Height
      narrationMessage - 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 render
      offsetX - 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 - X
      y - Y
      narrationMessage - The string to print.
      pressCallback - A callback for when this button was pressed.
      image - The image to render
  • Method Details

    • drawButtonInner

      protected void drawButtonInner(net.minecraft.client.gui.GuiGraphics guiGraphics, int mouseX, int mouseY)
      Specified by:
      drawButtonInner in class ButtonExtended
    • setImage

      public void setImage(IImage image)
    • setImages

      public void setImages(IImage[] images)