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.DataSourceType;
25 import jalview.io.FileFormat;
26 import jalview.io.FormatAdapter;
27 import jalview.io.cache.JvCacheableInputBox;
28 import jalview.util.MessageManager;
30 import java.awt.BorderLayout;
31 import java.awt.Dimension;
33 import java.awt.GridLayout;
34 import java.awt.Insets;
35 import java.awt.event.ActionEvent;
36 import java.awt.event.KeyEvent;
38 import javax.swing.JButton;
39 import javax.swing.JCheckBox;
40 import javax.swing.JLabel;
41 import javax.swing.JPanel;
42 import javax.swing.SwingConstants;
43 import javax.swing.SwingUtilities;
44 import javax.swing.event.CaretEvent;
45 import javax.swing.event.CaretListener;
46 import javax.swing.text.JTextComponent;
48 public class GFinder extends JPanel
50 JLabel jLabelFind = new JLabel();
52 protected JButton findAll = new JButton();
54 protected JButton findNext = new JButton();
56 JPanel actionsPanel = new JPanel();
58 GridLayout gridLayout1 = new GridLayout();
60 protected JButton createFeatures = new JButton();
62 protected JvCacheableInputBox<String> searchBox = new JvCacheableInputBox<String>(
65 BorderLayout mainBorderLayout = new BorderLayout();
67 JPanel jPanel2 = new JPanel();
69 JPanel jPanel3 = new JPanel();
71 JPanel jPanel4 = new JPanel();
73 BorderLayout borderLayout2 = new BorderLayout();
75 JPanel jPanel6 = new JPanel();
77 protected JCheckBox caseSensitive = new JCheckBox();
79 protected JCheckBox searchDescription = new JCheckBox();
81 GridLayout optionsGridLayout = new GridLayout();
83 private static final String FINDER_CACHE_KEY = "CACHE.FINDER";
96 private void jbInit() throws Exception
98 jLabelFind.setFont(new java.awt.Font("Verdana", 0, 12));
99 jLabelFind.setText(MessageManager.getString("label.find"));
100 this.setLayout(mainBorderLayout);
101 findAll.setFont(new java.awt.Font("Verdana", 0, 12));
102 findAll.setText(MessageManager.getString("action.find_all"));
103 findAll.addActionListener(new java.awt.event.ActionListener()
106 public void actionPerformed(ActionEvent e)
108 findAll_actionPerformed(e);
111 findNext.setFont(new java.awt.Font("Verdana", 0, 12));
112 findNext.setText(MessageManager.getString("action.find_next"));
113 findNext.addActionListener(new java.awt.event.ActionListener()
116 public void actionPerformed(ActionEvent e)
118 findNext_actionPerformed(e);
121 actionsPanel.setLayout(gridLayout1);
122 gridLayout1.setHgap(0);
123 gridLayout1.setRows(3);
124 gridLayout1.setVgap(2);
125 createFeatures.setEnabled(false);
126 createFeatures.setFont(new java.awt.Font("Verdana", 0, 12));
127 createFeatures.setMargin(new Insets(0, 0, 0, 0));
128 createFeatures.setText(MessageManager.getString("label.new_feature"));
129 createFeatures.addActionListener(new java.awt.event.ActionListener()
132 public void actionPerformed(ActionEvent e)
134 createFeatures_actionPerformed();
137 searchBox.setFont(new java.awt.Font("Verdana", Font.PLAIN, 12));
138 ((JTextComponent) searchBox.getEditor().getEditorComponent())
139 .addCaretListener(new CaretListener()
142 public void caretUpdate(CaretEvent e)
144 textfield_caretUpdate(e);
147 searchBox.getEditor().getEditorComponent()
148 .addKeyListener(new java.awt.event.KeyAdapter()
151 public void keyPressed(KeyEvent e)
153 textfield_keyPressed(e);
156 mainBorderLayout.setHgap(5);
157 mainBorderLayout.setVgap(5);
158 jPanel4.setLayout(borderLayout2);
159 jPanel2.setPreferredSize(new Dimension(10, 1));
160 jPanel3.setPreferredSize(new Dimension(10, 1));
161 caseSensitive.setHorizontalAlignment(SwingConstants.LEFT);
162 caseSensitive.setText(MessageManager.getString("label.match_case"));
165 .setText(MessageManager.getString("label.include_description"));
167 actionsPanel.add(findNext, null);
168 actionsPanel.add(findAll, null);
169 actionsPanel.add(createFeatures, null);
170 this.add(jLabelFind, java.awt.BorderLayout.WEST);
171 this.add(actionsPanel, java.awt.BorderLayout.EAST);
172 this.add(jPanel2, java.awt.BorderLayout.SOUTH);
173 this.add(jPanel3, java.awt.BorderLayout.NORTH);
174 this.add(jPanel4, java.awt.BorderLayout.CENTER);
175 jPanel4.add(searchBox, java.awt.BorderLayout.NORTH);
177 JPanel optionsPanel = new JPanel();
179 optionsGridLayout.setHgap(0);
180 optionsGridLayout.setRows(2);
181 optionsGridLayout.setVgap(2);
182 optionsPanel.setLayout(optionsGridLayout);
183 optionsPanel.add(caseSensitive, null);
184 optionsPanel.add(searchDescription, null);
186 jPanel4.add(optionsPanel, java.awt.BorderLayout.WEST);
189 protected void textfield_keyPressed(KeyEvent e)
191 if (e.getKeyCode() == KeyEvent.VK_ENTER)
193 if (!searchBox.isPopupVisible())
196 findNext_actionPerformed(null);
201 protected void findNext_actionPerformed(ActionEvent e)
205 protected void findAll_actionPerformed(ActionEvent e)
209 public void createFeatures_actionPerformed()
213 public void textfield_caretUpdate(CaretEvent e)
215 if (searchBox.getUserInput().indexOf(">") > -1)
217 SwingUtilities.invokeLater(new Runnable()
222 String str = searchBox.getUserInput();
223 AlignmentI al = null;
226 al = new FormatAdapter().readFile(str, DataSourceType.PASTE,
228 } catch (Exception ex)
231 if (al != null && al.getHeight() > 0)
233 str = jalview.analysis.AlignSeq.extractGaps(
234 jalview.util.Comparison.GapChars,
235 al.getSequenceAt(0).getSequenceAsString());
244 * Returns unique key used for storing Finder cache items in the cache data
249 public String getCacheKey()
251 return FINDER_CACHE_KEY;