public class GuiLabel extends GuiElement
Constructor and Description |
---|
GuiLabel(float x,
float y,
boolean relativeposition)
Creates a new, empty label (i.e. no text).
|
GuiLabel(java.lang.String text,
float x,
float y,
boolean relativeposition)
Creates a new label with the given text.
|
Modifier and Type | Method and Description |
---|---|
Font |
getFont()
Gets the current font of this label.
|
int |
getFontColor()
Gets the font color.
|
int |
getFontSize()
Gets the current font size.
|
float |
getHeight()
This method does not work for labels.
|
java.lang.String |
getText()
Gets the current text of this label.
|
float |
getWidth()
This method does not work for labels.
|
boolean |
isClickable() |
boolean |
isColorCodesEnabled()
Gets whether or not text-embedded color codes are enabled.
|
boolean |
isRelativeSize()
This method does not work for labels.
|
void |
refresh()
Refreshes this element, i.e. synchronizes it between the client and the
server.
|
void |
setClickable(boolean set) |
void |
setColorCodesEnabled(boolean set)
Sets if text-embedded color codes are enabled.
|
void |
setFont(Font font)
Sets the font for this label.
|
void |
setFontColor(float r,
float g,
float b,
float a)
Sets the font color, defined as an RGBA int (e.g. 0xFF0000FF).
|
void |
setFontColor(int color)
Sets the font color, defined as an RGBA int (e.g. 0xFF0000FF).
|
void |
setFontSize(int size)
Sets the font size.
|
void |
setSize(float width,
float height,
boolean relative)
This method does not work for labels.
|
void |
setText(java.lang.String text)
Sets the text of this label.
|
addChild, destroy, equals, getAlpha, getBorderColor, getBorderThickness, getChildren, getColor, getHoverColor, getID, getParent, getParentID, getPivot, getPositionX, getPositionY, hashCode, isAlwaysInBackground, isAlwaysOnTop, isRelativeBorderThickness, isRelativePosition, isVisible, onClick, removeAllChildren, removeChild, removeFromParent, setAlpha, setAlwaysInBackground, setAlwaysOnTop, setBorderColor, setBorderColor, setBorderThickness, setColor, setColor, setPivot, setPosition, setVisible
public GuiLabel(float x, float y, boolean relativeposition)
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).public GuiLabel(java.lang.String text, float x, float y, boolean relativeposition)
text
- the text for this label.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).public void setText(java.lang.String text)
text
- the text to set.public java.lang.String getText()
public void setFont(Font font)
font
- the new font.public Font getFont()
public void setFontSize(int size)
size
- the new size.public int getFontSize()
public void setFontColor(int color)
color
- the new int RGBA color value.public void setFontColor(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 font invisible, 1 fully
opaque.public int getFontColor()
public void setColorCodesEnabled(boolean set)
This is
[#FF0000]red [#FFFFFF]and this is [#0000FF]blue
", the word "red" would
be colored red, and "blue" would be colored blue. The rest of the text is
white.set
- true to enable color codes, false to disable them.public boolean isColorCodesEnabled()
public void setClickable(boolean set)
public boolean isClickable()
isClickable
in class GuiElement
public void setSize(float width, float height, boolean relative)
setSize
in class GuiElement
width
- N/Aheight
- N/Arelative
- N/Apublic float getWidth()
getWidth
in class GuiElement
public float getHeight()
getHeight
in class GuiElement
public boolean isRelativeSize()
isRelativeSize
in class GuiElement
public void refresh()
GuiElement
refresh
in class GuiElement