public abstract class GuiElement
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
void |
addChild(GuiElement child)
Attaches another gui element as "child" to this element.
|
void |
destroy()
Destroys this element, i.e. remove it from all players.
|
boolean |
equals(java.lang.Object o) |
float |
getAlpha()
Gets the current alpha value of this element.
|
int |
getBorderColor()
Gets the current border color.
|
float |
getBorderThickness()
Gets the "thickness" of the border.
|
java.util.List<GuiElement> |
getChildren()
Returns a list of all children which were added to this element.
|
int |
getColor()
Gets the current RGBA color value as an int value.
|
float |
getHeight()
Gets the height of this element.
|
int |
getHoverColor() |
int |
getID()
Gets the internal id of this element.
|
GuiElement |
getParent()
Gets the parent of this element.
|
int |
getParentID()
Gets the id of the parent.
|
PivotPosition |
getPivot()
Gets the pivot of this element.
|
float |
getPositionX()
Gets the x (horizontal) position of this element.
|
float |
getPositionY()
Gets the y (vertical) position of this element.
|
float |
getWidth()
Gets the width of this element.
|
int |
hashCode() |
boolean |
isAlwaysInBackground() |
boolean |
isAlwaysOnTop() |
boolean |
isClickable() |
boolean |
isRelativeBorderThickness()
Gets whether or not the border thickness is a relative value.
|
boolean |
isRelativePosition()
Gets whether or not the current position coordinates are relative.
|
boolean |
isRelativeSize()
Gets wheter or not the current size values are relative.
|
boolean |
isVisible()
Gets whether or not this element is visible.
|
void |
onClick(PlayerGuiElementClickEvent event)
Override this method if you want to get the click event (when a player clicks on the element)
directly, without having to register an event listener.
|
void |
refresh()
Refreshes this element, i.e. synchronizes it between the client and the
server.
|
void |
removeAllChildren() |
void |
removeChild(GuiElement child)
Removes, i.e. detaches a child element.
|
void |
removeFromParent()
Removes an element from its parent.
|
void |
setAlpha(float alpha)
Sets the alpha value (opacity) for this element. 0 makes the element
invisible, 1 fully opaque.
|
void |
setAlwaysInBackground(boolean set) |
void |
setAlwaysOnTop(boolean set)
Sets the element to be always visible in front of other gui elements.
|
void |
setBorderColor(float r,
float g,
float b,
float a)
Sets the color of the border.
|
void |
setBorderColor(int color)
Sets the color of the border.
|
void |
setBorderThickness(float thickness,
boolean relative)
Sets the border of this element.
|
void |
setColor(float r,
float g,
float b,
float a)
Sets the color (i.e. background color) of this element.
|
void |
setColor(int color)
Sets the color (i.e. background color) of this element.
|
void |
setPivot(PivotPosition pivot)
Sets the pivot for this element, this determines the actual location of
the position coordinate.
|
void |
setPosition(float x,
float y,
boolean relative)
Sets the screen position of this element.
|
void |
setSize(float width,
float height,
boolean relative)
Sets the size of this element.
|
void |
setVisible(boolean set)
Sets the visibility of this element.
|
public void setPosition(float x, float y, boolean relative)
setPivot(net.risingworld.api.gui.PivotPosition)
).x
- the x (horizontal) position.y
- the y (vertical) position.relative
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).public float getPositionX()
public float getPositionY()
public boolean isRelativePosition()
public void setSize(float width, float height, boolean relative)
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 float getWidth()
public float getHeight()
public boolean isRelativeSize()
public void setPivot(PivotPosition pivot)
BottomLeft
,
the position coordinate is at the bottom left corner of the element, if the
pivot is set to Center
, the position coordinate is in the center
of the element etc.pivot
- the pivot. Default pivot is BottomLeft
.public PivotPosition getPivot()
public void setColor(int color)
color
- an RGBA integer value which specifies the color.public void setColor(float r, float g, float b, float a)
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 int getColor()
public void setBorderThickness(float thickness, boolean relative)
thickness
- the "thickness" of the border. 0 to disable the border.relative
- determines if the provided "thickness" value is an absolute
(i.e. pixels) or a relative value (0.0 - 1.0).public float getBorderThickness()
public boolean isRelativeBorderThickness()
public void setBorderColor(int color)
color
- the new border color, as an int RGBA value.public void setBorderColor(float r, float g, float b, float a)
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 border invisible, 1 fully opaque.public int getBorderColor()
public void setAlpha(float alpha)
alpha
- the alpha value (0-1).public float getAlpha()
public int getID()
public boolean isClickable()
public void setVisible(boolean set)
set
- false to hide this element, true to show it.public boolean isVisible()
public void destroy()
public void addChild(GuiElement child)
Player.addGuiElement(net.risingworld.api.gui.GuiElement)
).
Maybe this will change in future releases.child
- the element you want to attach to this element.public void removeChild(GuiElement child)
child
- the child you want to detach.addChild(net.risingworld.api.gui.GuiElement)
public void removeAllChildren()
public java.util.List<GuiElement> getChildren()
public void removeFromParent()
public GuiElement getParent()
public int getParentID()
public int getHoverColor()
public void setAlwaysOnTop(boolean set)
set
- true to set this element to stay always in front of other elements
("always on top"), false to set it to default behaviour.setAlwaysInBackground(boolean)
public boolean isAlwaysOnTop()
public void setAlwaysInBackground(boolean set)
public boolean isAlwaysInBackground()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public void refresh()
public void onClick(PlayerGuiElementClickEvent event)
event
- the gui click event.PlayerGuiElementClickEvent