package jalview.gui; import javax.swing.*; import java.awt.*; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; public class EPSOptions extends JPanel { JDialog dialog; boolean cancelled = false; String value; public EPSOptions() { try { jbInit(); } catch (Exception ex) { ex.printStackTrace(); } ButtonGroup bg = new ButtonGroup(); bg.add(lineart); bg.add(text); JOptionPane pane = new JOptionPane(null, JOptionPane.DEFAULT_OPTION, JOptionPane.DEFAULT_OPTION, null, new Object[]{this}); dialog = pane.createDialog(Desktop.desktop, "EPS Rendering options"); dialog.show(); } private void jbInit() throws Exception { lineart.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); lineart.setSelected(true); lineart.setText("Lineart"); text.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); text.setText("Text"); askAgain.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); askAgain.setText("Don\'t ask me again"); ok.setText("OK"); ok.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { ok_actionPerformed(e); } }); cancel.setText("Cancel"); cancel.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { cancel_actionPerformed(e); } }); jLabel1.setFont(new java.awt.Font("Verdana", Font.PLAIN, 11)); jLabel1.setText("Select EPS Character rendering style"); this.setLayout(borderLayout1); jPanel3.setBorder(BorderFactory.createEtchedBorder()); jPanel2.add(lineart); jPanel2.add(text); jPanel2.add(askAgain); jPanel1.add(ok); jPanel1.add(cancel); jPanel3.add(jLabel1); jPanel3.add(jPanel2); this.add(jPanel3, java.awt.BorderLayout.CENTER); this.add(jPanel1, java.awt.BorderLayout.SOUTH); } JRadioButton lineart = new JRadioButton(); JRadioButton text = new JRadioButton(); JCheckBox askAgain = new JCheckBox(); JButton ok = new JButton(); JButton cancel = new JButton(); JPanel jPanel1 = new JPanel(); JLabel jLabel1 = new JLabel(); JPanel jPanel2 = new JPanel(); JPanel jPanel3 = new JPanel(); BorderLayout borderLayout1 = new BorderLayout(); public void ok_actionPerformed(ActionEvent e) { if (lineart.isSelected()) value = "Lineart"; else value = "Text"; if (!askAgain.isSelected()) { jalview.bin.Cache.applicationProperties.remove("EPS_RENDERING"); } else { jalview.bin.Cache.setProperty("EPS_RENDERING", value); } dialog.hide(); } public void cancel_actionPerformed(ActionEvent e) { cancelled = true; dialog.hide(); } public String getValue() { return value; } }