Class TextFieldComponent
java.lang.Object
org.rusherhack.client.api.ui.window.content.WindowContent
org.rusherhack.client.api.ui.window.content.component.TextFieldComponent
- All Implemented Interfaces:
org.rusherhack.core.interfaces.IClickable
,org.rusherhack.core.interfaces.IHoverable
,org.rusherhack.core.interfaces.IScrollable
,org.rusherhack.core.interfaces.ITickable
,org.rusherhack.core.interfaces.ITypeable
-
Field Summary
Fields inherited from class org.rusherhack.client.api.ui.window.content.WindowContent
contextMenu, x, y
-
Constructor Summary
ConstructorDescriptionTextFieldComponent
(Window window, double width) TextFieldComponent
(Window window, String label, double width) TextFieldComponent
(Window window, String label, double width, boolean censored) -
Method Summary
Modifier and TypeMethodDescriptionboolean
charTyped
(char character) double
getLabel()
getValue()
double
getWidth()
boolean
boolean
keyTyped
(int key, int scanCode, int modifiers) boolean
mouseClicked
(double mouseX, double mouseY, int button) boolean
mouseScrolled
(double mouseX, double mouseY, double delta) void
renderContent
(double mouseX, double mouseY, WindowView parent) void
setCharacterFilter
(Predicate<Character> characterFilter) void
setFocused
(boolean focused) void
void
setReturnCallback
(Consumer<String> returnCallback) void
void
setWidth
(double width) void
unfocus()
Called when the window loses focus.Methods inherited from class org.rusherhack.client.api.ui.window.content.WindowContent
getContextMenu, getFontRenderer, getRenderer, getWindow, getX, getY, isHovered, setContextMenu, setX, setY
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.rusherhack.core.interfaces.IClickable
mouseReleased
Methods inherited from interface org.rusherhack.core.interfaces.ITickable
tick
-
Constructor Details
-
TextFieldComponent
-
TextFieldComponent
-
TextFieldComponent
-
-
Method Details
-
renderContent
- Specified by:
renderContent
in classWindowContent
-
unfocus
public void unfocus()Description copied from class:WindowContent
Called when the window loses focus. Should be used to unfocus things like text fields- Overrides:
unfocus
in classWindowContent
-
getWidth
public double getWidth()- Specified by:
getWidth
in classWindowContent
-
getHeight
public double getHeight()- Specified by:
getHeight
in classWindowContent
-
mouseClicked
public boolean mouseClicked(double mouseX, double mouseY, int button) -
mouseScrolled
public boolean mouseScrolled(double mouseX, double mouseY, double delta) -
charTyped
public boolean charTyped(char character) -
keyTyped
public boolean keyTyped(int key, int scanCode, int modifiers) -
getDisplayValue
-
getLabel
-
setLabel
-
getValue
-
setValue
-
setWidth
public void setWidth(double width) -
setReturnCallback
-
setCharacterFilter
-
isFocused
public boolean isFocused() -
setFocused
public void setFocused(boolean focused)
-