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.
21 package jalview.jbgui;
23 import jalview.datamodel.AlignmentI;
24 import jalview.io.FormatAdapter;
25 import jalview.util.MessageManager;
27 import java.awt.BorderLayout;
28 import java.awt.Dimension;
30 import java.awt.GridLayout;
31 import java.awt.Insets;
32 import java.awt.event.ActionEvent;
33 import java.awt.event.KeyEvent;
35 import javax.swing.JButton;
36 import javax.swing.JCheckBox;
37 import javax.swing.JLabel;
38 import javax.swing.JPanel;
39 import javax.swing.JScrollPane;
40 import javax.swing.JTextArea;
41 import javax.swing.SwingConstants;
42 import javax.swing.SwingUtilities;
43 import javax.swing.event.CaretEvent;
44 import javax.swing.event.CaretListener;
46 public class GFinder extends JPanel
48 JLabel jLabelFind = new JLabel();
50 protected JButton findAll = new JButton();
52 protected JButton findNext = new JButton();
54 JPanel actionsPanel = new JPanel();
56 GridLayout gridLayout1 = new GridLayout();
58 protected JButton createNewGroup = new JButton();
60 JScrollPane jScrollPane1 = new JScrollPane();
62 protected JTextArea textfield = new JTextArea();
64 BorderLayout mainBorderLayout = new BorderLayout();
66 JPanel jPanel2 = new JPanel();
68 JPanel jPanel3 = new JPanel();
70 JPanel jPanel4 = new JPanel();
72 BorderLayout borderLayout2 = new BorderLayout();
74 JPanel jPanel6 = new JPanel();
76 protected JCheckBox caseSensitive = new JCheckBox();
78 protected JCheckBox searchDescription = new JCheckBox();
80 GridLayout optionsGridLayout = new GridLayout();
93 private void jbInit() throws Exception
95 jLabelFind.setFont(new java.awt.Font("Verdana", 0, 12));
96 jLabelFind.setText(MessageManager.getString("label.find"));
97 this.setLayout(mainBorderLayout);
98 findAll.setFont(new java.awt.Font("Verdana", 0, 12));
99 findAll.setText(MessageManager.getString("action.find_all"));
100 findAll.addActionListener(new java.awt.event.ActionListener()
102 public void actionPerformed(ActionEvent e)
104 findAll_actionPerformed(e);
107 findNext.setFont(new java.awt.Font("Verdana", 0, 12));
108 findNext.setText(MessageManager.getString("action.find_next"));
109 findNext.addActionListener(new java.awt.event.ActionListener()
111 public void actionPerformed(ActionEvent e)
113 findNext_actionPerformed(e);
116 actionsPanel.setLayout(gridLayout1);
117 gridLayout1.setHgap(0);
118 gridLayout1.setRows(3);
119 gridLayout1.setVgap(2);
120 createNewGroup.setEnabled(false);
121 createNewGroup.setFont(new java.awt.Font("Verdana", 0, 12));
122 createNewGroup.setMargin(new Insets(0, 0, 0, 0));
123 createNewGroup.setText(MessageManager.getString("label.new_feature"));
124 createNewGroup.addActionListener(new java.awt.event.ActionListener()
126 public void actionPerformed(ActionEvent e)
128 createNewGroup_actionPerformed(e);
131 textfield.setFont(new java.awt.Font("Verdana", Font.PLAIN, 12));
132 textfield.setText("");
133 textfield.setLineWrap(true);
134 textfield.addCaretListener(new CaretListener()
136 public void caretUpdate(CaretEvent e)
138 textfield_caretUpdate(e);
141 textfield.addKeyListener(new java.awt.event.KeyAdapter()
143 public void keyPressed(KeyEvent e)
145 textfield_keyPressed(e);
149 mainBorderLayout.setHgap(5);
150 mainBorderLayout.setVgap(5);
151 jPanel4.setLayout(borderLayout2);
152 jPanel2.setPreferredSize(new Dimension(10, 1));
153 jPanel3.setPreferredSize(new Dimension(10, 1));
154 caseSensitive.setHorizontalAlignment(SwingConstants.LEFT);
155 caseSensitive.setText(MessageManager.getString("label.match_case"));
157 searchDescription.setText(MessageManager
158 .getString("label.include_description"));
160 actionsPanel.add(findNext, null);
161 actionsPanel.add(findAll, null);
162 actionsPanel.add(createNewGroup, null);
163 this.add(jLabelFind, java.awt.BorderLayout.WEST);
164 this.add(actionsPanel, java.awt.BorderLayout.EAST);
165 this.add(jPanel2, java.awt.BorderLayout.SOUTH);
166 this.add(jPanel3, java.awt.BorderLayout.NORTH);
167 this.add(jPanel4, java.awt.BorderLayout.CENTER);
168 jPanel4.add(jScrollPane1, java.awt.BorderLayout.NORTH);
169 jScrollPane1.getViewport().add(textfield);
171 JPanel optionsPanel = new JPanel();
173 optionsGridLayout.setHgap(0);
174 optionsGridLayout.setRows(2);
175 optionsGridLayout.setVgap(2);
176 optionsPanel.setLayout(optionsGridLayout);
177 optionsPanel.add(caseSensitive, null);
178 optionsPanel.add(searchDescription, null);
180 jPanel4.add(optionsPanel, java.awt.BorderLayout.WEST);
183 protected void findNext_actionPerformed(ActionEvent e)
187 protected void findAll_actionPerformed(ActionEvent e)
191 protected void textfield_keyPressed(KeyEvent e)
193 if (e.getKeyCode() == KeyEvent.VK_ENTER)
196 findNext_actionPerformed(null);
200 public void createNewGroup_actionPerformed(ActionEvent e)
204 public void textfield_caretUpdate(CaretEvent e)
206 if (textfield.getText().indexOf(">") > -1)
208 SwingUtilities.invokeLater(new Runnable()
212 String str = textfield.getText();
213 AlignmentI al = null;
216 al = new FormatAdapter().readFile(str, "Paste", "FASTA");
217 } catch (Exception ex)
220 if (al != null && al.getHeight() > 0)
222 str = jalview.analysis.AlignSeq.extractGaps(
223 jalview.util.Comparison.GapChars, al.getSequenceAt(0)
224 .getSequenceAsString());
226 textfield.setText(str);