b9845a4878b04515b5c05012b58516031bf44151
[jalview.git] / src / jalview / gui / AlignExportSettings.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.gui;
22
23 import jalview.api.AlignExportSettingI;
24 import jalview.bin.Jalview;
25 import jalview.io.FileFormatI;
26 import jalview.jbgui.GAlignExportSettings;
27 import jalview.util.MessageManager;
28
29 import java.awt.event.ActionEvent;
30 import java.awt.event.WindowAdapter;
31 import java.awt.event.WindowEvent;
32
33 import javax.swing.JDialog;
34 import javax.swing.JOptionPane;
35
36 @SuppressWarnings("serial")
37 public class AlignExportSettings extends GAlignExportSettings implements
38         AlignExportSettingI
39 {
40   boolean cancelled = false;
41
42   JDialog dialog;
43
44   public AlignExportSettings(boolean hasHiddenSeq, boolean hasHiddenCols,
45           FileFormatI format)
46   {
47     super(hasHiddenSeq, hasHiddenCols, format);
48     if (!Jalview.isHeadlessMode() && isShowDialog())
49     {
50
51       JOptionPane pane = new JOptionPane(null, JOptionPane.DEFAULT_OPTION,
52               JvOptionPane.DEFAULT_OPTION, null, new Object[] { this });
53       dialog = pane.createDialog(Desktop.desktop,
54               MessageManager.getString("label.export_settings"));
55       dialog.addWindowListener(new WindowAdapter()
56       {
57         @Override
58         public void windowClosing(WindowEvent e)
59         {
60           cancelled = true;
61         }
62       });
63       dialog.pack();
64       dialog.setVisible(true);
65       dialog.setContentPane(this);
66       dialog.validate();
67
68     }
69   }
70
71   @Override
72   public void ok_actionPerformed(ActionEvent e)
73   {
74     cancelled = false;
75     dialog.setVisible(false);
76     dialog.dispose();
77   }
78
79   @Override
80   public void cancel_actionPerformed(ActionEvent e)
81   {
82     cancelled = true;
83     dialog.setVisible(false);
84     dialog.dispose();
85   }
86
87   @Override
88   public boolean isExportHiddenSequences()
89   {
90     return chkHiddenSeqs.isSelected();
91   }
92
93   @Override
94   public boolean isExportHiddenColumns()
95   {
96     return chkHiddenCols.isSelected();
97   }
98
99   @Override
100   public boolean isExportAnnotations()
101   {
102     return chkExportAnnots.isSelected();
103   }
104
105   @Override
106   public boolean isExportFeatures()
107   {
108     return chkExportFeats.isSelected();
109   }
110
111   @Override
112   public boolean isExportGroups()
113   {
114     return chkExportGrps.isSelected();
115   }
116
117   @Override
118   public boolean isCancelled()
119   {
120     return cancelled;
121   }
122
123 }