1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.gui.widget;
import me.shedaniel.rei.client.ScreenHelper;
import net.minecraft.ChatFormat;
import java.awt.*;
import java.util.Optional;
public abstract class ClickableLabelWidget extends LabelWidget {
public boolean focused;
public boolean clickable;
public ClickableLabelWidget(int x, int y, String text, boolean clickable) {
super(x, y, text);
this.clickable = clickable;
}
public ClickableLabelWidget(int x, int y, String text) {
this(x, y, text, true);
}
@Override
public void render(int mouseX, int mouseY, float delta) {
int colour = getDefaultColor();
if (clickable && isHovered(mouseX, mouseY))
colour = getHoveredColor();
drawCenteredString(font, (isHovered(mouseX, mouseY) ? ChatFormat.UNDERLINE.toString() : "") + text, x, y, colour);
if (clickable && getTooltips().isPresent())
if (!focused && isHighlighted(mouseX, mouseY))
ScreenHelper.getLastOverlay().addTooltip(QueuedTooltip.create(getTooltips().get().split("\n")));
else if (focused)
ScreenHelper.getLastOverlay().addTooltip(QueuedTooltip.create(new Point(x, y), getTooltips().get().split("\n")));
}
public int getDefaultColor() {
return ScreenHelper.isDarkModeEnabled() ? 0xFFBBBBBB : -1;
}
public int getHoveredColor() {
return ScreenHelper.isDarkModeEnabled() ? -1 : 0xFF66FFCC;
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (button == 0 && clickable && isHighlighted(mouseX, mouseY)) {
onLabelClicked();
return true;
}
return false;
}
public Optional<String> getTooltips() {
return Optional.empty();
}
@Override
public boolean keyPressed(int int_1, int int_2, int int_3) {
if (!clickable || !focused)
return false;
if (int_1 != 257 && int_1 != 32 && int_1 != 335)
return false;
this.onLabelClicked();
return true;
}
@Override
public boolean changeFocus(boolean boolean_1) {
if (!clickable)
return false;
this.focused = !this.focused;
return true;
}
public boolean isHovered(int mouseX, int mouseY) {
return clickable && (isHighlighted(mouseX, mouseY) || focused);
}
public abstract void onLabelClicked();
}
|