X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FFinder.java;h=a4d7ad0a824713414d616d4203f9ecc726fe6f0e;hb=e29f805236e7328f34c0664e72f46925d7d28e07;hp=e5093d4fececd7e5ca80a2440c8dd0486333839a;hpb=7401546e66a2da2f687886aae099bf726383dd37;p=jalview.git diff --git a/src/jalview/gui/Finder.java b/src/jalview/gui/Finder.java index e5093d4..a4d7ad0 100755 --- a/src/jalview/gui/Finder.java +++ b/src/jalview/gui/Finder.java @@ -20,6 +20,8 @@ */ package jalview.gui; +import jalview.api.AlignViewportI; +import jalview.api.FinderI; import jalview.datamodel.SearchResultMatchI; import jalview.datamodel.SearchResultsI; import jalview.datamodel.SequenceFeature; @@ -32,8 +34,9 @@ import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; -import java.util.Vector; +import java.util.Map; import java.util.regex.Pattern; import java.util.regex.PatternSyntaxException; @@ -42,6 +45,7 @@ import javax.swing.JComponent; import javax.swing.JInternalFrame; import javax.swing.JLayeredPane; import javax.swing.KeyStroke; +import javax.swing.event.InternalFrameAdapter; import javax.swing.event.InternalFrameEvent; /** @@ -57,33 +61,39 @@ import javax.swing.event.InternalFrameEvent; */ public class Finder extends GFinder { - private static final int MY_HEIGHT = 120; + private static final int MIN_WIDTH = 350; - private static final int MY_WIDTH = 400; + private static final int MIN_HEIGHT = 120; - AlignmentViewport av; + private static final int MY_HEIGHT = 120; - AlignmentPanel ap; + private static final int MY_WIDTH = 400; - private static final int MIN_WIDTH = 350; + private AlignViewportI av; - private static final int MIN_HEIGHT = 120; + private AlignmentPanel ap; - JInternalFrame frame; + private JInternalFrame frame; - int seqIndex = 0; + /* + * Finder agent per viewport searched + */ + private Map finders; - int resIndex = -1; + private SearchResultsI searchResults; - SearchResultsI searchResults; + /* + * true if we only search a given alignment view + */ + private boolean focusfixed; /** - * Creates a new Finder object with no associated viewport or panel. + * Creates a new Finder object with no associated viewport or panel. Each Find + * or Find Next action will act on whichever viewport has focus at the time. */ public Finder() { this(null, null); - focusfixed = false; } /** @@ -97,12 +107,13 @@ public class Finder extends GFinder { av = viewport; ap = alignPanel; - focusfixed = true; + finders = new HashMap<>(); + focusfixed = viewport != null; frame = new JInternalFrame(); frame.setContentPane(this); frame.setLayer(JLayeredPane.PALETTE_LAYER); frame.addInternalFrameListener( - new javax.swing.event.InternalFrameAdapter() + new InternalFrameAdapter() { @Override public void internalFrameClosing(InternalFrameEvent e) @@ -135,12 +146,10 @@ public class Finder extends GFinder } /** - * Performs the 'Find Next' action. - * - * @param e + * Performs the 'Find Next' action on the alignment panel with focus */ @Override - public void findNext_actionPerformed(ActionEvent e) + public void findNext_actionPerformed() { if (getFocusedViewport()) { @@ -149,27 +158,18 @@ public class Finder extends GFinder } /** - * Performs the 'Find All' action. - * - * @param e + * Performs the 'Find All' action on the alignment panel with focus */ @Override - public void findAll_actionPerformed(ActionEvent e) + public void findAll_actionPerformed() { if (getFocusedViewport()) { - resIndex = -1; - seqIndex = 0; doSearch(true); } } /** - * do we only search a given alignment view ? - */ - private boolean focusfixed; - - /** * if !focusfixed and not in a desktop environment, checks that av and ap are * valid. Otherwise, gets the topmost alignment window and sets av and ap * accordingly @@ -262,20 +262,29 @@ public class Finder extends GFinder // other stuff // TODO: add switches to control what is searched - sequences, IDS, // descriptions, features - jalview.analysis.Finder finder = new jalview.analysis.Finder( - av.getAlignment(), av.getSelectionGroup(), seqIndex, resIndex); - finder.setCaseSensitive(caseSensitive.isSelected()); - finder.setIncludeDescription(searchDescription.isSelected()); - - finder.setFindAll(doFindAll); - - finder.find(searchString); + FinderI finder = finders.get(av); + if (finder == null) + { + /* + * first time we've searched this viewport + */ + finder = new jalview.analysis.Finder(av); + finders.put(av, finder); + } - seqIndex = finder.getSeqIndex(); - resIndex = finder.getResIndex(); + boolean isCaseSensitive = caseSensitive.isSelected(); + boolean doSearchDescription = searchDescription.isSelected(); + if (doFindAll) + { + finder.findAll(searchString, isCaseSensitive, doSearchDescription); + } + else + { + finder.findNext(searchString, isCaseSensitive, doSearchDescription); + } searchResults = finder.getSearchResults(); - Vector idMatch = finder.getIdMatch(); + List idMatch = finder.getIdMatches(); ap.getIdPanel().highlightSearchResults(idMatch); if (searchResults.isEmpty()) @@ -295,8 +304,6 @@ public class Finder extends GFinder JvOptionPane.showInternalMessageDialog(this, MessageManager.getString("label.finished_searching"), null, JvOptionPane.INFORMATION_MESSAGE); - resIndex = -1; - seqIndex = 0; } else { @@ -316,8 +323,6 @@ public class Finder extends GFinder } JvOptionPane.showInternalMessageDialog(this, message, null, JvOptionPane.INFORMATION_MESSAGE); - resIndex = -1; - seqIndex = 0; } } searchBox.updateCache();