aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/woverflow/chatting/hook
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cc/woverflow/chatting/hook')
-rw-r--r--src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java b/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
new file mode 100644
index 0000000..51b19d4
--- /dev/null
+++ b/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
@@ -0,0 +1,23 @@
+package cc.woverflow.chatting.hook;
+
+import net.minecraft.client.gui.ChatLine;
+
+import java.awt.datatransfer.Transferable;
+
+public interface GuiNewChatHook {
+ int getRight();
+
+ boolean shouldCopy();
+
+ Transferable getChattingChatComponent(int mouseY);
+
+ default ChatLine getFullMessage(ChatLine line) {
+ throw new AssertionError("getFullMessage not overridden on GuiNewChat");
+ }
+
+ String getPrevText();
+
+ void setPrevText(String prevText);
+
+ int getTextOpacity();
+}