2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3 * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package jalview.appletgui;
23 import java.awt.event.*;
25 import jalview.datamodel.*;
27 public class Finder extends Panel implements ActionListener
35 SearchResults searchResults;
41 public Finder(final AlignmentPanel ap)
56 jalview.bin.JalviewLite.addFrame(frame, "Find", 340, 120);
58 frame.addWindowListener(new WindowAdapter()
60 public void windowClosing(WindowEvent evt)
62 ap.highlightSearchResults(null);
65 textfield.requestFocus();
68 public void actionPerformed(ActionEvent evt)
70 if (evt.getSource() == textfield)
75 else if (evt.getSource() == findNext)
80 else if (evt.getSource() == findAll)
86 else if (evt.getSource() == createNewGroup)
88 createNewGroup_actionPerformed();
92 public void createNewGroup_actionPerformed()
94 SequenceI[] seqs = new SequenceI[searchResults.getSize()];
95 SequenceFeature[] features = new SequenceFeature[searchResults
98 for (int i = 0; i < searchResults.getSize(); i++)
100 seqs[i] = searchResults.getResultSequence(i);
102 features[i] = new SequenceFeature(textfield.getText().trim(),
103 "Search Results", null, searchResults.getResultStart(i),
104 searchResults.getResultEnd(i), "Search Results");
107 if (ap.seqPanel.seqCanvas.getFeatureRenderer().amendFeatures(seqs,
110 ap.alignFrame.sequenceFeatures.setState(true);
111 av.showSequenceFeatures(true);
112 ap.highlightSearchResults(null);
116 void doSearch(boolean findAll)
118 if (ap.av.applet.currentAlignFrame != null)
120 ap = ap.av.applet.currentAlignFrame.alignPanel;
123 createNewGroup.setEnabled(false);
124 jalview.analysis.Finder finder = new jalview.analysis.Finder(
125 av.getAlignment(), av.getSelectionGroup(), seqIndex, resIndex);
126 finder.setCaseSensitive(caseSensitive.getState());
127 finder.setFindAll(findAll);
129 String searchString = textfield.getText();
131 finder.find(searchString);
132 seqIndex = finder.getSeqIndex();
133 resIndex = finder.getResIndex();
134 searchResults = finder.getSearchResults();
135 Vector idMatch = finder.getIdMatch();
136 boolean haveResults = false;
137 // set or reset the GUI
138 if ((idMatch.size() > 0))
141 ap.idPanel.highlightSearchResults(idMatch);
145 ap.idPanel.highlightSearchResults(null);
148 if (searchResults.getSize() > 0)
151 createNewGroup.setEnabled(true);
156 searchResults = null;
159 // if allResults is null, this effectively switches displaySearch flag in
161 ap.highlightSearchResults(searchResults);
162 // TODO: add enablers for 'SelectSequences' or 'SelectColumns' or
163 // 'SelectRegion' selection
166 ap.alignFrame.statusBar.setText("Finished searching.");
174 String message = (idMatch.size() > 0) ? "" + idMatch.size()
176 if (idMatch.size() > 0 && searchResults != null
177 && searchResults.getSize() > 0)
181 if (searchResults != null)
183 message += searchResults.getSize() + " subsequence matches.";
185 ap.alignFrame.statusBar.setText("Search results: " + searchString
191 // TODO: indicate sequence and matching position in status bar
192 ap.alignFrame.statusBar.setText("Found match for " + searchString);
197 Label jLabel1 = new Label();
199 protected TextField textfield = new TextField();
201 protected Button findAll = new Button();
203 protected Button findNext = new Button();
205 Panel jPanel1 = new Panel();
207 GridLayout gridLayout1 = new GridLayout();
209 protected Button createNewGroup = new Button();
211 Checkbox caseSensitive = new Checkbox();
213 private void jbInit() throws Exception
215 jLabel1.setFont(new java.awt.Font("Verdana", 0, 12));
216 jLabel1.setText("Find");
217 jLabel1.setBounds(new Rectangle(3, 30, 34, 15));
218 this.setLayout(null);
219 textfield.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
220 textfield.setText("");
221 textfield.setBounds(new Rectangle(40, 27, 133, 21));
222 textfield.addKeyListener(new java.awt.event.KeyAdapter()
224 public void keyTyped(KeyEvent e)
226 textfield_keyTyped(e);
229 textfield.addActionListener(this);
230 findAll.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
231 findAll.setLabel("Find all");
232 findAll.addActionListener(this);
233 findNext.setEnabled(false);
234 findNext.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
235 findNext.setLabel("Find Next");
236 findNext.addActionListener(this);
237 jPanel1.setBounds(new Rectangle(180, 5, 141, 64));
238 jPanel1.setLayout(gridLayout1);
239 gridLayout1.setHgap(0);
240 gridLayout1.setRows(3);
241 gridLayout1.setVgap(2);
242 createNewGroup.setEnabled(false);
243 createNewGroup.setFont(new java.awt.Font("Verdana", Font.PLAIN, 10));
244 createNewGroup.setLabel("New Feature");
245 createNewGroup.addActionListener(this);
246 caseSensitive.setLabel("Match Case");
247 caseSensitive.setBounds(new Rectangle(40, 49, 126, 23));
248 jPanel1.add(findNext, null);
249 jPanel1.add(findAll, null);
250 jPanel1.add(createNewGroup, null);
251 this.add(caseSensitive);
252 this.add(textfield, null);
253 this.add(jLabel1, null);
254 this.add(jPanel1, null);
257 void textfield_keyTyped(KeyEvent e)
259 findNext.setEnabled(true);