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
FieldsModifier and TypeFieldDescriptionprotected intprotected intstatic intThe default text color for dark mode labels.static intThe default text color for light mode labels.protected HorizontalAlignmentprotected net.minecraft.text.Textprotected VerticalAlignment -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new label with the default text color.Constructs a new label.WLabel(net.minecraft.text.Text text)Constructs a new label with the default text color.WLabel(net.minecraft.text.Text text, int color)Constructs a new label. -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks 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.intgetColor()Gets the light mode color of this label.intGets the dark mode color of this label.Gets the horizontal text alignment of this label.net.minecraft.text.TextgetText()Gets the text of this label.@Nullable net.minecraft.text.StylegetTextStyleAt(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.voidpaint(net.minecraft.client.util.math.MatrixStack matrices, 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.Sets the horizontal text alignment of this label.voidsetSize(int x, int y)Sets the size of this widget.setText(net.minecraft.text.Text text)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, createPeers, cycleFocus, getAbsoluteX, getAbsoluteY, getHeight, getHost, getParent, getWidth, getX, getY, hit, isActivationKey, isFocused, isWithinBounds, onCharTyped, onFocusGained, onFocusLost, onHidden, onKeyPressed, onKeyReleased, onMouseDown, onMouseDrag, onMouseMove, onMouseScroll, onMouseUp, onShown, releaseFocus, renderTooltip, requestFocus, setHost, setLocation, setParent, tick, validate
-
Field Details
-
text
protected net.minecraft.text.Text text -
horizontalAlignment
-
verticalAlignment
-
color
protected int color -
darkmodeColor
protected int darkmodeColor -
DEFAULT_TEXT_COLOR
public static final int DEFAULT_TEXT_COLORThe default text color for light mode labels.- See Also:
- Constant Field Values
-
DEFAULT_DARKMODE_TEXT_COLOR
public static final int DEFAULT_DARKMODE_TEXT_COLORThe default text color for dark mode labels.- See Also:
- Constant Field Values
-
-
Constructor Details
-
WLabel
Constructs a new label.- Parameters:
text- the text of the labelcolor- the color of the label
-
WLabel
public WLabel(net.minecraft.text.Text text, int color)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
-
WLabel
public WLabel(net.minecraft.text.Text text)Constructs a new label with the default text color.- Parameters:
text- the text of the label- Since:
- 1.8.0
-
-
Method Details
-
paint
@Environment(CLIENT) public void paint(net.minecraft.client.util.math.MatrixStack matrices, int x, int y, int mouseX, int mouseY)Description copied from class:WWidgetPaints this widget. -
onClick
Description copied from class:WWidgetNotifies this widget that the mouse has been pressed and released, both while inside its bounds.- Overrides:
onClickin 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.PROCESSEDif the event is handled,InputResult.IGNOREDotherwise.
-
getTextStyleAt
@Environment(CLIENT) @Nullable public @Nullable net.minecraft.text.Style getTextStyleAt(int x, int y)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:WWidgetChecks whether this widget can be resized usingWWidget.setSize(int, int). -
setSize
public void setSize(int x, int y)Description copied from class:WWidgetSets 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
-
getText
public net.minecraft.text.Text 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
-