2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.api.AlignExportSettingI;
24 import jalview.bin.Jalview;
25 import jalview.jbgui.GAlignExportSettings;
26 import jalview.util.MessageManager;
28 import java.awt.event.ActionEvent;
29 import java.awt.event.WindowAdapter;
30 import java.awt.event.WindowEvent;
32 import javax.swing.JDialog;
33 import javax.swing.JOptionPane;
35 @SuppressWarnings("serial")
36 public class AlignExportSettings extends GAlignExportSettings implements
39 boolean cancelled = false;
43 public AlignExportSettings(boolean hasHiddenSeq, boolean hasHiddenCols,
44 String alignFileFormat)
46 super(hasHiddenSeq, hasHiddenCols, alignFileFormat);
47 if (!Jalview.isHeadlessMode() && isShowDialog())
50 JOptionPane pane = new JOptionPane(null, JOptionPane.DEFAULT_OPTION,
51 JOptionPane.DEFAULT_OPTION, null, new Object[] { this });
52 dialog = pane.createDialog(Desktop.desktop,
53 MessageManager.getString("label.export_settings"));
54 dialog.addWindowListener(new WindowAdapter()
56 public void windowClosing(WindowEvent e)
62 dialog.setVisible(true);
63 dialog.setContentPane(this);
69 public void ok_actionPerformed(ActionEvent e)
72 dialog.setVisible(false);
76 public void cancel_actionPerformed(ActionEvent e)
79 dialog.setVisible(false);
84 public boolean isExportHiddenSequences()
86 return chkHiddenSeqs.isSelected();
90 public boolean isExportHiddenColumns()
92 return chkHiddenCols.isSelected();
96 public boolean isExportAnnotations()
98 return chkExportAnnots.isSelected();
102 public boolean isExportFeatures()
104 return chkExportFeats.isSelected();
108 public boolean isExportGroups()
110 return chkExportGrps.isSelected();
113 public boolean isCancelled()