Class WLabel
java.lang.Object
io.github.cottonmc.cotton.gui.widget.WWidget
io.github.cottonmc.cotton.gui.widget.WLabel
A single-line label widget.
-
Field Summary
Modifier and TypeFieldDescriptionprotected int
protected int
static final int
The default text color for dark mode labels.static final int
The default text color for light mode labels.protected boolean
protected HorizontalAlignment
protected Text
protected VerticalAlignment
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addNarrations
(NarrationMessageBuilder builder) Adds the narrations of this widget to a narration builder.boolean
Checks whether this widget can be resized usingWWidget.setSize(int, int)
.Disables separate dark mode coloring by copying the dark color to be the light color.int
getColor()
Gets the light mode color of this label.int
Gets the dark mode color of this label.boolean
Checks whether shadows should be drawn for this label.Gets the horizontal text alignment of this label.getText()
Gets the text of this label.getTextStyleAt
(int x, int y) Gets the text style at the specific widget-space coordinates.Gets the vertical text alignment of this label.onClick
(int x, int y, int button) Notifies this widget that the mouse has been pressed and released, both while inside its bounds.void
paint
(DrawContext context, int x, int y, int mouseX, int mouseY) Paints this widget.setColor
(int color) Sets the light mode color of this label.setColor
(int color, int darkmodeColor) Sets the light and dark mode colors of this label.setDarkmodeColor
(int color) Sets the dark mode color of this label.setDrawShadows
(boolean drawShadows) Sets whether shadows should be drawn for this label.Sets the horizontal text alignment of this label.void
setSize
(int x, int y) Sets the size of this widget.Sets the text of this label.Sets the vertical text alignment of this label.Methods inherited from class io.github.cottonmc.cotton.gui.widget.WWidget
addPainters, addTooltip, canFocus, canHover, getAbsoluteX, getAbsoluteY, getFocusModel, getHeight, getHost, getParent, getWidth, getX, getY, hit, hoveredProperty, isActivationKey, isFocused, isHovered, isNarratable, isWithinBounds, onCharTyped, onFocusGained, onFocusLost, onHidden, onKeyPressed, onKeyReleased, onMouseDown, onMouseDrag, onMouseMove, onMouseScroll, onMouseUp, onShown, releaseFocus, renderTooltip, requestFocus, setHost, setHovered, setLocation, setParent, shouldRenderInDarkMode, tick, validate
-
Field Details
-
text
-
horizontalAlignment
-
verticalAlignment
-
color
protected int color -
darkmodeColor
protected int darkmodeColor -
drawShadows
protected boolean drawShadows -
DEFAULT_TEXT_COLOR
public static final int DEFAULT_TEXT_COLORThe default text color for light mode labels.- See Also:
-
DEFAULT_DARKMODE_TEXT_COLOR
public static final int DEFAULT_DARKMODE_TEXT_COLORThe default text color for dark mode labels.- See Also:
-
-
Constructor Details
-
WLabel
Constructs a new label.- Parameters:
text
- the text of the labelcolor
- the color of the label
-
WLabel
Constructs a new label with the default text color.- Parameters:
text
- the text of the label- Since:
- 1.8.0
-
-
Method Details
-
paint
Description copied from class:WWidget
Paints this widget. -
onClick
Description copied from class:WWidget
Notifies this widget that the mouse has been pressed and released, both while inside its bounds.- Overrides:
onClick
in classWWidget
- Parameters:
x
- The X coordinate of the event, in widget-space (0 is the left edge of this widget)y
- The Y coordinate of the event, in widget-space (0 is the top edge of this widget)button
- The mouse button that was used. Button numbering is consistent with LWJGL Mouse (0=left, 1=right, 2=mousewheel click)- Returns:
InputResult.PROCESSED
if the event is handled,InputResult.IGNORED
otherwise.
-
getTextStyleAt
Gets the text style at the specific widget-space coordinates.- Parameters:
x
- the X coordinate in widget spacey
- the Y coordinate in widget space- Returns:
- the text style at the position, or null if not found
-
canResize
public boolean canResize()Description copied from class:WWidget
Checks whether this widget can be resized usingWWidget.setSize(int, int)
. -
setSize
public void setSize(int x, int y) Description copied from class:WWidget
Sets the size of this widget.Overriding methods may restrict one of the dimensions to be a constant value, for example
super.setSize(x, 20)
. -
getDarkmodeColor
public int getDarkmodeColor()Gets the dark mode color of this label.- Returns:
- the color
- Since:
- 2.0.0
-
setDarkmodeColor
Sets the dark mode color of this label.- Parameters:
color
- the new color- Returns:
- this label
-
disableDarkmode
Disables separate dark mode coloring by copying the dark color to be the light color.- Returns:
- this label
-
getColor
public int getColor()Gets the light mode color of this label.- Returns:
- the color
-
setColor
Sets the light mode color of this label.- Parameters:
color
- the new color- Returns:
- this label
-
setColor
Sets the light and dark mode colors of this label.- Parameters:
color
- the new light colordarkmodeColor
- the new dark color- Returns:
- this label
-
getDrawShadows
public boolean getDrawShadows()Checks whether shadows should be drawn for this label.- Returns:
true
shadows should be drawn,false
otherwise- Since:
- 11.1.0
-
setDrawShadows
Sets whether shadows should be drawn for this label.- Parameters:
drawShadows
-true
if shadows should be drawn,false
otherwise- Returns:
- this label
- Since:
- 11.1.0
-
getText
Gets the text of this label.- Returns:
- the text
-
setText
Sets the text of this label.- Parameters:
text
- the new text- Returns:
- this label
-
getHorizontalAlignment
Gets the horizontal text alignment of this label.- Returns:
- the alignment
- Since:
- 2.0.0
-
setHorizontalAlignment
Sets the horizontal text alignment of this label.- Parameters:
align
- the new text alignment- Returns:
- this label
-
getVerticalAlignment
Gets the vertical text alignment of this label.- Returns:
- the alignment
- Since:
- 2.0.0
-
setVerticalAlignment
Sets the vertical text alignment of this label.- Parameters:
align
- the new text alignment- Returns:
- this label
-
addNarrations
Description copied from class:WWidget
Adds the narrations of this widget to a narration builder. Narrations will only apply if this widget is narratable.The widget needs to be focusable or hoverable, and also be focused/hovered for narrations to be added.
- Overrides:
addNarrations
in classWWidget
- Parameters:
builder
- the narration builder, cannot be null
-