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
|
package me.shedaniel.rei.gui.widget;
import me.shedaniel.rei.client.ScreenHelper;
import java.awt.*;
import java.util.Optional;
public abstract class ClickableLabelWidget extends LabelWidget {
public static final int hoveredColor = (new Color(102, 255, 204)).getRGB();
public boolean focused;
public ClickableLabelWidget(int x, int y, String text) {
super(x, y, text);
}
@Override
public void render(int mouseX, int mouseY, float delta) {
int colour = -1;
if (isHovered(mouseX, mouseY))
colour = hoveredColor;
drawCenteredString(font, (isHovered(mouseX, mouseY) ? "§n" : "") + text, x, y, colour);
if (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")));
}
@Override
public boolean mouseClicked(double mouseX, double mouseY, int button) {
if (button == 0 && 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 (int_1 != 257 && int_1 != 32 && int_1 != 335) {
return false;
} else {
this.onLabelClicked();
return true;
}
}
@Override
public boolean changeFocus(boolean boolean_1) {
this.focused = !this.focused;
return true;
}
public boolean isHovered(int mouseX, int mouseY) {
return isHighlighted(mouseX, mouseY) || focused;
}
public abstract void onLabelClicked();
}
|