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.
23 import jalview.api.AlignViewportI;
24 import jalview.commands.EditCommand;
25 import jalview.commands.EditCommand.Action;
26 import jalview.commands.EditCommand.Edit;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.ColumnSelection;
29 import jalview.datamodel.SearchResults;
30 import jalview.datamodel.SearchResults.Match;
31 import jalview.datamodel.Sequence;
32 import jalview.datamodel.SequenceFeature;
33 import jalview.datamodel.SequenceGroup;
34 import jalview.datamodel.SequenceI;
35 import jalview.io.SequenceAnnotationReport;
36 import jalview.schemes.ResidueProperties;
37 import jalview.structure.SelectionListener;
38 import jalview.structure.SelectionSource;
39 import jalview.structure.SequenceListener;
40 import jalview.structure.StructureSelectionManager;
41 import jalview.structure.VamsasSource;
42 import jalview.util.Comparison;
43 import jalview.util.MappingUtils;
44 import jalview.util.MessageManager;
45 import jalview.viewmodel.AlignmentViewport;
47 import java.awt.BorderLayout;
48 import java.awt.Color;
50 import java.awt.FontMetrics;
51 import java.awt.Point;
52 import java.awt.event.MouseEvent;
53 import java.awt.event.MouseListener;
54 import java.awt.event.MouseMotionListener;
55 import java.awt.event.MouseWheelEvent;
56 import java.awt.event.MouseWheelListener;
57 import java.util.List;
58 import java.util.Vector;
60 import javax.swing.JOptionPane;
61 import javax.swing.JPanel;
62 import javax.swing.ToolTipManager;
68 * @version $Revision: 1.130 $
70 public class SeqPanel extends JPanel implements MouseListener,
71 MouseMotionListener, MouseWheelListener, SequenceListener,
76 public SeqCanvas seqCanvas;
79 public AlignmentPanel ap;
81 protected int lastres;
83 protected int startseq;
85 protected AlignViewport av;
87 ScrollThread scrollThread = null;
89 boolean mouseDragging = false;
91 boolean editingSeqs = false;
93 boolean groupEditing = false;
95 // ////////////////////////////////////////
96 // ///Everything below this is for defining the boundary of the rubberband
97 // ////////////////////////////////////////
100 boolean changeEndSeq = false;
102 boolean changeStartSeq = false;
104 boolean changeEndRes = false;
106 boolean changeStartRes = false;
108 SequenceGroup stretchGroup = null;
110 boolean remove = false;
112 Point lastMousePress;
114 boolean mouseWheelPressed = false;
116 StringBuffer keyboardNo1;
118 StringBuffer keyboardNo2;
120 java.net.URL linkImageURL;
122 private final SequenceAnnotationReport seqARep;
124 StringBuffer tooltipText = new StringBuffer();
128 EditCommand editCommand;
130 StructureSelectionManager ssm;
132 SearchResults lastSearchResults;
135 * Creates a new SeqPanel object.
142 public SeqPanel(AlignViewport av, AlignmentPanel ap)
144 linkImageURL = getClass().getResource("/images/link.gif");
145 seqARep = new SequenceAnnotationReport(linkImageURL.toString());
146 ToolTipManager.sharedInstance().registerComponent(this);
147 ToolTipManager.sharedInstance().setInitialDelay(0);
148 ToolTipManager.sharedInstance().setDismissDelay(10000);
150 setBackground(Color.white);
152 seqCanvas = new SeqCanvas(ap);
153 setLayout(new BorderLayout());
154 add(seqCanvas, BorderLayout.CENTER);
160 addMouseMotionListener(this);
161 addMouseListener(this);
162 addMouseWheelListener(this);
163 ssm = av.getStructureSelectionManager();
164 ssm.addStructureViewerListener(this);
165 ssm.addSelectionListener(this);
169 int startWrapBlock = -1;
171 int wrappedBlock = -1;
174 * Returns the aligned sequence position (base 0) at the mouse position, or
175 * the closest visible one
180 int findRes(MouseEvent evt)
185 if (av.getWrapAlignment())
188 int hgap = av.getCharHeight();
189 if (av.getScaleAboveWrapped())
191 hgap += av.getCharHeight();
194 int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
196 + seqCanvas.getAnnotationHeight();
200 x -= seqCanvas.LABEL_WEST;
202 int cwidth = seqCanvas.getWrappedCanvasWidth(this.getWidth());
208 wrappedBlock = y / cHeight;
209 wrappedBlock += av.getStartRes() / cwidth;
211 res = wrappedBlock * cwidth + x / av.getCharWidth();
216 if (x > seqCanvas.getX() + seqCanvas.getWidth())
218 // make sure we calculate relative to visible alignment, rather than
220 x = seqCanvas.getX() + seqCanvas.getWidth();
222 res = (x / av.getCharWidth()) + av.getStartRes();
223 if (res > av.getEndRes())
226 res = av.getEndRes();
230 if (av.hasHiddenColumns())
232 res = av.getColumnSelection().adjustForHiddenColumns(res);
239 int findSeq(MouseEvent evt)
244 if (av.getWrapAlignment())
246 int hgap = av.getCharHeight();
247 if (av.getScaleAboveWrapped())
249 hgap += av.getCharHeight();
252 int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
254 + seqCanvas.getAnnotationHeight();
258 seq = Math.min((y % cHeight) / av.getCharHeight(), av.getAlignment()
263 seq = Math.min((y / av.getCharHeight()) + av.getStartSeq(), av
264 .getAlignment().getHeight() - 1);
271 * When all of a sequence of edits are complete, put the resulting edit list
272 * on the history stack (undo list), and reset flags for editing in progress.
278 if (editCommand != null && editCommand.getSize() > 0)
280 ap.alignFrame.addHistoryItem(editCommand);
281 av.firePropertyChange("alignment", null, av.getAlignment()
287 * Tidy up come what may...
292 groupEditing = false;
301 seqCanvas.cursorY = getKeyboardNo1() - 1;
305 void setCursorColumn()
307 seqCanvas.cursorX = getKeyboardNo1() - 1;
311 void setCursorRowAndColumn()
313 if (keyboardNo2 == null)
315 keyboardNo2 = new StringBuffer();
319 seqCanvas.cursorX = getKeyboardNo1() - 1;
320 seqCanvas.cursorY = getKeyboardNo2() - 1;
325 void setCursorPosition()
327 SequenceI sequence = av.getAlignment().getSequenceAt(seqCanvas.cursorY);
329 seqCanvas.cursorX = sequence.findIndex(getKeyboardNo1()) - 1;
333 void moveCursor(int dx, int dy)
335 seqCanvas.cursorX += dx;
336 seqCanvas.cursorY += dy;
337 if (av.hasHiddenColumns()
338 && !av.getColumnSelection().isVisible(seqCanvas.cursorX))
340 int original = seqCanvas.cursorX - dx;
341 int maxWidth = av.getAlignment().getWidth();
343 while (!av.getColumnSelection().isVisible(seqCanvas.cursorX)
344 && seqCanvas.cursorX < maxWidth && seqCanvas.cursorX > 0)
346 seqCanvas.cursorX += dx;
349 if (seqCanvas.cursorX >= maxWidth
350 || !av.getColumnSelection().isVisible(seqCanvas.cursorX))
352 seqCanvas.cursorX = original;
359 void scrollToVisible()
361 if (seqCanvas.cursorX < 0)
363 seqCanvas.cursorX = 0;
365 else if (seqCanvas.cursorX > av.getAlignment().getWidth() - 1)
367 seqCanvas.cursorX = av.getAlignment().getWidth() - 1;
370 if (seqCanvas.cursorY < 0)
372 seqCanvas.cursorY = 0;
374 else if (seqCanvas.cursorY > av.getAlignment().getHeight() - 1)
376 seqCanvas.cursorY = av.getAlignment().getHeight() - 1;
380 if (av.getWrapAlignment())
382 ap.scrollToWrappedVisible(seqCanvas.cursorX);
386 while (seqCanvas.cursorY < av.startSeq)
390 while (seqCanvas.cursorY + 1 > av.endSeq)
394 if (!av.getWrapAlignment())
396 while (seqCanvas.cursorX < av.getColumnSelection()
397 .adjustForHiddenColumns(av.startRes))
399 if (!ap.scrollRight(false))
404 while (seqCanvas.cursorX > av.getColumnSelection()
405 .adjustForHiddenColumns(av.endRes))
407 if (!ap.scrollRight(true))
414 setStatusMessage(av.getAlignment().getSequenceAt(seqCanvas.cursorY),
415 seqCanvas.cursorX, seqCanvas.cursorY);
420 void setSelectionAreaAtCursor(boolean topLeft)
422 SequenceI sequence = av.getAlignment().getSequenceAt(seqCanvas.cursorY);
424 if (av.getSelectionGroup() != null)
426 SequenceGroup sg = av.getSelectionGroup();
427 // Find the top and bottom of this group
428 int min = av.getAlignment().getHeight(), max = 0;
429 for (int i = 0; i < sg.getSize(); i++)
431 int index = av.getAlignment().findIndex(sg.getSequenceAt(i));
446 sg.setStartRes(seqCanvas.cursorX);
447 if (sg.getEndRes() < seqCanvas.cursorX)
449 sg.setEndRes(seqCanvas.cursorX);
452 min = seqCanvas.cursorY;
456 sg.setEndRes(seqCanvas.cursorX);
457 if (sg.getStartRes() > seqCanvas.cursorX)
459 sg.setStartRes(seqCanvas.cursorX);
462 max = seqCanvas.cursorY + 1;
467 // Only the user can do this
468 av.setSelectionGroup(null);
472 // Now add any sequences between min and max
473 sg.getSequences(null).clear();
474 for (int i = min; i < max; i++)
476 sg.addSequence(av.getAlignment().getSequenceAt(i), false);
481 if (av.getSelectionGroup() == null)
483 SequenceGroup sg = new SequenceGroup();
484 sg.setStartRes(seqCanvas.cursorX);
485 sg.setEndRes(seqCanvas.cursorX);
486 sg.addSequence(sequence, false);
487 av.setSelectionGroup(sg);
490 ap.paintAlignment(false);
494 void insertGapAtCursor(boolean group)
496 groupEditing = group;
497 startseq = seqCanvas.cursorY;
498 lastres = seqCanvas.cursorX;
499 editSequence(true, false, seqCanvas.cursorX + getKeyboardNo1());
503 void deleteGapAtCursor(boolean group)
505 groupEditing = group;
506 startseq = seqCanvas.cursorY;
507 lastres = seqCanvas.cursorX + getKeyboardNo1();
508 editSequence(false, false, seqCanvas.cursorX);
512 void insertNucAtCursor(boolean group, String nuc)
514 groupEditing = group;
515 startseq = seqCanvas.cursorY;
516 lastres = seqCanvas.cursorX;
517 editSequence(false, true, seqCanvas.cursorX + getKeyboardNo1());
521 void numberPressed(char value)
523 if (keyboardNo1 == null)
525 keyboardNo1 = new StringBuffer();
528 if (keyboardNo2 != null)
530 keyboardNo2.append(value);
534 keyboardNo1.append(value);
542 if (keyboardNo1 != null)
544 int value = Integer.parseInt(keyboardNo1.toString());
548 } catch (Exception x)
559 if (keyboardNo2 != null)
561 int value = Integer.parseInt(keyboardNo2.toString());
565 } catch (Exception x)
579 public void mouseReleased(MouseEvent evt)
581 mouseDragging = false;
582 mouseWheelPressed = false;
586 doMouseReleasedDefineMode(evt);
600 public void mousePressed(MouseEvent evt)
602 lastMousePress = evt.getPoint();
604 if (javax.swing.SwingUtilities.isMiddleMouseButton(evt))
606 mouseWheelPressed = true;
610 if (evt.isShiftDown() || evt.isAltDown() || evt.isControlDown())
612 if (evt.isAltDown() || evt.isControlDown())
620 doMousePressedDefineMode(evt);
624 int seq = findSeq(evt);
625 int res = findRes(evt);
627 if (seq < 0 || res < 0)
632 if ((seq < av.getAlignment().getHeight())
633 && (res < av.getAlignment().getSequenceAt(seq).getLength()))
650 public void mouseOverSequence(SequenceI sequence, int index, int pos)
652 String tmp = sequence.hashCode() + " " + index + " " + pos;
654 if (lastMessage == null || !lastMessage.equals(tmp))
656 // System.err.println("mouseOver Sequence: "+tmp);
657 ssm.mouseOverSequence(sequence, index, pos, av);
663 * Highlight the mapped region described by the search results object (unless
664 * unchanged). This supports highlight of protein while mousing over linked
665 * cDNA and vice versa. The status bar is also updated to show the location of
666 * the start of the highlighted region.
669 public void highlightSequence(SearchResults results)
671 if (results == null || results.equals(lastSearchResults)) {
674 lastSearchResults = results;
676 if (av.isFollowHighlight())
679 * if scrollToPosition requires a scroll adjustment, this flag prevents
680 * another scroll event being propagated back to the originator
682 * @see AlignmentPanel#adjustmentValueChanged
684 ap.setFollowingComplementScroll(true);
685 if (ap.scrollToPosition(results, false))
687 seqCanvas.revalidate();
690 setStatusMessage(results);
691 seqCanvas.highlightSearchResults(results);
695 public VamsasSource getVamsasSource()
697 return this.ap == null ? null : this.ap.av;
700 public void updateColours(SequenceI seq, int index)
702 System.out.println("update the seqPanel colours");
713 public void mouseMoved(MouseEvent evt)
717 // This is because MacOSX creates a mouseMoved
718 // If control is down, other platforms will not.
722 int res = findRes(evt);
723 int seq = findSeq(evt);
725 if (res < 0 || seq < 0 || seq >= av.getAlignment().getHeight())
730 SequenceI sequence = av.getAlignment().getSequenceAt(seq);
732 if (res >= sequence.getLength())
737 pos = setStatusMessage(sequence, res, seq);
738 if (ssm != null && pos > -1)
740 mouseOverSequence(sequence, res, pos);
743 tooltipText.setLength(6); // Cuts the buffer back to <html>
745 SequenceGroup[] groups = av.getAlignment().findAllGroups(sequence);
748 for (int g = 0; g < groups.length; g++)
750 if (groups[g].getStartRes() <= res && groups[g].getEndRes() >= res)
752 if (!groups[g].getName().startsWith("JTreeGroup")
753 && !groups[g].getName().startsWith("JGroup"))
755 tooltipText.append(groups[g].getName());
758 if (groups[g].getDescription() != null)
760 tooltipText.append(": " + groups[g].getDescription());
766 // use aa to see if the mouse pointer is on a
767 if (av.isShowSequenceFeatures())
770 List<SequenceFeature> features = ap.getFeatureRenderer().findFeaturesAtRes(
771 sequence.getDatasetSequence(),
772 rpos = sequence.findPosition(res));
773 seqARep.appendFeatures(tooltipText, rpos, features,
774 this.ap.getSeqPanel().seqCanvas.fr.getMinMax());
776 if (tooltipText.length() == 6) // <html></html>
778 setToolTipText(null);
783 if (lastTooltip == null
784 || !lastTooltip.equals(tooltipText.toString()))
786 String formatedTooltipText = JvSwingUtils.wrapTooltip(true,
787 tooltipText.toString());
788 // String formatedTooltipText = tooltipText.toString();
789 setToolTipText(formatedTooltipText);
790 lastTooltip = tooltipText.toString();
797 private Point lastp = null;
802 * @see javax.swing.JComponent#getToolTipLocation(java.awt.event.MouseEvent)
804 public Point getToolTipLocation(MouseEvent event)
806 int x = event.getX(), w = getWidth();
807 int wdth = (w - x < 200) ? -(w / 2) : 5; // switch sides when tooltip is too
810 if (!event.isShiftDown() || p == null)
812 p = (tooltipText != null && tooltipText.length() > 6) ? new Point(
813 event.getX() + wdth, event.getY() - 20) : null;
816 * TODO: try to modify position region is not obcured by tooltip
824 * Set status message in alignment panel
827 * aligned sequence object
831 * index of sequence in alignment
832 * @return position of res in sequence
834 int setStatusMessage(SequenceI sequence, int res, int seq)
836 StringBuilder text = new StringBuilder(32);
839 * Sequence number (if known), and sequence name.
841 String seqno = seq == -1 ? "" : " " + (seq + 1);
842 text.append("Sequence" + seqno + " ID: " + sequence.getName());
844 String residue = null;
846 * Try to translate the display character to residue name (null for gap).
848 final String displayChar = String.valueOf(sequence.getCharAt(res));
849 if (av.getAlignment().isNucleotide())
851 residue = ResidueProperties.nucleotideName.get(displayChar);
854 text.append(" Nucleotide: ").append(residue);
859 residue = "X".equalsIgnoreCase(displayChar) ? "X"
860 : ResidueProperties.aa2Triplet.get(displayChar);
863 text.append(" Residue: ").append(residue);
870 pos = sequence.findPosition(res);
871 text.append(" (").append(Integer.toString(pos)).append(")");
873 ap.alignFrame.statusBar.setText(text.toString());
878 * Set the status bar message to highlight the first matched position in
883 private void setStatusMessage(SearchResults results)
885 AlignmentI al = this.av.getAlignment();
886 int sequenceIndex = al.findIndex(results);
887 if (sequenceIndex == -1)
891 SequenceI ds = al.getSequenceAt(sequenceIndex).getDatasetSequence();
892 for (Match m : results.getResults())
894 SequenceI seq = m.getSequence();
899 * Convert position in sequence (base 1) to sequence character array
902 int start = m.getStart() - 1;
903 setStatusMessage(seq, start, sequenceIndex);
916 public void mouseDragged(MouseEvent evt)
918 if (mouseWheelPressed)
920 int oldWidth = av.getCharWidth();
922 // Which is bigger, left-right or up-down?
923 if (Math.abs(evt.getY() - lastMousePress.getY()) > Math.abs(evt
924 .getX() - lastMousePress.getX()))
926 int fontSize = av.font.getSize();
928 if (evt.getY() < lastMousePress.getY())
932 else if (evt.getY() > lastMousePress.getY())
943 new Font(av.font.getName(), av.font.getStyle(), fontSize),
945 av.setCharWidth(oldWidth);
950 if (evt.getX() < lastMousePress.getX() && av.getCharWidth() > 1)
952 av.setCharWidth(av.getCharWidth() - 1);
954 else if (evt.getX() > lastMousePress.getX())
956 av.setCharWidth(av.getCharWidth() + 1);
959 ap.paintAlignment(false);
962 FontMetrics fm = getFontMetrics(av.getFont());
963 av.validCharWidth = fm.charWidth('M') <= av.getCharWidth();
965 lastMousePress = evt.getPoint();
972 doMouseDraggedDefineMode(evt);
976 int res = findRes(evt);
983 if ((lastres == -1) || (lastres == res))
988 if ((res < av.getAlignment().getWidth()) && (res < lastres))
990 // dragLeft, delete gap
991 editSequence(false, false, res);
995 editSequence(true, false, res);
998 mouseDragging = true;
999 if (scrollThread != null)
1001 scrollThread.setEvent(evt);
1005 // TODO: Make it more clever than many booleans
1006 synchronized void editSequence(boolean insertGap, boolean editSeq,
1010 int fixedRight = -1;
1011 boolean fixedColumns = false;
1012 SequenceGroup sg = av.getSelectionGroup();
1014 SequenceI seq = av.getAlignment().getSequenceAt(startseq);
1016 // No group, but the sequence may represent a group
1017 if (!groupEditing && av.hasHiddenRows())
1019 if (av.isHiddenRepSequence(seq))
1021 sg = av.getRepresentedSequences(seq);
1022 groupEditing = true;
1026 StringBuilder message = new StringBuilder(64);
1029 message.append("Edit group:");
1030 if (editCommand == null)
1032 editCommand = new EditCommand(MessageManager.getString("action.edit_group"));
1037 message.append("Edit sequence: " + seq.getName());
1038 String label = seq.getName();
1039 if (label.length() > 10)
1041 label = label.substring(0, 10);
1043 if (editCommand == null)
1045 editCommand = new EditCommand(MessageManager.formatMessage("label.edit_params", new String[]{label}));
1051 message.append(" insert ");
1055 message.append(" delete ");
1058 message.append(Math.abs(startres - lastres) + " gaps.");
1059 ap.alignFrame.statusBar.setText(message.toString());
1061 // Are we editing within a selection group?
1063 || (sg != null && sg.getSequences(av.getHiddenRepSequences())
1066 fixedColumns = true;
1068 // sg might be null as the user may only see 1 sequence,
1069 // but the sequence represents a group
1072 if (!av.isHiddenRepSequence(seq))
1077 sg = av.getRepresentedSequences(seq);
1080 fixedLeft = sg.getStartRes();
1081 fixedRight = sg.getEndRes();
1083 if ((startres < fixedLeft && lastres >= fixedLeft)
1084 || (startres >= fixedLeft && lastres < fixedLeft)
1085 || (startres > fixedRight && lastres <= fixedRight)
1086 || (startres <= fixedRight && lastres > fixedRight))
1092 if (fixedLeft > startres)
1094 fixedRight = fixedLeft - 1;
1097 else if (fixedRight < startres)
1099 fixedLeft = fixedRight;
1104 if (av.hasHiddenColumns())
1106 fixedColumns = true;
1107 int y1 = av.getColumnSelection().getHiddenBoundaryLeft(startres);
1108 int y2 = av.getColumnSelection().getHiddenBoundaryRight(startres);
1110 if ((insertGap && startres > y1 && lastres < y1)
1111 || (!insertGap && startres < y2 && lastres > y2))
1117 // System.out.print(y1+" "+y2+" "+fixedLeft+" "+fixedRight+"~~");
1118 // Selection spans a hidden region
1119 if (fixedLeft < y1 && (fixedRight > y2 || fixedRight == -1))
1127 fixedRight = y2 - 1;
1134 List<SequenceI> vseqs = sg.getSequences(av.getHiddenRepSequences());
1135 int g, groupSize = vseqs.size();
1136 SequenceI[] groupSeqs = new SequenceI[groupSize];
1137 for (g = 0; g < groupSeqs.length; g++)
1139 groupSeqs[g] = vseqs.get(g);
1145 // If the user has selected the whole sequence, and is dragging to
1146 // the right, we can still extend the alignment and selectionGroup
1147 if (sg.getStartRes() == 0 && sg.getEndRes() == fixedRight
1148 && sg.getEndRes() == av.getAlignment().getWidth() - 1)
1150 sg.setEndRes(av.getAlignment().getWidth() + startres - lastres);
1151 fixedRight = sg.getEndRes();
1154 // Is it valid with fixed columns??
1155 // Find the next gap before the end
1156 // of the visible region boundary
1157 boolean blank = false;
1158 for (fixedRight = fixedRight; fixedRight > lastres; fixedRight--)
1162 for (g = 0; g < groupSize; g++)
1164 for (int j = 0; j < startres - lastres; j++)
1166 if (!jalview.util.Comparison.isGap(groupSeqs[g]
1167 .getCharAt(fixedRight - j)))
1182 if (sg.getSize() == av.getAlignment().getHeight())
1184 if ((av.hasHiddenColumns() && startres < av
1185 .getColumnSelection().getHiddenBoundaryRight(startres)))
1191 int alWidth = av.getAlignment().getWidth();
1192 if (av.hasHiddenRows())
1194 int hwidth = av.getAlignment().getHiddenSequences()
1196 if (hwidth > alWidth)
1201 // We can still insert gaps if the selectionGroup
1202 // contains all the sequences
1203 sg.setEndRes(sg.getEndRes() + startres - lastres);
1204 fixedRight = alWidth + startres - lastres;
1215 else if (!insertGap)
1217 // / Are we able to delete?
1218 // ie are all columns blank?
1220 for (g = 0; g < groupSize; g++)
1222 for (int j = startres; j < lastres; j++)
1224 if (groupSeqs[g].getLength() <= j)
1229 if (!jalview.util.Comparison.isGap(groupSeqs[g].getCharAt(j)))
1231 // Not a gap, block edit not valid
1241 // dragging to the right
1242 if (fixedColumns && fixedRight != -1)
1244 for (int j = lastres; j < startres; j++)
1246 insertChar(j, groupSeqs, fixedRight);
1251 appendEdit(Action.INSERT_GAP, groupSeqs, startres, startres
1257 // dragging to the left
1258 if (fixedColumns && fixedRight != -1)
1260 for (int j = lastres; j > startres; j--)
1262 deleteChar(startres, groupSeqs, fixedRight);
1267 appendEdit(Action.DELETE_GAP, groupSeqs, startres, lastres
1274 // ///Editing a single sequence///////////
1278 // dragging to the right
1279 if (fixedColumns && fixedRight != -1)
1281 for (int j = lastres; j < startres; j++)
1283 insertChar(j, new SequenceI[]
1284 { seq }, fixedRight);
1289 appendEdit(Action.INSERT_GAP, new SequenceI[]
1290 { seq }, lastres, startres - lastres);
1297 // dragging to the left
1298 if (fixedColumns && fixedRight != -1)
1300 for (int j = lastres; j > startres; j--)
1302 if (!Comparison.isGap(seq.getCharAt(startres)))
1307 deleteChar(startres, new SequenceI[]
1308 { seq }, fixedRight);
1313 // could be a keyboard edit trying to delete none gaps
1315 for (int m = startres; m < lastres; m++)
1317 if (!Comparison.isGap(seq.getCharAt(m)))
1326 appendEdit(Action.DELETE_GAP, new SequenceI[]
1327 { seq }, startres, max);
1332 {// insertGap==false AND editSeq==TRUE;
1333 if (fixedColumns && fixedRight != -1)
1335 for (int j = lastres; j < startres; j++)
1337 insertChar(j, new SequenceI[]
1338 { seq }, fixedRight);
1343 appendEdit(Action.INSERT_NUC, new SequenceI[]
1344 { seq }, lastres, startres - lastres);
1351 seqCanvas.repaint();
1354 void insertChar(int j, SequenceI[] seq, int fixedColumn)
1356 int blankColumn = fixedColumn;
1357 for (int s = 0; s < seq.length; s++)
1359 // Find the next gap before the end of the visible region boundary
1360 // If lastCol > j, theres a boundary after the gap insertion
1362 for (blankColumn = fixedColumn; blankColumn > j; blankColumn--)
1364 if (jalview.util.Comparison.isGap(seq[s].getCharAt(blankColumn)))
1366 // Theres a space, so break and insert the gap
1371 if (blankColumn <= j)
1373 blankColumn = fixedColumn;
1379 appendEdit(Action.DELETE_GAP, seq, blankColumn, 1);
1381 appendEdit(Action.INSERT_GAP, seq, j, 1);
1386 * Helper method to add and perform one edit action.
1393 protected void appendEdit(Action action, SequenceI[] seq, int pos,
1397 final Edit edit = new EditCommand().new Edit(action, seq, pos, count,
1398 av.getAlignment().getGapCharacter());
1400 editCommand.appendEdit(edit, av.getAlignment(),
1404 void deleteChar(int j, SequenceI[] seq, int fixedColumn)
1407 appendEdit(Action.DELETE_GAP, seq, j, 1);
1409 appendEdit(Action.INSERT_GAP, seq, fixedColumn, 1);
1419 public void mouseEntered(MouseEvent e)
1426 if (scrollThread != null)
1428 scrollThread.running = false;
1429 scrollThread = null;
1440 public void mouseExited(MouseEvent e)
1442 if (av.getWrapAlignment())
1449 scrollThread = new ScrollThread();
1454 public void mouseClicked(MouseEvent evt)
1456 SequenceGroup sg = null;
1457 SequenceI sequence = av.getAlignment().getSequenceAt(findSeq(evt));
1458 if (evt.getClickCount() > 1)
1460 sg = av.getSelectionGroup();
1461 if (sg != null && sg.getSize() == 1
1462 && sg.getEndRes() - sg.getStartRes() < 2)
1464 av.setSelectionGroup(null);
1467 List<SequenceFeature> features = seqCanvas.getFeatureRenderer().findFeaturesAtRes(
1468 sequence.getDatasetSequence(),
1469 sequence.findPosition(findRes(evt)));
1471 if (features != null && features.size()> 0)
1473 SearchResults highlight = new SearchResults();
1474 highlight.addResult(sequence, features.get(0).getBegin(),
1475 features.get(0).getEnd());
1476 seqCanvas.highlightSearchResults(highlight);
1478 if (features != null && features.size()> 0)
1480 seqCanvas.getFeatureRenderer().amendFeatures(new SequenceI[]
1481 { sequence }, features.toArray(new SequenceFeature[features.size()]), false, ap);
1483 seqCanvas.highlightSearchResults(null);
1489 public void mouseWheelMoved(MouseWheelEvent e)
1492 if (e.getWheelRotation() > 0)
1494 if (e.isShiftDown())
1496 ap.scrollRight(true);
1506 if (e.isShiftDown())
1508 ap.scrollRight(false);
1515 // TODO Update tooltip for new position.
1524 public void doMousePressedDefineMode(MouseEvent evt)
1526 int res = findRes(evt);
1527 int seq = findSeq(evt);
1530 startWrapBlock = wrappedBlock;
1532 if (av.getWrapAlignment() && seq > av.getAlignment().getHeight())
1534 JOptionPane.showInternalMessageDialog(Desktop.desktop, MessageManager
1535 .getString("label.cannot_edit_annotations_in_wrapped_view"),
1536 MessageManager.getString("label.wrapped_view_no_edit"),
1537 JOptionPane.WARNING_MESSAGE);
1541 if (seq < 0 || res < 0)
1546 SequenceI sequence = av.getAlignment().getSequenceAt(seq);
1548 if ((sequence == null) || (res > sequence.getLength()))
1553 stretchGroup = av.getSelectionGroup();
1555 if (stretchGroup == null)
1557 stretchGroup = av.getAlignment().findGroup(sequence);
1559 if ((stretchGroup != null) && (res > stretchGroup.getStartRes())
1560 && (res < stretchGroup.getEndRes()))
1562 av.setSelectionGroup(stretchGroup);
1566 stretchGroup = null;
1569 else if (!stretchGroup.getSequences(null).contains(sequence)
1570 || (stretchGroup.getStartRes() > res)
1571 || (stretchGroup.getEndRes() < res))
1573 stretchGroup = null;
1575 SequenceGroup[] allGroups = av.getAlignment().findAllGroups(sequence);
1577 if (allGroups != null)
1579 for (int i = 0; i < allGroups.length; i++)
1581 if ((allGroups[i].getStartRes() <= res)
1582 && (allGroups[i].getEndRes() >= res))
1584 stretchGroup = allGroups[i];
1590 av.setSelectionGroup(stretchGroup);
1594 if (javax.swing.SwingUtilities.isRightMouseButton(evt))
1596 List<SequenceFeature> allFeatures = ap.getFeatureRenderer().findFeaturesAtRes(
1597 sequence.getDatasetSequence(), sequence.findPosition(res));
1598 Vector links = new Vector();
1599 for (SequenceFeature sf:allFeatures)
1601 if (sf.links != null)
1603 for (int j = 0; j < sf.links.size(); j++)
1605 links.addElement(sf.links.elementAt(j));
1610 jalview.gui.PopupMenu pop = new jalview.gui.PopupMenu(ap, null, links);
1611 pop.show(this, evt.getX(), evt.getY());
1617 seqCanvas.cursorX = findRes(evt);
1618 seqCanvas.cursorY = findSeq(evt);
1619 seqCanvas.repaint();
1623 if (stretchGroup == null)
1625 // Only if left mouse button do we want to change group sizes
1627 // define a new group here
1628 SequenceGroup sg = new SequenceGroup();
1629 sg.setStartRes(res);
1631 sg.addSequence(sequence, false);
1632 av.setSelectionGroup(sg);
1636 if (av.getConservationSelected())
1638 SliderPanel.setConservationSlider(ap, av.getGlobalColourScheme(),
1642 if (av.getAbovePIDThreshold())
1644 SliderPanel.setPIDSliderSource(ap, av.getGlobalColourScheme(),
1647 if ((stretchGroup != null) && (stretchGroup.getEndRes() == res))
1649 // Edit end res position of selected group
1650 changeEndRes = true;
1652 else if ((stretchGroup != null)
1653 && (stretchGroup.getStartRes() == res))
1655 // Edit end res position of selected group
1656 changeStartRes = true;
1658 stretchGroup.getWidth();
1661 seqCanvas.repaint();
1670 public void doMouseReleasedDefineMode(MouseEvent evt)
1672 if (stretchGroup == null)
1677 stretchGroup.recalcConservation(); // always do this - annotation has own
1679 if (stretchGroup.cs != null)
1681 stretchGroup.cs.alignmentChanged(stretchGroup,
1682 av.getHiddenRepSequences());
1684 if (stretchGroup.cs.conservationApplied())
1686 SliderPanel.setConservationSlider(ap, stretchGroup.cs,
1687 stretchGroup.getName());
1691 SliderPanel.setPIDSliderSource(ap, stretchGroup.cs,
1692 stretchGroup.getName());
1695 PaintRefresher.Refresh(this, av.getSequenceSetId());
1696 ap.paintAlignment(true);
1698 changeEndRes = false;
1699 changeStartRes = false;
1700 stretchGroup = null;
1710 public void doMouseDraggedDefineMode(MouseEvent evt)
1712 int res = findRes(evt);
1713 int y = findSeq(evt);
1715 if (wrappedBlock != startWrapBlock)
1720 if (stretchGroup == null)
1725 if (res >= av.getAlignment().getWidth())
1727 res = av.getAlignment().getWidth() - 1;
1730 if (stretchGroup.getEndRes() == res)
1732 // Edit end res position of selected group
1733 changeEndRes = true;
1735 else if (stretchGroup.getStartRes() == res)
1737 // Edit start res position of selected group
1738 changeStartRes = true;
1741 if (res < av.getStartRes())
1743 res = av.getStartRes();
1748 if (res > (stretchGroup.getStartRes() - 1))
1750 stretchGroup.setEndRes(res);
1753 else if (changeStartRes)
1755 if (res < (stretchGroup.getEndRes() + 1))
1757 stretchGroup.setStartRes(res);
1761 int dragDirection = 0;
1767 else if (y < oldSeq)
1772 while ((y != oldSeq) && (oldSeq > -1)
1773 && (y < av.getAlignment().getHeight()))
1775 // This routine ensures we don't skip any sequences, as the
1776 // selection is quite slow.
1777 Sequence seq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1779 oldSeq += dragDirection;
1786 Sequence nextSeq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1788 if (stretchGroup.getSequences(null).contains(nextSeq))
1790 stretchGroup.deleteSequence(seq, false);
1796 stretchGroup.addSequence(seq, false);
1799 stretchGroup.addSequence(nextSeq, false);
1808 mouseDragging = true;
1810 if (scrollThread != null)
1812 scrollThread.setEvent(evt);
1815 seqCanvas.repaint();
1818 void scrollCanvas(MouseEvent evt)
1822 if (scrollThread != null)
1824 scrollThread.running = false;
1825 scrollThread = null;
1827 mouseDragging = false;
1831 if (scrollThread == null)
1833 scrollThread = new ScrollThread();
1836 mouseDragging = true;
1837 scrollThread.setEvent(evt);
1842 // this class allows scrolling off the bottom of the visible alignment
1843 class ScrollThread extends Thread
1847 boolean running = false;
1849 public ScrollThread()
1854 public void setEvent(MouseEvent e)
1859 public void stopScrolling()
1873 if (mouseDragging && (evt.getY() < 0) && (av.getStartSeq() > 0))
1875 running = ap.scrollUp(true);
1878 if (mouseDragging && (evt.getY() >= getHeight())
1879 && (av.getAlignment().getHeight() > av.getEndSeq()))
1881 running = ap.scrollUp(false);
1884 if (mouseDragging && (evt.getX() < 0))
1886 running = ap.scrollRight(false);
1888 else if (mouseDragging && (evt.getX() >= getWidth()))
1890 running = ap.scrollRight(true);
1897 } catch (Exception ex)
1905 * modify current selection according to a received message.
1908 public void selection(SequenceGroup seqsel, ColumnSelection colsel,
1909 SelectionSource source)
1911 // TODO: fix this hack - source of messages is align viewport, but SeqPanel
1912 // handles selection messages...
1913 // TODO: extend config options to allow user to control if selections may be
1914 // shared between viewports.
1915 boolean iSentTheSelection = (av == source
1916 || (source instanceof AlignViewport && ((AlignmentViewport) source)
1917 .getSequenceSetId().equals(av.getSequenceSetId())));
1918 if (iSentTheSelection || !av.followSelection)
1924 * Ignore the selection if there is one of our own pending.
1926 if (av.isSelectionGroupChanged(false) || av.isColSelChanged(false))
1932 * Check for selection in a view of which this one is a dna/protein
1935 if (selectionFromTranslation(seqsel, colsel, source))
1940 // do we want to thread this ? (contention with seqsel and colsel locks, I
1942 // rules are: colsel is copied if there is a real intersection between
1943 // sequence selection
1944 boolean repaint = false;
1945 boolean copycolsel = true;
1947 SequenceGroup sgroup = null;
1948 if (seqsel != null && seqsel.getSize() > 0)
1950 if (av.getAlignment() == null)
1952 jalview.bin.Cache.log.warn("alignviewport av SeqSetId="
1953 + av.getSequenceSetId() + " ViewId=" + av.getViewId()
1954 + " 's alignment is NULL! returning immediately.");
1957 sgroup = seqsel.intersect(av.getAlignment(),
1958 (av.hasHiddenRows()) ? av.getHiddenRepSequences() : null);
1959 if ((sgroup == null || sgroup.getSize() == 0)
1960 || (colsel == null || colsel.size() == 0))
1962 // don't copy columns if the region didn't intersect.
1966 if (sgroup != null && sgroup.getSize() > 0)
1968 av.setSelectionGroup(sgroup);
1972 av.setSelectionGroup(null);
1974 av.isSelectionGroupChanged(true);
1979 // the current selection is unset or from a previous message
1980 // so import the new colsel.
1981 if (colsel == null || colsel.size() == 0)
1983 if (av.getColumnSelection() != null)
1985 av.getColumnSelection().clear();
1991 // TODO: shift colSel according to the intersecting sequences
1992 if (av.getColumnSelection() == null)
1994 av.setColumnSelection(new ColumnSelection(colsel));
1998 av.getColumnSelection().setElementsFrom(colsel);
2001 av.isColSelChanged(true);
2006 && av.hasHiddenColumns()
2007 && (av.getColumnSelection() == null || av.getColumnSelection()
2008 .getHiddenColumns() == null))
2010 System.err.println("Bad things");
2012 if (repaint) // always true!
2014 // probably finessing with multiple redraws here
2015 PaintRefresher.Refresh(this, av.getSequenceSetId());
2016 // ap.paintAlignment(false);
2021 * If this panel is a cdna/protein translation view of the selection source,
2022 * tries to map the source selection to a local one, and returns true. Else
2029 protected boolean selectionFromTranslation(SequenceGroup seqsel,
2030 ColumnSelection colsel, SelectionSource source)
2032 if (!(source instanceof AlignViewportI)) {
2035 final AlignViewportI sourceAv = (AlignViewportI) source;
2036 if (sourceAv.getCodingComplement() != av && av.getCodingComplement() != sourceAv)
2042 * Map sequence selection
2044 SequenceGroup sg = MappingUtils.mapSequenceGroup(seqsel, sourceAv, av);
2045 av.setSelectionGroup(sg);
2046 av.isSelectionGroupChanged(true);
2049 * Map column selection
2051 ColumnSelection cs = MappingUtils.mapColumnSelection(colsel, sourceAv,
2053 av.setColumnSelection(cs);
2054 av.isColSelChanged(true);
2056 PaintRefresher.Refresh(this, av.getSequenceSetId());