我问了一个关于自定义小部件的问题,但对我是否需要它以及如何继续进行了混淆。
我目前有这门课程
public class GUIEdge {
public Node node1;
public Node node2;
public int weight;
public Color color;
public GUIEdge(Node node1, Node node2 , int cost) {
this.node1 = node1;
this.node2 = node2;
this.weight = cost;
this.color = Color.darkGray;
}
public void draw(Graphics g) {
Point p1 = node1.getLocation();
Point p2 = node2.getLocation();
g.setColor(this.color);
((Graphics2D) g).setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
g.drawLine(p1.x, p1.y, p2.x, p2.y);
}
}
目前这在两点之间划出了优势,但现在我希望成本标签也随之创建。
我已经添加了拖动节点和边缘的处理,因此创建标签的最佳方法是什么
我需要为此制作自定义小部件吗?任何人都可以解释一下,假设通过从JComponent扩展来创建组件,那么我将通过g.mixed()调用它,其中混合是新的小部件......?
答案 0 :(得分:2)
工具提示当然值得一看。其他选项包括drawString()
,translate()
或TextLayout
。有许多examples可用。
附录:以下示例显示了@Catalina岛建议的drawString()
和setToolTipText()
。对于simplicity,端点相对于组件的大小,因此您可以看到调整窗口大小的结果。
附录:setToolTipText()
的这种使用仅仅证明了这种方法。正如@camickr注意到here,你应该覆盖getToolTipText(MouseEvent)
并在鼠标悬停在线上或选择线时更新提示。
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Point;
import javax.swing.JComponent;
import javax.swing.JFrame;
/** @see https://stackoverflow.com/questions/5394364 */
public class LabeledEdge extends JComponent {
private static final int N = 20;
private Point n1, n2;
public LabeledEdge(int w, int h) {
this.setPreferredSize(new Dimension(w, h));
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
this.n1 = new Point(N, N);
this.n2 = new Point(getWidth() - N, getHeight() - N);
g.drawLine(n1.x, n1.y, n2.x, n2.y);
double d = n1.distance(n2);
this.setToolTipText(String.valueOf(d));
g.drawString(String.valueOf((int) d),
(n1.x + n2.x) / 2, (n1.y + n2.y) / 2);
}
private static void display() {
JFrame f = new JFrame("EdgeLabel");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(new LabeledEdge(320, 240));
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
display();
}
});
}
}
答案 1 :(得分:1)
我认为您可以使用GUIEdge extends JComponent
。这样你就可以自动获得工具提示标签了。