gpt4 book ai didi

java - 选择圆弧段

转载 作者:行者123 更新时间:2023-11-29 06:51:12 24 4
gpt4 key购买 nike

我正在使用 java 在 Windows 中创建一个滚轮/拨号选择器,它会在按下按钮时弹出,供用户选择不同的部分之一来执行他们之前在创建该部分时指定的操作。

我对如何选择圆的不同部分感到困惑,目前我使用自定义布局在圆周围创建了 JLabel,但它们的交互区域仅限于文本周围的矩形。

如何将此区域更改为三角形/圆周率线段?

有没有更好的方法来实现这一点?

这是一张图像,其中第 4 段具有我想要实现的区域(以蓝色突出显示)。

Wheel / Dial Example Image

最佳答案

老实说,您可以通过多种方式做到这一点。我能想到的最简单的方法之一是利用 2D 图形 Shape API。

为简单起见,以下示例仅使用 Arc2D,但一般概念也适用于基于 Path 的形状(如果您想变得那么复杂)

Highlight segment

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.geom.Arc2D;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

public static void main(String[] args) {
new Test();
}

public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class TestPane extends JPanel {

private Arc2D segment;

private Arc2D selected = null;

public TestPane() {
segment = new Arc2D.Double(0, 0, 190, 190, -11.75, 23.5, Arc2D.PIE);
addMouseMotionListener(new MouseAdapter() {
@Override
public void mouseMoved(MouseEvent e) {
Point p = e.getPoint();
p.translate(-5, -5);
selected = null;
if (segment.contains(e.getPoint())) {
selected = segment;
}
repaint();
}
});
}

@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}

protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
g2d.translate(5, 5);
if (selected != null) {
g2d.setColor(Color.BLUE);
g2d.fill(selected);
}
g2d.setColor(Color.RED);
g2d.draw(segment);
g2d.dispose();
}

}

}

看看Working with Geometry了解更多详情

关于java - 选择圆弧段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47876380/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com