From 620cd1f09c45d422b50629c281594d8204db8128 Mon Sep 17 00:00:00 2001 From: Max Weber Date: Fri, 16 Mar 2018 20:28:56 -0600 Subject: [PATCH] Add JShadowedLabel --- .../client/plugins/xptracker/XpInfoBox.java | 3 +- .../runelite/client/ui/JShadowedLabel.java | 64 +++++++++++++++++++ .../runelite/client/ui/JShadowedLabelUI.java | 47 ++++++++++++++ 3 files changed, 113 insertions(+), 1 deletion(-) create mode 100644 runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabel.java create mode 100644 runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabelUI.java diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpInfoBox.java b/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpInfoBox.java index 7e58c3a9d1..cee1e2a67d 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpInfoBox.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/xptracker/XpInfoBox.java @@ -52,6 +52,7 @@ import lombok.Getter; import lombok.extern.slf4j.Slf4j; import net.runelite.api.Client; import net.runelite.client.game.SkillIconManager; +import net.runelite.client.ui.JShadowedLabel; import org.pushingpixels.substance.internal.SubstanceSynapse; @Slf4j @@ -78,7 +79,7 @@ class XpInfoBox extends JPanel private final JLabel xpGained = new JLabel(); private final JLabel xpLeft = new JLabel(); private final JLabel actionsLeft = new JLabel(); - private final JLabel levelLabel = new JLabel(); + private final JLabel levelLabel = new JShadowedLabel(); private final JButton skillIcon = new JButton(); XpInfoBox(Client client, JPanel panel, SkillXPInfo xpInfo, SkillIconManager iconManager) throws IOException diff --git a/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabel.java b/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabel.java new file mode 100644 index 0000000000..37182fb762 --- /dev/null +++ b/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabel.java @@ -0,0 +1,64 @@ +/* + * Copyright (c) 2018 Abex + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package net.runelite.client.ui; + +import java.awt.Color; +import java.awt.Point; +import javax.swing.JLabel; +import lombok.Getter; + +public class JShadowedLabel extends JLabel +{ + public JShadowedLabel() + { + super(); + setUI(new JShadowedLabelUI()); + } + + public JShadowedLabel(String str) + { + super(str); + setUI(new JShadowedLabelUI()); + } + + @Getter + private Color shadow = Color.BLACK; + + public void setShadow(Color shadow) + { + this.shadow = shadow; + repaint(); + } + + @Getter + private Point shadowSize = new Point(1, 1); + + public void setShadowSize(Point newSize) + { + this.shadowSize = newSize; + revalidate(); + repaint(); + } +} diff --git a/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabelUI.java b/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabelUI.java new file mode 100644 index 0000000000..0494b66d1f --- /dev/null +++ b/runelite-client/src/main/java/net/runelite/client/ui/JShadowedLabelUI.java @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2018 Abex + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package net.runelite.client.ui; + +import java.awt.Graphics; +import javax.swing.JLabel; +import javax.swing.plaf.basic.BasicLabelUI; + +class JShadowedLabelUI extends BasicLabelUI +{ + @Override + protected void paintEnabledText(JLabel l, Graphics g, String s, int textX, int textY) + { + if (l instanceof JShadowedLabel) + { + JShadowedLabel ll = (JShadowedLabel) l; + g.setColor(ll.getShadow()); + g.drawString(s, textX + ll.getShadowSize().x, textY + ll.getShadowSize().y); + } + g.setColor(l.getForeground()); + g.drawString(s, textX, textY); + } + + // The default impl of paintDisabledText is OK +}