aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java')
-rw-r--r--src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java b/src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java
index 1a0ef30b3..14a6b9f83 100644
--- a/src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java
+++ b/src/main/java/me/shedaniel/rei/gui/widget/ClickableLabelWidget.java
@@ -7,7 +7,6 @@ package me.shedaniel.rei.gui.widget;
import me.shedaniel.math.api.Point;
import me.shedaniel.rei.impl.ScreenHelper;
-import net.minecraft.util.Formatting;
import java.util.Optional;
@@ -15,16 +14,23 @@ public abstract class ClickableLabelWidget extends LabelWidget {
public boolean focused;
public boolean clickable;
+ public int hoveredColor;
public ClickableLabelWidget(int x, int y, String text, boolean clickable) {
super(x, y, text);
this.clickable = clickable;
+ this.hoveredColor = ScreenHelper.isDarkModeEnabled() ? -1 : 0xFF66FFCC;
}
public ClickableLabelWidget(int x, int y, String text) {
this(x, y, text, true);
}
+ public LabelWidget hoveredColor(int hoveredColor) {
+ this.hoveredColor = hoveredColor;
+ return this;
+ }
+
@Override
public void render(int mouseX, int mouseY, float delta) {
int color = getDefaultColor();
@@ -32,9 +38,9 @@ public abstract class ClickableLabelWidget extends LabelWidget {
color = getHoveredColor();
int width = font.getStringWidth(text);
if (isHasShadows())
- font.drawWithShadow((isHovered(mouseX, mouseY) ? Formatting.UNDERLINE.toString() : "") + text, x - width / 2, y, color);
+ font.drawWithShadow(text, x - width / 2, y, color);
else
- font.draw((isHovered(mouseX, mouseY) ? Formatting.UNDERLINE.toString() : "") + text, x - width / 2, y, color);
+ font.draw(text, x - width / 2, y, color);
if (clickable && getTooltips().isPresent())
if (!focused && containsMouse(mouseX, mouseY))
ScreenHelper.getLastOverlay().addTooltip(QueuedTooltip.create(getTooltips().get().split("\n")));
@@ -43,7 +49,7 @@ public abstract class ClickableLabelWidget extends LabelWidget {
}
public int getHoveredColor() {
- return ScreenHelper.isDarkModeEnabled() ? -1 : 0xFF66FFCC;
+ return hoveredColor;
}
@Override