X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FRotatableCanvas.java;h=dc33b3679a5e04287a915b27d4b5c3fe735670aa;hb=04e134be96df26b6df83d030ad531cd3815eb9d4;hp=02368df450693be5b54fab0948156afcdf76ef86;hpb=11ec9d4540710b65b82b8b901de07b441c130887;p=jalview.git diff --git a/src/jalview/gui/RotatableCanvas.java b/src/jalview/gui/RotatableCanvas.java index 02368df..dc33b36 100755 --- a/src/jalview/gui/RotatableCanvas.java +++ b/src/jalview/gui/RotatableCanvas.java @@ -21,6 +21,7 @@ package jalview.gui; import jalview.api.RotatableCanvasI; +import jalview.bin.Cache; import jalview.datamodel.SequenceGroup; import jalview.datamodel.SequenceI; import jalview.datamodel.SequencePoint; @@ -94,7 +95,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, int npoint; - Vector points; + Vector points; float[][] orig; @@ -128,6 +129,8 @@ public class RotatableCanvas extends JPanel implements MouseListener, boolean applyToAllViews = false; + boolean first = true; + public RotatableCanvas(AlignmentPanel ap) { this.av = ap.av; @@ -166,10 +169,8 @@ public class RotatableCanvas extends JPanel implements MouseListener, repaint(); } - boolean first = true; - @Override - public void setPoints(Vector points, int npoint) + public void setPoints(Vector points, int npoint) { this.points = points; this.npoint = npoint; @@ -184,7 +185,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, for (int i = 0; i < npoint; i++) { - SequencePoint sp = (SequencePoint) points.elementAt(i); + SequencePoint sp = points.elementAt(i); for (int j = 0; j < 3; j++) { @@ -267,7 +268,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, { for (int j = 0; j < npoint; j++) { - SequencePoint sp = (SequencePoint) points.elementAt(j); + SequencePoint sp = points.elementAt(j); if (sp.coord[i] >= max[i]) { @@ -311,23 +312,23 @@ public class RotatableCanvas extends JPanel implements MouseListener, public float findScale() { int dim; - int width; + int w; int height; if (getWidth() != 0) { - width = getWidth(); + w = getWidth(); height = getHeight(); } else { - width = prefsize.width; + w = prefsize.width; height = prefsize.height; } - if (width < height) + if (w < height) { - dim = width; + dim = w; } else { @@ -423,7 +424,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, drawBackground(ig, bgColour); drawScene(ig); - if (drawAxes == true) + if (drawAxes) { drawAxes(ig); } @@ -484,25 +485,26 @@ public class RotatableCanvas extends JPanel implements MouseListener, for (int i = 0; i < npoint; i++) { - SequencePoint sp = (SequencePoint) points.elementAt(i); + SequencePoint sp = points.elementAt(i); int x = (int) ((sp.coord[0] - centre[0]) * scale) + halfwidth; int y = (int) ((sp.coord[1] - centre[1]) * scale) + halfheight; float z = sp.coord[1] - centre[2]; - if (av.getSequenceColour(sp.sequence) == Color.black) + SequenceI sequence = sp.getSequence(); + if (av.getSequenceColour(sequence) == Color.black) { g.setColor(Color.white); } else { - g.setColor(av.getSequenceColour(sp.sequence)); + g.setColor(av.getSequenceColour(sequence)); } if (av.getSelectionGroup() != null) { if (av.getSelectionGroup().getSequences(null) - .contains(((SequencePoint) points.elementAt(i)).sequence)) + .contains(sequence)) { g.setColor(Color.gray); } @@ -517,9 +519,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, if (showLabels) { g.setColor(Color.red); - g.drawString( - ((SequencePoint) points.elementAt(i)).sequence.getName(), - x - 3, y - 4); + g.drawString(sequence.getName(), x - 3, y - 4); } } @@ -594,8 +594,9 @@ public class RotatableCanvas extends JPanel implements MouseListener, } else if (evt.getKeyChar() == 's') { - System.err.println("DEBUG: Rectangle selection"); // log.debug - + Cache.log.warn("DEBUG: Rectangle selection"); + // todo not yet enabled as rectx2, recty2 are always -1 + // need to set them in mouseDragged if ((rectx2 != -1) && (recty2 != -1)) { rectSelect(rectx1, recty1, rectx2, recty2); @@ -605,55 +606,31 @@ public class RotatableCanvas extends JPanel implements MouseListener, repaint(); } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseClicked(MouseEvent evt) { } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseEntered(MouseEvent evt) { } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseExited(MouseEvent evt) { } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseReleased(MouseEvent evt) { } /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! + * If the mouse press is at (within 2 pixels of) a sequence point, toggles + * (adds or removes) the corresponding sequence as a member of the viewport + * selection group. This supports configuring a group in the alignment by + * clicking on points in the PCA display. */ @Override public void mousePressed(MouseEvent evt) @@ -676,7 +653,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, rectx2 = -1; recty2 = -1; - SequenceI found = findPoint(x, y); + SequenceI found = findSequenceAtPoint(x, y); if (found != null) { @@ -704,23 +681,16 @@ public class RotatableCanvas extends JPanel implements MouseListener, repaint(); } - // private void fireSequenceSelectionEvent(Selection sel) { - // controller.handleSequenceSelectionEvent(new - // SequenceSelectionEvent(this,sel)); - // } + /** + * Sets the tooltip to the name of the sequence within 2 pixels of the mouse + * position, or clears the tooltip if none found + */ @Override public void mouseMoved(MouseEvent evt) { - SequenceI found = findPoint(evt.getX(), evt.getY()); + SequenceI found = findSequenceAtPoint(evt.getX(), evt.getY()); - if (found != null) - { - this.setToolTipText(found.getName()); - } - else - { - this.setToolTipText(null); - } + this.setToolTipText(found == null ? null : found.getName()); } /** @@ -750,7 +720,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, for (int i = 0; i < npoint; i++) { - SequencePoint sp = (SequencePoint) points.elementAt(i); + SequencePoint sp = points.elementAt(i); sp.coord[0] -= centre[0]; sp.coord[1] -= centre[1]; sp.coord[2] -= centre[2]; @@ -777,22 +747,20 @@ public class RotatableCanvas extends JPanel implements MouseListener, } /** - * DOCUMENT ME! + * Adds any sequences whose displayed points are within the given rectangle to + * the viewport's current selection. Intended for key 's' after dragging to + * select a region of the PCA. * * @param x1 - * DOCUMENT ME! * @param y1 - * DOCUMENT ME! * @param x2 - * DOCUMENT ME! * @param y2 - * DOCUMENT ME! */ public void rectSelect(int x1, int y1, int x2, int y2) { for (int i = 0; i < npoint; i++) { - SequencePoint sp = (SequencePoint) points.elementAt(i); + SequencePoint sp = points.elementAt(i); int tmp1 = (int) (((sp.coord[0] - centre[0]) * scale) + (getWidth() / 2.0)); int tmp2 = (int) (((sp.coord[1] - centre[1]) * scale) @@ -802,31 +770,27 @@ public class RotatableCanvas extends JPanel implements MouseListener, { if (av != null) { + SequenceI sequence = sp.getSequence(); if (!av.getSelectionGroup().getSequences(null) - .contains(sp.sequence)) + .contains(sequence)) { - av.getSelectionGroup().addSequence(sp.sequence, true); + av.getSelectionGroup().addSequence(sequence, true); } } } } - - // if (changedSel) { - // fireSequenceSelectionEvent(av.getSelection()); - // } } /** - * DOCUMENT ME! + * Answers the first sequence found whose point on the display is within 2 + * pixels of the given coordinates, or null if none is found * * @param x - * DOCUMENT ME! * @param y - * DOCUMENT ME! * - * @return DOCUMENT ME! + * @return */ - public SequenceI findPoint(int x, int y) + public SequenceI findSequenceAtPoint(int x, int y) { int halfwidth = getWidth() / 2; int halfheight = getHeight() / 2; @@ -835,7 +799,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, for (int i = 0; i < npoint; i++) { - SequencePoint sp = (SequencePoint) points.elementAt(i); + SequencePoint sp = points.elementAt(i); int px = (int) ((sp.coord[0] - centre[0]) * scale) + halfwidth; int py = (int) ((sp.coord[1] - centre[1]) * scale) @@ -849,7 +813,7 @@ public class RotatableCanvas extends JPanel implements MouseListener, if (found != -1) { - return ((SequencePoint) points.elementAt(found)).sequence; + return points.elementAt(found).getSequence(); } else { @@ -876,8 +840,8 @@ public class RotatableCanvas extends JPanel implements MouseListener, */ public double[] getPointPosition(int s) { - double pts[] = new double[3]; - float[] p = ((SequencePoint) points.elementAt(s)).coord; + double[] pts = new double[3]; + float[] p = points.elementAt(s).coord; pts[0] = p[0]; pts[1] = p[1]; pts[2] = p[2];