aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
diff options
context:
space:
mode:
authorWyvest <45589059+Wyvest@users.noreply.github.com>2023-01-14 12:13:13 -0500
committerWyvest <45589059+Wyvest@users.noreply.github.com>2023-01-14 12:13:13 -0500
commit1b3670de60500c491e5c61b0d304bcde7e30080f (patch)
tree9657ad419ac41545ea73e11cfea63ff90463f114 /src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
parentf80dad6f297a60f23ca3066742c2df78e3b6fc83 (diff)
downloadChatting-1b3670de60500c491e5c61b0d304bcde7e30080f.tar.gz
Chatting-1b3670de60500c491e5c61b0d304bcde7e30080f.tar.bz2
Chatting-1b3670de60500c491e5c61b0d304bcde7e30080f.zip
various new features
- right click to copy chat message - tooltip text render type - delete button for individual chat lines - copying chat messages now always shows a notification output
Diffstat (limited to 'src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java')
-rw-r--r--src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java b/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
index 51b19d4..d2ca6c1 100644
--- a/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
+++ b/src/main/java/cc/woverflow/chatting/hook/GuiNewChatHook.java
@@ -7,7 +7,9 @@ import java.awt.datatransfer.Transferable;
public interface GuiNewChatHook {
int getRight();
- boolean shouldCopy();
+ boolean isHovering();
+
+ ChatLine getHoveredLine(int mouseY);
Transferable getChattingChatComponent(int mouseY);