X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FIdCanvas.java;h=5b589bbd54f175517f4873057ee03953ccc6acd4;hb=59d682209891099d46b960509907c79e3fb276fe;hp=b713913d9cff234fa98ed430f53adcca872b9a4c;hpb=8a6fa9ea9900d0f106529c3f6283e7f9d76dd2cb;p=jalview.git diff --git a/src/jalview/gui/IdCanvas.java b/src/jalview/gui/IdCanvas.java index b713913..5b589bb 100755 --- a/src/jalview/gui/IdCanvas.java +++ b/src/jalview/gui/IdCanvas.java @@ -1,13 +1,13 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) - * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8) + * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - * + * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -19,6 +19,8 @@ package jalview.gui; import java.awt.*; import java.awt.image.*; +import java.util.List; + import javax.swing.*; import jalview.datamodel.*; @@ -47,7 +49,7 @@ public class IdCanvas extends JPanel boolean fastPaint = false; - java.util.Vector searchResults; + List searchResults; FontMetrics fm; @@ -123,7 +125,7 @@ public class IdCanvas extends JPanel gg.drawString(s.getDisplayId(av.getShowJVSuffix()), xPos, (((i - starty + 1) * charHeight) + ypos) - (charHeight / 5)); - if (av.hasHiddenRows && av.showHiddenMarkers) + if (av.hasHiddenRows() && av.showHiddenMarkers) { drawMarker(i, starty, ypos); } @@ -264,10 +266,10 @@ public class IdCanvas extends JPanel if (av.getWrapAlignment()) { - int maxwidth = av.alignment.getWidth(); - int alheight = av.alignment.getHeight(); + int maxwidth = av.getAlignment().getWidth(); + int alheight = av.getAlignment().getHeight(); - if (av.hasHiddenColumns) + if (av.hasHiddenColumns()) { maxwidth = av.getColumnSelection().findColumnPosition(maxwidth) - 1; } @@ -304,8 +306,8 @@ public class IdCanvas extends JPanel { for (int i = starty; i < alheight; i++) { - SequenceI s = av.alignment.getSequenceAt(i); - if (av.hasHiddenRows) + SequenceI s = av.getAlignment().getSequenceAt(i); + if (av.hasHiddenRows()) { setHiddenFont(s); } @@ -338,14 +340,14 @@ public class IdCanvas extends JPanel // Now draw the id strings for (int i = starty; i < endy; i++) { - sequence = av.alignment.getSequenceAt(i); + sequence = av.getAlignment().getSequenceAt(i); if (sequence == null) { continue; } - if (av.hasHiddenRows) + if (av.hasHiddenRows()) { setHiddenFont(sequence); } @@ -387,7 +389,7 @@ public class IdCanvas extends JPanel (((i - starty) * av.charHeight) + av.charHeight) - (av.charHeight / 5)); - if (av.hasHiddenRows && av.showHiddenMarkers) + if (av.hasHiddenRows() && av.showHiddenMarkers) { drawMarker(i, starty, 0); } @@ -400,7 +402,7 @@ public class IdCanvas extends JPanel void drawMarker(int i, int starty, int yoffset) { - SequenceI[] hseqs = av.alignment.getHiddenSequences().hiddenSequences; + SequenceI[] hseqs = av.getAlignment().getHiddenSequences().hiddenSequences; // Use this method here instead of calling hiddenSeq adjust // 3 times. int hSize = hseqs.length; @@ -463,8 +465,7 @@ public class IdCanvas extends JPanel Font bold = new Font(av.getFont().getName(), Font.BOLD, av.getFont() .getSize()); - if (av.hiddenRepSequences != null - && av.hiddenRepSequences.containsKey(seq)) + if (av.isHiddenRepSequence(seq)) { gg.setFont(bold); } @@ -477,12 +478,12 @@ public class IdCanvas extends JPanel /** * DOCUMENT ME! * - * @param found + * @param list * DOCUMENT ME! */ - public void setHighlighted(java.util.Vector found) + public void setHighlighted(List list) { - searchResults = found; + searchResults = list; repaint(); } }