Leo.Qin
12 months ago
2 changed files with 132 additions and 6 deletions
@ -0,0 +1,97 @@ |
|||||||
|
package com.fine.theme.light.ui; |
||||||
|
|
||||||
|
import com.formdev.flatlaf.ui.FlatToolTipUI; |
||||||
|
import com.formdev.flatlaf.ui.FlatUIUtils; |
||||||
|
import com.fr.base.BaseUtils; |
||||||
|
import com.fr.stable.Constants; |
||||||
|
|
||||||
|
import javax.swing.JComponent; |
||||||
|
import javax.swing.JToolTip; |
||||||
|
import javax.swing.SwingUtilities; |
||||||
|
import javax.swing.UIManager; |
||||||
|
import javax.swing.plaf.ComponentUI; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FontMetrics; |
||||||
|
import java.awt.Graphics; |
||||||
|
import java.awt.Graphics2D; |
||||||
|
import java.awt.Insets; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* ToolTip UI类 |
||||||
|
* |
||||||
|
* @author Leo.Qin |
||||||
|
* @since 11.0 |
||||||
|
* Created on 2023/12/8 |
||||||
|
*/ |
||||||
|
public class FineTooltipUI extends FlatToolTipUI { |
||||||
|
private int maxWidth; |
||||||
|
private int arc; |
||||||
|
private List<String> lines; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建UI |
||||||
|
*/ |
||||||
|
public static ComponentUI createUI(JComponent c) { |
||||||
|
return FlatUIUtils.createSharedUI(FineTooltipUI.class, FineTooltipUI::new); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void paint(Graphics g, JComponent c) { |
||||||
|
|
||||||
|
g.setColor(c.getBackground()); |
||||||
|
g.fillRoundRect(0, 0, c.getWidth(), c.getHeight(), arc, arc); |
||||||
|
|
||||||
|
String text = ((JToolTip) c).getTipText(); |
||||||
|
if (text == null || text.isEmpty()) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
Insets insets = c.getInsets(); |
||||||
|
Graphics2D g2d = (Graphics2D) g; |
||||||
|
FontMetrics fm = g2d.getFontMetrics(); |
||||||
|
|
||||||
|
int x = insets.left; |
||||||
|
int y = insets.top + fm.getAscent(); |
||||||
|
|
||||||
|
g2d.setColor(c.getForeground()); |
||||||
|
|
||||||
|
for (String line : lines) { |
||||||
|
g2d.drawString(line, x, y); |
||||||
|
y += fm.getHeight(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
protected void installDefaults(JComponent c) { |
||||||
|
super.installDefaults(c); |
||||||
|
c.setOpaque(false); |
||||||
|
arc = UIManager.getInt("ToolTip.arc"); |
||||||
|
maxWidth = UIManager.getInt("ToolTip.maxWidth"); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public Dimension getPreferredSize(JComponent c) { |
||||||
|
String text = ((JToolTip) c).getTipText(); |
||||||
|
if (text == null || text.isEmpty()) { |
||||||
|
return new Dimension(); |
||||||
|
} |
||||||
|
|
||||||
|
Insets insets = c.getInsets(); |
||||||
|
int fontWidth = this.maxWidth - insets.left - insets.right; |
||||||
|
lines = BaseUtils.getLineTextList(text, null, null, fontWidth, Constants.FR_PAINT_RESOLUTION); |
||||||
|
|
||||||
|
FontMetrics fm = c.getFontMetrics(c.getFont()); |
||||||
|
|
||||||
|
int width = 0; |
||||||
|
int height = fm.getHeight() * Math.max(lines.size(), 1); |
||||||
|
for (String line : lines) { |
||||||
|
width = Math.max(width, SwingUtilities.computeStringWidth(fm, line)); |
||||||
|
} |
||||||
|
|
||||||
|
return new Dimension(insets.left + width + insets.right, insets.top + height + insets.bottom); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue