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.bin.Cache;
25 import jalview.commands.EditCommand;
26 import jalview.commands.EditCommand.Action;
27 import jalview.commands.EditCommand.Edit;
28 import jalview.datamodel.AlignmentI;
29 import jalview.datamodel.ColumnSelection;
30 import jalview.datamodel.SearchResults;
31 import jalview.datamodel.SearchResults.Match;
32 import jalview.datamodel.Sequence;
33 import jalview.datamodel.SequenceFeature;
34 import jalview.datamodel.SequenceGroup;
35 import jalview.datamodel.SequenceI;
36 import jalview.io.SequenceAnnotationReport;
37 import jalview.schemes.ResidueProperties;
38 import jalview.structure.SelectionListener;
39 import jalview.structure.SelectionSource;
40 import jalview.structure.SequenceListener;
41 import jalview.structure.StructureSelectionManager;
42 import jalview.structure.VamsasSource;
43 import jalview.util.Comparison;
44 import jalview.util.MappingUtils;
45 import jalview.util.MessageManager;
46 import jalview.viewmodel.AlignmentViewport;
48 import java.awt.BorderLayout;
49 import java.awt.Color;
51 import java.awt.FontMetrics;
52 import java.awt.Point;
53 import java.awt.event.MouseEvent;
54 import java.awt.event.MouseListener;
55 import java.awt.event.MouseMotionListener;
56 import java.awt.event.MouseWheelEvent;
57 import java.awt.event.MouseWheelListener;
58 import java.util.ArrayList;
59 import java.util.List;
61 import javax.swing.JOptionPane;
62 import javax.swing.JPanel;
63 import javax.swing.SwingUtilities;
64 import javax.swing.ToolTipManager;
70 * @version $Revision: 1.130 $
72 public class SeqPanel extends JPanel implements MouseListener,
73 MouseMotionListener, MouseWheelListener, SequenceListener,
78 public SeqCanvas seqCanvas;
81 public AlignmentPanel ap;
83 protected int lastres;
85 protected int startseq;
87 protected AlignViewport av;
89 ScrollThread scrollThread = null;
91 boolean mouseDragging = false;
93 boolean editingSeqs = false;
95 boolean groupEditing = false;
97 // ////////////////////////////////////////
98 // ///Everything below this is for defining the boundary of the rubberband
99 // ////////////////////////////////////////
102 boolean changeEndSeq = false;
104 boolean changeStartSeq = false;
106 boolean changeEndRes = false;
108 boolean changeStartRes = false;
110 SequenceGroup stretchGroup = null;
112 boolean remove = false;
114 Point lastMousePress;
116 boolean mouseWheelPressed = false;
118 StringBuffer keyboardNo1;
120 StringBuffer keyboardNo2;
122 java.net.URL linkImageURL;
124 private final SequenceAnnotationReport seqARep;
126 StringBuffer tooltipText = new StringBuffer();
130 EditCommand editCommand;
132 StructureSelectionManager ssm;
134 SearchResults lastSearchResults;
137 * Creates a new SeqPanel object.
144 public SeqPanel(AlignViewport av, AlignmentPanel ap)
146 linkImageURL = getClass().getResource("/images/link.gif");
147 seqARep = new SequenceAnnotationReport(linkImageURL.toString());
148 ToolTipManager.sharedInstance().registerComponent(this);
149 ToolTipManager.sharedInstance().setInitialDelay(0);
150 ToolTipManager.sharedInstance().setDismissDelay(10000);
152 setBackground(Color.white);
154 seqCanvas = new SeqCanvas(ap);
155 setLayout(new BorderLayout());
156 add(seqCanvas, BorderLayout.CENTER);
162 addMouseMotionListener(this);
163 addMouseListener(this);
164 addMouseWheelListener(this);
165 ssm = av.getStructureSelectionManager();
166 ssm.addStructureViewerListener(this);
167 ssm.addSelectionListener(this);
171 int startWrapBlock = -1;
173 int wrappedBlock = -1;
176 * Returns the aligned sequence position (base 0) at the mouse position, or
177 * the closest visible one
182 int findRes(MouseEvent evt)
187 if (av.getWrapAlignment())
190 int hgap = av.getCharHeight();
191 if (av.getScaleAboveWrapped())
193 hgap += av.getCharHeight();
196 int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
197 + hgap + seqCanvas.getAnnotationHeight();
201 x -= seqCanvas.LABEL_WEST;
203 int cwidth = seqCanvas.getWrappedCanvasWidth(this.getWidth());
209 wrappedBlock = y / cHeight;
210 wrappedBlock += av.getStartRes() / cwidth;
212 res = wrappedBlock * cwidth + x / av.getCharWidth();
217 if (x > seqCanvas.getX() + seqCanvas.getWidth())
219 // make sure we calculate relative to visible alignment, rather than
221 x = seqCanvas.getX() + seqCanvas.getWidth();
223 res = (x / av.getCharWidth()) + av.getStartRes();
224 if (res > av.getEndRes())
227 res = av.getEndRes();
231 if (av.hasHiddenColumns())
233 res = av.getColumnSelection().adjustForHiddenColumns(res);
240 int findSeq(MouseEvent evt)
245 if (av.getWrapAlignment())
247 int hgap = av.getCharHeight();
248 if (av.getScaleAboveWrapped())
250 hgap += av.getCharHeight();
253 int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
254 + hgap + 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 // TODO not called - delete?
515 groupEditing = group;
516 startseq = seqCanvas.cursorY;
517 lastres = seqCanvas.cursorX;
518 editSequence(false, true, seqCanvas.cursorX + getKeyboardNo1());
522 void numberPressed(char value)
524 if (keyboardNo1 == null)
526 keyboardNo1 = new StringBuffer();
529 if (keyboardNo2 != null)
531 keyboardNo2.append(value);
535 keyboardNo1.append(value);
543 if (keyboardNo1 != null)
545 int value = Integer.parseInt(keyboardNo1.toString());
549 } catch (Exception x)
560 if (keyboardNo2 != null)
562 int value = Integer.parseInt(keyboardNo2.toString());
566 } catch (Exception x)
580 public void mouseReleased(MouseEvent evt)
582 mouseDragging = false;
583 mouseWheelPressed = false;
587 doMouseReleasedDefineMode(evt);
601 public void mousePressed(MouseEvent evt)
603 lastMousePress = evt.getPoint();
605 if (SwingUtilities.isMiddleMouseButton(evt))
607 mouseWheelPressed = true;
611 if (evt.isShiftDown() || evt.isAltDown() || evt.isControlDown())
613 if (evt.isAltDown() || evt.isControlDown())
621 doMousePressedDefineMode(evt);
625 int seq = findSeq(evt);
626 int res = findRes(evt);
628 if (seq < 0 || res < 0)
633 if ((seq < av.getAlignment().getHeight())
634 && (res < av.getAlignment().getSequenceAt(seq).getLength()))
651 public void mouseOverSequence(SequenceI sequence, int index, int pos)
653 String tmp = sequence.hashCode() + " " + index + " " + pos;
655 if (lastMessage == null || !lastMessage.equals(tmp))
657 // System.err.println("mouseOver Sequence: "+tmp);
658 ssm.mouseOverSequence(sequence, index, pos, av);
664 * Highlight the mapped region described by the search results object (unless
665 * unchanged). This supports highlight of protein while mousing over linked
666 * cDNA and vice versa. The status bar is also updated to show the location of
667 * the start of the highlighted region.
670 public void highlightSequence(SearchResults results)
672 if (results == null || results.equals(lastSearchResults))
676 lastSearchResults = results;
678 if (av.isFollowHighlight())
681 * if scrollToPosition requires a scroll adjustment, this flag prevents
682 * another scroll event being propagated back to the originator
684 * @see AlignmentPanel#adjustmentValueChanged
686 ap.setDontScrollComplement(true);
687 if (ap.scrollToPosition(results, false))
689 seqCanvas.revalidate();
692 setStatusMessage(results);
693 seqCanvas.highlightSearchResults(results);
697 public VamsasSource getVamsasSource()
699 return this.ap == null ? null : this.ap.av;
703 public void updateColours(SequenceI seq, int index)
705 System.out.println("update the seqPanel colours");
716 public void mouseMoved(MouseEvent evt)
720 // This is because MacOSX creates a mouseMoved
721 // If control is down, other platforms will not.
725 int res = findRes(evt);
726 int seq = findSeq(evt);
728 if (res < 0 || seq < 0 || seq >= av.getAlignment().getHeight())
733 SequenceI sequence = av.getAlignment().getSequenceAt(seq);
735 if (res >= sequence.getLength())
740 pos = setStatusMessage(sequence, res, seq);
741 if (ssm != null && pos > -1)
743 mouseOverSequence(sequence, res, pos);
746 tooltipText.setLength(6); // Cuts the buffer back to <html>
748 SequenceGroup[] groups = av.getAlignment().findAllGroups(sequence);
751 for (int g = 0; g < groups.length; g++)
753 if (groups[g].getStartRes() <= res && groups[g].getEndRes() >= res)
755 if (!groups[g].getName().startsWith("JTreeGroup")
756 && !groups[g].getName().startsWith("JGroup"))
758 tooltipText.append(groups[g].getName());
761 if (groups[g].getDescription() != null)
763 tooltipText.append(": " + groups[g].getDescription());
769 // use aa to see if the mouse pointer is on a
770 if (av.isShowSequenceFeatures())
773 List<SequenceFeature> features = ap.getFeatureRenderer()
774 .findFeaturesAtRes(sequence.getDatasetSequence(),
775 rpos = sequence.findPosition(res));
776 seqARep.appendFeatures(tooltipText, rpos, features,
777 this.ap.getSeqPanel().seqCanvas.fr.getMinMax());
779 if (tooltipText.length() == 6) // <html></html>
781 setToolTipText(null);
786 if (lastTooltip == null
787 || !lastTooltip.equals(tooltipText.toString()))
789 String formatedTooltipText = JvSwingUtils.wrapTooltip(true,
790 tooltipText.toString());
791 // String formatedTooltipText = tooltipText.toString();
792 setToolTipText(formatedTooltipText);
793 lastTooltip = tooltipText.toString();
800 private Point lastp = null;
805 * @see javax.swing.JComponent#getToolTipLocation(java.awt.event.MouseEvent)
808 public Point getToolTipLocation(MouseEvent event)
810 int x = event.getX(), w = getWidth();
811 int wdth = (w - x < 200) ? -(w / 2) : 5; // switch sides when tooltip is too
814 if (!event.isShiftDown() || p == null)
816 p = (tooltipText != null && tooltipText.length() > 6) ? new Point(
817 event.getX() + wdth, event.getY() - 20) : null;
820 * TODO: try to modify position region is not obcured by tooltip
828 * Set status message in alignment panel
831 * aligned sequence object
835 * index of sequence in alignment
836 * @return position of res in sequence
838 int setStatusMessage(SequenceI sequence, int res, int seq)
840 StringBuilder text = new StringBuilder(32);
843 * Sequence number (if known), and sequence name.
845 String seqno = seq == -1 ? "" : " " + (seq + 1);
846 text.append("Sequence" + seqno + " ID: " + sequence.getName());
848 String residue = null;
850 * Try to translate the display character to residue name (null for gap).
852 final String displayChar = String.valueOf(sequence.getCharAt(res));
853 if (av.getAlignment().isNucleotide())
855 residue = ResidueProperties.nucleotideName.get(displayChar);
858 text.append(" Nucleotide: ").append(residue);
863 residue = "X".equalsIgnoreCase(displayChar) ? "X" : ("*"
864 .equals(displayChar) ? "STOP" : ResidueProperties.aa2Triplet
868 text.append(" Residue: ").append(residue);
875 pos = sequence.findPosition(res);
876 text.append(" (").append(Integer.toString(pos)).append(")");
878 ap.alignFrame.statusBar.setText(text.toString());
883 * Set the status bar message to highlight the first matched position in
888 private void setStatusMessage(SearchResults results)
890 AlignmentI al = this.av.getAlignment();
891 int sequenceIndex = al.findIndex(results);
892 if (sequenceIndex == -1)
896 SequenceI ds = al.getSequenceAt(sequenceIndex).getDatasetSequence();
897 for (Match m : results.getResults())
899 SequenceI seq = m.getSequence();
900 if (seq.getDatasetSequence() != null)
902 seq = seq.getDatasetSequence();
908 * Convert position in sequence (base 1) to sequence character array
911 int start = m.getStart() - m.getSequence().getStart();
912 setStatusMessage(seq, start, sequenceIndex);
925 public void mouseDragged(MouseEvent evt)
927 if (mouseWheelPressed)
929 int oldWidth = av.getCharWidth();
931 // Which is bigger, left-right or up-down?
932 if (Math.abs(evt.getY() - lastMousePress.getY()) > Math.abs(evt
933 .getX() - lastMousePress.getX()))
935 int fontSize = av.font.getSize();
937 if (evt.getY() < lastMousePress.getY())
941 else if (evt.getY() > lastMousePress.getY())
952 new Font(av.font.getName(), av.font.getStyle(), fontSize),
954 av.setCharWidth(oldWidth);
959 if (evt.getX() < lastMousePress.getX() && av.getCharWidth() > 1)
961 av.setCharWidth(av.getCharWidth() - 1);
963 else if (evt.getX() > lastMousePress.getX())
965 av.setCharWidth(av.getCharWidth() + 1);
968 ap.paintAlignment(false);
971 FontMetrics fm = getFontMetrics(av.getFont());
972 av.validCharWidth = fm.charWidth('M') <= av.getCharWidth();
974 lastMousePress = evt.getPoint();
981 doMouseDraggedDefineMode(evt);
985 int res = findRes(evt);
992 if ((lastres == -1) || (lastres == res))
997 if ((res < av.getAlignment().getWidth()) && (res < lastres))
999 // dragLeft, delete gap
1000 editSequence(false, false, res);
1004 editSequence(true, false, res);
1007 mouseDragging = true;
1008 if (scrollThread != null)
1010 scrollThread.setEvent(evt);
1014 // TODO: Make it more clever than many booleans
1015 synchronized void editSequence(boolean insertGap, boolean editSeq,
1019 int fixedRight = -1;
1020 boolean fixedColumns = false;
1021 SequenceGroup sg = av.getSelectionGroup();
1023 SequenceI seq = av.getAlignment().getSequenceAt(startseq);
1025 // No group, but the sequence may represent a group
1026 if (!groupEditing && av.hasHiddenRows())
1028 if (av.isHiddenRepSequence(seq))
1030 sg = av.getRepresentedSequences(seq);
1031 groupEditing = true;
1035 StringBuilder message = new StringBuilder(64);
1038 message.append("Edit group:");
1039 if (editCommand == null)
1041 editCommand = new EditCommand(
1042 MessageManager.getString("action.edit_group"));
1047 message.append("Edit sequence: " + seq.getName());
1048 String label = seq.getName();
1049 if (label.length() > 10)
1051 label = label.substring(0, 10);
1053 if (editCommand == null)
1055 editCommand = new EditCommand(MessageManager.formatMessage(
1056 "label.edit_params", new String[] { label }));
1062 message.append(" insert ");
1066 message.append(" delete ");
1069 message.append(Math.abs(startres - lastres) + " gaps.");
1070 ap.alignFrame.statusBar.setText(message.toString());
1072 // Are we editing within a selection group?
1074 || (sg != null && sg.getSequences(av.getHiddenRepSequences())
1077 fixedColumns = true;
1079 // sg might be null as the user may only see 1 sequence,
1080 // but the sequence represents a group
1083 if (!av.isHiddenRepSequence(seq))
1088 sg = av.getRepresentedSequences(seq);
1091 fixedLeft = sg.getStartRes();
1092 fixedRight = sg.getEndRes();
1094 if ((startres < fixedLeft && lastres >= fixedLeft)
1095 || (startres >= fixedLeft && lastres < fixedLeft)
1096 || (startres > fixedRight && lastres <= fixedRight)
1097 || (startres <= fixedRight && lastres > fixedRight))
1103 if (fixedLeft > startres)
1105 fixedRight = fixedLeft - 1;
1108 else if (fixedRight < startres)
1110 fixedLeft = fixedRight;
1115 if (av.hasHiddenColumns())
1117 fixedColumns = true;
1118 int y1 = av.getColumnSelection().getHiddenBoundaryLeft(startres);
1119 int y2 = av.getColumnSelection().getHiddenBoundaryRight(startres);
1121 if ((insertGap && startres > y1 && lastres < y1)
1122 || (!insertGap && startres < y2 && lastres > y2))
1128 // System.out.print(y1+" "+y2+" "+fixedLeft+" "+fixedRight+"~~");
1129 // Selection spans a hidden region
1130 if (fixedLeft < y1 && (fixedRight > y2 || fixedRight == -1))
1138 fixedRight = y2 - 1;
1145 List<SequenceI> vseqs = sg.getSequences(av.getHiddenRepSequences());
1146 int g, groupSize = vseqs.size();
1147 SequenceI[] groupSeqs = new SequenceI[groupSize];
1148 for (g = 0; g < groupSeqs.length; g++)
1150 groupSeqs[g] = vseqs.get(g);
1156 // If the user has selected the whole sequence, and is dragging to
1157 // the right, we can still extend the alignment and selectionGroup
1158 if (sg.getStartRes() == 0 && sg.getEndRes() == fixedRight
1159 && sg.getEndRes() == av.getAlignment().getWidth() - 1)
1161 sg.setEndRes(av.getAlignment().getWidth() + startres - lastres);
1162 fixedRight = sg.getEndRes();
1165 // Is it valid with fixed columns??
1166 // Find the next gap before the end
1167 // of the visible region boundary
1168 boolean blank = false;
1169 for (fixedRight = fixedRight; fixedRight > lastres; fixedRight--)
1173 for (g = 0; g < groupSize; g++)
1175 for (int j = 0; j < startres - lastres; j++)
1177 if (!Comparison.isGap(groupSeqs[g].getCharAt(fixedRight - j)))
1192 if (sg.getSize() == av.getAlignment().getHeight())
1194 if ((av.hasHiddenColumns() && startres < av
1195 .getColumnSelection().getHiddenBoundaryRight(startres)))
1201 int alWidth = av.getAlignment().getWidth();
1202 if (av.hasHiddenRows())
1204 int hwidth = av.getAlignment().getHiddenSequences()
1206 if (hwidth > alWidth)
1211 // We can still insert gaps if the selectionGroup
1212 // contains all the sequences
1213 sg.setEndRes(sg.getEndRes() + startres - lastres);
1214 fixedRight = alWidth + startres - lastres;
1225 else if (!insertGap)
1227 // / Are we able to delete?
1228 // ie are all columns blank?
1230 for (g = 0; g < groupSize; g++)
1232 for (int j = startres; j < lastres; j++)
1234 if (groupSeqs[g].getLength() <= j)
1239 if (!Comparison.isGap(groupSeqs[g].getCharAt(j)))
1241 // Not a gap, block edit not valid
1251 // dragging to the right
1252 if (fixedColumns && fixedRight != -1)
1254 for (int j = lastres; j < startres; j++)
1256 insertChar(j, groupSeqs, fixedRight);
1261 appendEdit(Action.INSERT_GAP, groupSeqs, startres, startres
1267 // dragging to the left
1268 if (fixedColumns && fixedRight != -1)
1270 for (int j = lastres; j > startres; j--)
1272 deleteChar(startres, groupSeqs, fixedRight);
1277 appendEdit(Action.DELETE_GAP, groupSeqs, startres, lastres
1284 // ///Editing a single sequence///////////
1288 // dragging to the right
1289 if (fixedColumns && fixedRight != -1)
1291 for (int j = lastres; j < startres; j++)
1293 insertChar(j, new SequenceI[] { seq }, fixedRight);
1298 appendEdit(Action.INSERT_GAP, new SequenceI[] { seq }, lastres,
1299 startres - lastres);
1306 // dragging to the left
1307 if (fixedColumns && fixedRight != -1)
1309 for (int j = lastres; j > startres; j--)
1311 if (!Comparison.isGap(seq.getCharAt(startres)))
1316 deleteChar(startres, new SequenceI[] { seq }, fixedRight);
1321 // could be a keyboard edit trying to delete none gaps
1323 for (int m = startres; m < lastres; m++)
1325 if (!Comparison.isGap(seq.getCharAt(m)))
1334 appendEdit(Action.DELETE_GAP, new SequenceI[] { seq },
1340 {// insertGap==false AND editSeq==TRUE;
1341 if (fixedColumns && fixedRight != -1)
1343 for (int j = lastres; j < startres; j++)
1345 insertChar(j, new SequenceI[] { seq }, fixedRight);
1350 appendEdit(Action.INSERT_NUC, new SequenceI[] { seq }, lastres,
1351 startres - lastres);
1358 seqCanvas.repaint();
1361 void insertChar(int j, SequenceI[] seq, int fixedColumn)
1363 int blankColumn = fixedColumn;
1364 for (int s = 0; s < seq.length; s++)
1366 // Find the next gap before the end of the visible region boundary
1367 // If lastCol > j, theres a boundary after the gap insertion
1369 for (blankColumn = fixedColumn; blankColumn > j; blankColumn--)
1371 if (Comparison.isGap(seq[s].getCharAt(blankColumn)))
1373 // Theres a space, so break and insert the gap
1378 if (blankColumn <= j)
1380 blankColumn = fixedColumn;
1386 appendEdit(Action.DELETE_GAP, seq, blankColumn, 1);
1388 appendEdit(Action.INSERT_GAP, seq, j, 1);
1393 * Helper method to add and perform one edit action.
1400 protected void appendEdit(Action action, SequenceI[] seq, int pos,
1404 final Edit edit = new EditCommand().new Edit(action, seq, pos, count,
1405 av.getAlignment().getGapCharacter());
1407 editCommand.appendEdit(edit, av.getAlignment(), true, null);
1410 void deleteChar(int j, SequenceI[] seq, int fixedColumn)
1413 appendEdit(Action.DELETE_GAP, seq, j, 1);
1415 appendEdit(Action.INSERT_GAP, seq, fixedColumn, 1);
1425 public void mouseEntered(MouseEvent e)
1432 if (scrollThread != null)
1434 scrollThread.running = false;
1435 scrollThread = null;
1446 public void mouseExited(MouseEvent e)
1448 if (av.getWrapAlignment())
1455 scrollThread = new ScrollThread();
1460 public void mouseClicked(MouseEvent evt)
1462 SequenceGroup sg = null;
1463 SequenceI sequence = av.getAlignment().getSequenceAt(findSeq(evt));
1464 if (evt.getClickCount() > 1)
1466 sg = av.getSelectionGroup();
1467 if (sg != null && sg.getSize() == 1
1468 && sg.getEndRes() - sg.getStartRes() < 2)
1470 av.setSelectionGroup(null);
1473 List<SequenceFeature> features = seqCanvas.getFeatureRenderer()
1474 .findFeaturesAtRes(sequence.getDatasetSequence(),
1475 sequence.findPosition(findRes(evt)));
1477 if (features != null && features.size() > 0)
1479 SearchResults highlight = new SearchResults();
1480 highlight.addResult(sequence, features.get(0).getBegin(), features
1482 seqCanvas.highlightSearchResults(highlight);
1484 if (features != null && features.size() > 0)
1486 seqCanvas.getFeatureRenderer().amendFeatures(
1487 new SequenceI[] { sequence },
1488 features.toArray(new SequenceFeature[features.size()]),
1491 seqCanvas.highlightSearchResults(null);
1497 public void mouseWheelMoved(MouseWheelEvent e)
1500 if (e.getWheelRotation() > 0)
1502 if (e.isShiftDown())
1504 ap.scrollRight(true);
1514 if (e.isShiftDown())
1516 ap.scrollRight(false);
1523 // TODO Update tooltip for new position.
1532 public void doMousePressedDefineMode(MouseEvent evt)
1534 int res = findRes(evt);
1535 int seq = findSeq(evt);
1538 startWrapBlock = wrappedBlock;
1540 if (av.getWrapAlignment() && seq > av.getAlignment().getHeight())
1542 JOptionPane.showInternalMessageDialog(Desktop.desktop, MessageManager
1543 .getString("label.cannot_edit_annotations_in_wrapped_view"),
1544 MessageManager.getString("label.wrapped_view_no_edit"),
1545 JOptionPane.WARNING_MESSAGE);
1549 if (seq < 0 || res < 0)
1554 SequenceI sequence = av.getAlignment().getSequenceAt(seq);
1556 if ((sequence == null) || (res > sequence.getLength()))
1561 stretchGroup = av.getSelectionGroup();
1563 if (stretchGroup == null)
1565 stretchGroup = av.getAlignment().findGroup(sequence);
1567 if ((stretchGroup != null) && (res > stretchGroup.getStartRes())
1568 && (res < stretchGroup.getEndRes()))
1570 av.setSelectionGroup(stretchGroup);
1574 stretchGroup = null;
1577 else if (!stretchGroup.getSequences(null).contains(sequence)
1578 || (stretchGroup.getStartRes() > res)
1579 || (stretchGroup.getEndRes() < res))
1581 stretchGroup = null;
1583 SequenceGroup[] allGroups = av.getAlignment().findAllGroups(sequence);
1585 if (allGroups != null)
1587 for (int i = 0; i < allGroups.length; i++)
1589 if ((allGroups[i].getStartRes() <= res)
1590 && (allGroups[i].getEndRes() >= res))
1592 stretchGroup = allGroups[i];
1598 av.setSelectionGroup(stretchGroup);
1602 if (evt.isPopupTrigger())
1604 List<SequenceFeature> allFeatures = ap.getFeatureRenderer()
1605 .findFeaturesAtRes(sequence.getDatasetSequence(),
1606 sequence.findPosition(res));
1607 List<String> links = new ArrayList<String>();
1608 for (SequenceFeature sf : allFeatures)
1610 if (sf.links != null)
1612 for (String link : sf.links)
1619 PopupMenu pop = new PopupMenu(ap, null, links);
1620 pop.show(this, evt.getX(), evt.getY());
1626 seqCanvas.cursorX = findRes(evt);
1627 seqCanvas.cursorY = findSeq(evt);
1628 seqCanvas.repaint();
1632 if (stretchGroup == null)
1634 // Only if left mouse button do we want to change group sizes
1636 // define a new group here
1637 SequenceGroup sg = new SequenceGroup();
1638 sg.setStartRes(res);
1640 sg.addSequence(sequence, false);
1641 av.setSelectionGroup(sg);
1645 if (av.getConservationSelected())
1647 SliderPanel.setConservationSlider(ap, av.getGlobalColourScheme(),
1651 if (av.getAbovePIDThreshold())
1653 SliderPanel.setPIDSliderSource(ap, av.getGlobalColourScheme(),
1656 if ((stretchGroup != null) && (stretchGroup.getEndRes() == res))
1658 // Edit end res position of selected group
1659 changeEndRes = true;
1661 else if ((stretchGroup != null)
1662 && (stretchGroup.getStartRes() == res))
1664 // Edit end res position of selected group
1665 changeStartRes = true;
1667 stretchGroup.getWidth();
1670 seqCanvas.repaint();
1679 public void doMouseReleasedDefineMode(MouseEvent evt)
1681 if (stretchGroup == null)
1686 stretchGroup.recalcConservation(); // always do this - annotation has own
1688 if (stretchGroup.cs != null)
1690 stretchGroup.cs.alignmentChanged(stretchGroup,
1691 av.getHiddenRepSequences());
1693 if (stretchGroup.cs.conservationApplied())
1695 SliderPanel.setConservationSlider(ap, stretchGroup.cs,
1696 stretchGroup.getName());
1700 SliderPanel.setPIDSliderSource(ap, stretchGroup.cs,
1701 stretchGroup.getName());
1704 PaintRefresher.Refresh(this, av.getSequenceSetId());
1705 ap.paintAlignment(true);
1707 changeEndRes = false;
1708 changeStartRes = false;
1709 stretchGroup = null;
1719 public void doMouseDraggedDefineMode(MouseEvent evt)
1721 int res = findRes(evt);
1722 int y = findSeq(evt);
1724 if (wrappedBlock != startWrapBlock)
1729 if (stretchGroup == null)
1734 if (res >= av.getAlignment().getWidth())
1736 res = av.getAlignment().getWidth() - 1;
1739 if (stretchGroup.getEndRes() == res)
1741 // Edit end res position of selected group
1742 changeEndRes = true;
1744 else if (stretchGroup.getStartRes() == res)
1746 // Edit start res position of selected group
1747 changeStartRes = true;
1750 if (res < av.getStartRes())
1752 res = av.getStartRes();
1757 if (res > (stretchGroup.getStartRes() - 1))
1759 stretchGroup.setEndRes(res);
1762 else if (changeStartRes)
1764 if (res < (stretchGroup.getEndRes() + 1))
1766 stretchGroup.setStartRes(res);
1770 int dragDirection = 0;
1776 else if (y < oldSeq)
1781 while ((y != oldSeq) && (oldSeq > -1)
1782 && (y < av.getAlignment().getHeight()))
1784 // This routine ensures we don't skip any sequences, as the
1785 // selection is quite slow.
1786 Sequence seq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1788 oldSeq += dragDirection;
1795 Sequence nextSeq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1797 if (stretchGroup.getSequences(null).contains(nextSeq))
1799 stretchGroup.deleteSequence(seq, false);
1805 stretchGroup.addSequence(seq, false);
1808 stretchGroup.addSequence(nextSeq, false);
1817 mouseDragging = true;
1819 if (scrollThread != null)
1821 scrollThread.setEvent(evt);
1824 seqCanvas.repaint();
1827 void scrollCanvas(MouseEvent evt)
1831 if (scrollThread != null)
1833 scrollThread.running = false;
1834 scrollThread = null;
1836 mouseDragging = false;
1840 if (scrollThread == null)
1842 scrollThread = new ScrollThread();
1845 mouseDragging = true;
1846 scrollThread.setEvent(evt);
1851 // this class allows scrolling off the bottom of the visible alignment
1852 class ScrollThread extends Thread
1856 boolean running = false;
1858 public ScrollThread()
1863 public void setEvent(MouseEvent e)
1868 public void stopScrolling()
1882 if (mouseDragging && (evt.getY() < 0) && (av.getStartSeq() > 0))
1884 running = ap.scrollUp(true);
1887 if (mouseDragging && (evt.getY() >= getHeight())
1888 && (av.getAlignment().getHeight() > av.getEndSeq()))
1890 running = ap.scrollUp(false);
1893 if (mouseDragging && (evt.getX() < 0))
1895 running = ap.scrollRight(false);
1897 else if (mouseDragging && (evt.getX() >= getWidth()))
1899 running = ap.scrollRight(true);
1906 } catch (Exception ex)
1914 * modify current selection according to a received message.
1917 public void selection(SequenceGroup seqsel, ColumnSelection colsel,
1918 SelectionSource source)
1920 // TODO: fix this hack - source of messages is align viewport, but SeqPanel
1921 // handles selection messages...
1922 // TODO: extend config options to allow user to control if selections may be
1923 // shared between viewports.
1924 boolean iSentTheSelection = (av == source || (source instanceof AlignViewport && ((AlignmentViewport) source)
1925 .getSequenceSetId().equals(av.getSequenceSetId())));
1926 if (iSentTheSelection || !av.followSelection)
1932 * Ignore the selection if there is one of our own pending.
1934 if (av.isSelectionGroupChanged(false) || av.isColSelChanged(false))
1940 * Check for selection in a view of which this one is a dna/protein
1943 if (selectionFromTranslation(seqsel, colsel, source))
1948 // do we want to thread this ? (contention with seqsel and colsel locks, I
1951 * only copy colsel if there is a real intersection between
1952 * sequence selection and this panel's alignment
1954 boolean repaint = false;
1955 boolean copycolsel = false;
1957 SequenceGroup sgroup = null;
1958 if (seqsel != null && seqsel.getSize() > 0)
1960 if (av.getAlignment() == null)
1962 Cache.log.warn("alignviewport av SeqSetId="
1963 + av.getSequenceSetId() + " ViewId=" + av.getViewId()
1964 + " 's alignment is NULL! returning immediately.");
1967 sgroup = seqsel.intersect(av.getAlignment(),
1968 (av.hasHiddenRows()) ? av.getHiddenRepSequences() : null);
1969 if ((sgroup != null && sgroup.getSize() > 0))
1974 if (sgroup != null && sgroup.getSize() > 0)
1976 av.setSelectionGroup(sgroup);
1980 av.setSelectionGroup(null);
1982 av.isSelectionGroupChanged(true);
1987 // the current selection is unset or from a previous message
1988 // so import the new colsel.
1989 if (colsel == null || colsel.isEmpty())
1991 if (av.getColumnSelection() != null)
1993 av.getColumnSelection().clear();
1999 // TODO: shift colSel according to the intersecting sequences
2000 if (av.getColumnSelection() == null)
2002 av.setColumnSelection(new ColumnSelection(colsel));
2006 av.getColumnSelection().setElementsFrom(colsel);
2009 av.isColSelChanged(true);
2014 && av.hasHiddenColumns()
2015 && (av.getColumnSelection() == null || av.getColumnSelection()
2016 .getHiddenColumns() == null))
2018 System.err.println("Bad things");
2020 if (repaint) // always true!
2022 // probably finessing with multiple redraws here
2023 PaintRefresher.Refresh(this, av.getSequenceSetId());
2024 // ap.paintAlignment(false);
2029 * If this panel is a cdna/protein translation view of the selection source,
2030 * tries to map the source selection to a local one, and returns true. Else
2037 protected boolean selectionFromTranslation(SequenceGroup seqsel,
2038 ColumnSelection colsel, SelectionSource source)
2040 if (!(source instanceof AlignViewportI))
2044 final AlignViewportI sourceAv = (AlignViewportI) source;
2045 if (sourceAv.getCodingComplement() != av
2046 && av.getCodingComplement() != sourceAv)
2052 * Map sequence selection
2054 SequenceGroup sg = MappingUtils.mapSequenceGroup(seqsel, sourceAv, av);
2055 av.setSelectionGroup(sg);
2056 av.isSelectionGroupChanged(true);
2059 * Map column selection
2061 ColumnSelection cs = MappingUtils.mapColumnSelection(colsel, sourceAv,
2063 av.setColumnSelection(cs);
2065 PaintRefresher.Refresh(this, av.getSequenceSetId());