public class GuiImage extends GuiElement
Constructor and Description |
---|
GuiImage(float x,
float y,
boolean relativeposition,
float width,
float height,
boolean relativesize)
Creates a new image object at the given screen position with the given size
which does not hold an actual image yet.
|
GuiImage(ImageInformation image,
float x,
float y,
boolean relativeposition,
float width,
float height,
boolean relativesize)
Creates a new image object at the given screen position with the given size.
|
Modifier and Type | Method and Description |
---|---|
ImageInformation |
getImage()
Gets the image object that is currently set for this element.
|
float |
getProportionalHeight() |
float |
getProportionalWidth() |
boolean |
isClickable() |
boolean |
isMipMappingEnabled()
Gets whether or not mip mapping is enabled for this image.
|
boolean |
isProportionalSize() |
boolean |
isRelativeProportionalSize() |
void |
refresh()
Refreshes this element, i.e. synchronizes it between the client and the
server.
|
void |
setClickable(boolean set) |
void |
setColor(float r,
float g,
float b,
float a)
Sets the color of this element.
|
void |
setColor(int color)
Sets the color of this element.
|
void |
setHeightProportional(float newwidth,
boolean relative)
Sets a new width and calculates a proportional height for this image.
|
void |
setImage(ImageInformation image) |
void |
setMipMappingEnabled(boolean mipmapping)
Sets mip mapping for this image (default true).
|
void |
setSize(float width,
float height,
boolean relative)
Sets the size of this element.
|
void |
setWidthProportional(float newheight,
boolean relative)
Sets a new height and calculates a proportional width for this image.
|
addChild, destroy, equals, getAlpha, getBorderColor, getBorderThickness, getChildren, getColor, getHeight, getHoverColor, getID, getParent, getParentID, getPivot, getPositionX, getPositionY, getWidth, hashCode, isAlwaysInBackground, isAlwaysOnTop, isRelativeBorderThickness, isRelativePosition, isRelativeSize, isVisible, onClick, removeAllChildren, removeChild, removeFromParent, setAlpha, setAlwaysInBackground, setAlwaysOnTop, setBorderColor, setBorderColor, setBorderThickness, setPivot, setPosition, setVisible
public GuiImage(float x, float y, boolean relativeposition, float width, float height, boolean relativesize)
x
- the x screen position (horizontally).y
- the y screen position (vertically).relativeposition
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).width
- the width of this element.height
- the height of this element.relativesize
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).public GuiImage(ImageInformation image, float x, float y, boolean relativeposition, float width, float height, boolean relativesize)
image
- the actual image.x
- the x screen position (horizontally).y
- the y screen position (vertically).relativeposition
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).width
- the width of this element.height
- the height of this element.relativesize
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).public void setImage(ImageInformation image)
public ImageInformation getImage()
public void setHeightProportional(float newwidth, boolean relative)
newwidth
- the new width you want to set.relative
- true if the provided width is a relative value, false
if it is absolute.public void setWidthProportional(float newheight, boolean relative)
newheight
- the new height you want to set.relative
- true if the provided height is a relative value, false
if it is absolute.public boolean isProportionalSize()
public boolean isRelativeProportionalSize()
public float getProportionalWidth()
public float getProportionalHeight()
public void setMipMappingEnabled(boolean mipmapping)
mipmapping
- set to true to enable mip mapping, false to disable it.public boolean isMipMappingEnabled()
public void setClickable(boolean set)
public boolean isClickable()
isClickable
in class GuiElement
public void setColor(int color)
setColor
in class GuiElement
color
- an RGBA integer value which specifies the color.public void setColor(float r, float g, float b, float a)
setColor
in class GuiElement
r
- the red color value (0-1)g
- the green color value (0-1)b
- the blue color value (0-1)a
- the alpha value (0-1), 0 makes the element invisible, 1 fully
opaque.public void setSize(float width, float height, boolean relative)
GuiElement
setSize
in class GuiElement
width
- the width of this element.height
- the height of this element.relative
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).public void refresh()
GuiElement
refresh
in class GuiElement