| | |
| | | import java.awt.*; |
| | | import com.fazecast.jSerialComm.SerialPort; |
| | | import chushihua.Chushihua; |
| | | import home.CardMachineUI; |
| | | |
| | | /** |
| | | * 串口连接对话框 |
| | | * 软件启动时显示,用于选择串口和波特率并连接 |
| | | */ |
| | | @SuppressWarnings("serial") |
| | | public class SerialPortConnectionDialog extends JDialog { |
| | | |
| | | // 颜色常量 |
| | | private static final Color PRIMARY_COLOR = new Color(52, 152, 219); |
| | | private static final Color PRIMARY_DARK_COLOR = new Color(41, 128, 185); |
| | | private static final Color SECONDARY_COLOR = new Color(46, 204, 113); |
| | | private static final Color DANGER_COLOR = new Color(231, 76, 60); |
| | | private static final Color DARK_COLOR = new Color(255, 69, 0); // 改为橘黄色 |