public class GuiTextField extends GuiElement
PlayerGuiInputEvent
will be triggered (apart from that,
you can get the current text at any time of course).Constructor and Description |
---|
GuiTextField(float x,
float y,
boolean relativeposition,
float width,
float height,
boolean relativesize) |
Modifier and Type | Method and Description |
---|---|
int |
getBackgroundPreset() |
void |
getCurrentText(Player player,
Callback<java.lang.String> callback)
Gets the current text of the textfield.
|
java.lang.String |
getDefaultText() |
Font |
getFont()
Gets the current font of this textfield.
|
int |
getFontColor()
Gets the font color.
|
int |
getMaxCharacters() |
boolean |
isClickable() |
boolean |
isEditable()
Gets whether or not the textfield is editable.
|
boolean |
isListeningForInput() |
void |
onInput(PlayerGuiInputEvent event) |
void |
refresh()
Refreshes this element, i.e. synchronizes it between the client and the
server.
|
void |
setBackgroundPreset(int preset)
Sets a preset background image for the textfield, i.e. a basic gradient
image.
|
void |
setClickable(boolean set) |
void |
setEditable(boolean set)
Sets whether or not the textfield is supposed to be editable.
|
void |
setFont(Font font)
Sets the font for this textfield.
|
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 |
setListenForInput(boolean set)
If set to true, a
PlayerGuiInputEvent event will be triggered once
the player either presses his enter key (while the textfield was focused), or
once the textfield loses the focus (i.e. the player clicks somewhere else). |
void |
setMaxCharacters(int maxchars) |
void |
setText(java.lang.String text)
Sets the default text of this textfield.
|
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, setColor, setColor, setPivot, setPosition, setSize, setVisible
public GuiTextField(float x, float y, boolean relativeposition, float width, float height, boolean relativesize)
public void setText(java.lang.String text)
text
- the text to set.public java.lang.String getDefaultText()
public void getCurrentText(Player player, Callback<java.lang.String> callback)
player
- the player you want to get the text from.callback
- the callback which will be called once the text has been
received from the client.public void setFont(Font font)
font
- the new font.public Font getFont()
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 setBackgroundPreset(int preset)
preset
- the preset background (0-5).public int getBackgroundPreset()
public void setEditable(boolean set)
set
- true if this textfield is supposed to be editable, false if not.public boolean isEditable()
public void setMaxCharacters(int maxchars)
public int getMaxCharacters()
public void setListenForInput(boolean set)
PlayerGuiInputEvent
event will be triggered once
the player either presses his enter key (while the textfield was focused), or
once the textfield loses the focus (i.e. the player clicks somewhere else).
You can retrieve the current text of the textfield from the event.set
- true to listen for input, false if not.public boolean isListeningForInput()
public void setClickable(boolean set)
public boolean isClickable()
isClickable
in class GuiElement
public void refresh()
GuiElement
refresh
in class GuiElement
public void onInput(PlayerGuiInputEvent event)