Merge branch 'develop' into developtomchmmer
[jalview.git] / src / jalview / appletgui / SeqPanel.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.appletgui;
22
23 import jalview.api.AlignViewportI;
24 import jalview.commands.EditCommand;
25 import jalview.commands.EditCommand.Action;
26 import jalview.datamodel.AlignmentI;
27 import jalview.datamodel.ColumnSelection;
28 import jalview.datamodel.HiddenColumns;
29 import jalview.datamodel.SearchResultMatchI;
30 import jalview.datamodel.SearchResults;
31 import jalview.datamodel.SearchResultsI;
32 import jalview.datamodel.Sequence;
33 import jalview.datamodel.SequenceFeature;
34 import jalview.datamodel.SequenceGroup;
35 import jalview.datamodel.SequenceI;
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;
46
47 import java.awt.BorderLayout;
48 import java.awt.Font;
49 import java.awt.FontMetrics;
50 import java.awt.Panel;
51 import java.awt.Point;
52 import java.awt.event.InputEvent;
53 import java.awt.event.MouseEvent;
54 import java.awt.event.MouseListener;
55 import java.awt.event.MouseMotionListener;
56 import java.util.Collections;
57 import java.util.List;
58 import java.util.Vector;
59
60 public class SeqPanel extends Panel implements MouseMotionListener,
61         MouseListener, SequenceListener, SelectionListener
62 {
63
64   public SeqCanvas seqCanvas;
65
66   public AlignmentPanel ap;
67
68   protected int lastres;
69
70   protected int startseq;
71
72   protected AlignViewport av;
73
74   // if character is inserted or deleted, we will need to recalculate the
75   // conservation
76   boolean seqEditOccurred = false;
77
78   ScrollThread scrollThread = null;
79
80   boolean mouseDragging = false;
81
82   boolean editingSeqs = false;
83
84   boolean groupEditing = false;
85
86   int oldSeq = -1;
87
88   boolean changeEndSeq = false;
89
90   boolean changeStartSeq = false;
91
92   boolean changeEndRes = false;
93
94   boolean changeStartRes = false;
95
96   SequenceGroup stretchGroup = null;
97
98   StringBuffer keyboardNo1;
99
100   StringBuffer keyboardNo2;
101
102   boolean mouseWheelPressed = false;
103
104   Point lastMousePress;
105
106   EditCommand editCommand;
107
108   StructureSelectionManager ssm;
109
110   public SeqPanel(AlignViewport avp, AlignmentPanel p)
111   {
112     this.av = avp;
113
114     seqCanvas = new SeqCanvas(avp);
115     setLayout(new BorderLayout());
116     add(seqCanvas);
117
118     ap = p;
119
120     seqCanvas.addMouseMotionListener(this);
121     seqCanvas.addMouseListener(this);
122     ssm = StructureSelectionManager.getStructureSelectionManager(av.applet);
123     ssm.addStructureViewerListener(this);
124     ssm.addSelectionListener(this);
125
126     seqCanvas.repaint();
127   }
128
129   void endEditing()
130   {
131     if (editCommand != null && editCommand.getSize() > 0)
132     {
133       ap.alignFrame.addHistoryItem(editCommand);
134       av.firePropertyChange("alignment", null,
135               av.getAlignment().getSequences());
136     }
137
138     startseq = -1;
139     lastres = -1;
140     editingSeqs = false;
141     groupEditing = false;
142     keyboardNo1 = null;
143     keyboardNo2 = null;
144     editCommand = null;
145   }
146
147   void setCursorRow()
148   {
149     seqCanvas.cursorY = getKeyboardNo1() - 1;
150     scrollToVisible(true);
151   }
152
153   void setCursorColumn()
154   {
155     seqCanvas.cursorX = getKeyboardNo1() - 1;
156     scrollToVisible(true);
157   }
158
159   void setCursorRowAndColumn()
160   {
161     if (keyboardNo2 == null)
162     {
163       keyboardNo2 = new StringBuffer();
164     }
165     else
166     {
167       seqCanvas.cursorX = getKeyboardNo1() - 1;
168       seqCanvas.cursorY = getKeyboardNo2() - 1;
169       scrollToVisible(true);
170     }
171   }
172
173   void setCursorPosition()
174   {
175     SequenceI sequence = av.getAlignment().getSequenceAt(seqCanvas.cursorY);
176
177     seqCanvas.cursorX = sequence.findIndex(getKeyboardNo1()) - 1;
178     scrollToVisible(true);
179   }
180
181   void moveCursor(int dx, int dy)
182   {
183     seqCanvas.cursorX += dx;
184     seqCanvas.cursorY += dy;
185     if (av.hasHiddenColumns() && !av.getAlignment().getHiddenColumns()
186             .isVisible(seqCanvas.cursorX))
187     {
188       int original = seqCanvas.cursorX - dx;
189       int maxWidth = av.getAlignment().getWidth();
190
191       while (!av.getAlignment().getHiddenColumns()
192               .isVisible(seqCanvas.cursorX) && seqCanvas.cursorX < maxWidth
193               && seqCanvas.cursorX > 0)
194       {
195         seqCanvas.cursorX += dx;
196       }
197
198       if (seqCanvas.cursorX >= maxWidth || !av.getAlignment()
199               .getHiddenColumns().isVisible(seqCanvas.cursorX))
200       {
201         seqCanvas.cursorX = original;
202       }
203     }
204     scrollToVisible(false);
205   }
206
207   /**
208    * Scroll to make the cursor visible in the viewport.
209    * 
210    * @param jump
211    *          just jump to the location rather than scrolling
212    */
213   void scrollToVisible(boolean jump)
214   {
215     if (seqCanvas.cursorX < 0)
216     {
217       seqCanvas.cursorX = 0;
218     }
219     else if (seqCanvas.cursorX > av.getAlignment().getWidth() - 1)
220     {
221       seqCanvas.cursorX = av.getAlignment().getWidth() - 1;
222     }
223
224     if (seqCanvas.cursorY < 0)
225     {
226       seqCanvas.cursorY = 0;
227     }
228     else if (seqCanvas.cursorY > av.getAlignment().getHeight() - 1)
229     {
230       seqCanvas.cursorY = av.getAlignment().getHeight() - 1;
231     }
232
233     endEditing();
234
235     boolean repaintNeeded = true;
236     if (jump)
237     {
238       // only need to repaint if the viewport did not move, as otherwise it will
239       // get a repaint
240       repaintNeeded = !av.getRanges().setViewportLocation(seqCanvas.cursorX,
241               seqCanvas.cursorY);
242     }
243     else
244     {
245       if (av.getWrapAlignment())
246       {
247         av.getRanges().scrollToWrappedVisible(seqCanvas.cursorX);
248       }
249       else
250       {
251         av.getRanges().scrollToVisible(seqCanvas.cursorX,
252                 seqCanvas.cursorY);
253       }
254     }
255     setStatusMessage(av.getAlignment().getSequenceAt(seqCanvas.cursorY),
256             seqCanvas.cursorX, seqCanvas.cursorY);
257
258     if (repaintNeeded)
259     {
260       seqCanvas.repaint();
261     }
262   }
263
264   void setSelectionAreaAtCursor(boolean topLeft)
265   {
266     SequenceI sequence = av.getAlignment().getSequenceAt(seqCanvas.cursorY);
267
268     if (av.getSelectionGroup() != null)
269     {
270       SequenceGroup sg = av.getSelectionGroup();
271       // Find the top and bottom of this group
272       int min = av.getAlignment().getHeight(), max = 0;
273       for (int i = 0; i < sg.getSize(); i++)
274       {
275         int index = av.getAlignment().findIndex(sg.getSequenceAt(i));
276         if (index > max)
277         {
278           max = index;
279         }
280         if (index < min)
281         {
282           min = index;
283         }
284       }
285
286       max++;
287
288       if (topLeft)
289       {
290         sg.setStartRes(seqCanvas.cursorX);
291         if (sg.getEndRes() < seqCanvas.cursorX)
292         {
293           sg.setEndRes(seqCanvas.cursorX);
294         }
295
296         min = seqCanvas.cursorY;
297       }
298       else
299       {
300         sg.setEndRes(seqCanvas.cursorX);
301         if (sg.getStartRes() > seqCanvas.cursorX)
302         {
303           sg.setStartRes(seqCanvas.cursorX);
304         }
305
306         max = seqCanvas.cursorY + 1;
307       }
308
309       if (min > max)
310       {
311         // Only the user can do this
312         av.setSelectionGroup(null);
313       }
314       else
315       {
316         // Now add any sequences between min and max
317         sg.clear();
318         for (int i = min; i < max; i++)
319         {
320           sg.addSequence(av.getAlignment().getSequenceAt(i), false);
321         }
322       }
323     }
324
325     if (av.getSelectionGroup() == null)
326     {
327       SequenceGroup sg = new SequenceGroup();
328       sg.setStartRes(seqCanvas.cursorX);
329       sg.setEndRes(seqCanvas.cursorX);
330       sg.addSequence(sequence, false);
331       av.setSelectionGroup(sg);
332     }
333     ap.paintAlignment(false, false);
334     av.sendSelection();
335   }
336
337   void insertGapAtCursor(boolean group)
338   {
339     groupEditing = group;
340     startseq = seqCanvas.cursorY;
341     lastres = seqCanvas.cursorX;
342     editSequence(true, seqCanvas.cursorX + getKeyboardNo1());
343     endEditing();
344   }
345
346   void deleteGapAtCursor(boolean group)
347   {
348     groupEditing = group;
349     startseq = seqCanvas.cursorY;
350     lastres = seqCanvas.cursorX + getKeyboardNo1();
351     editSequence(false, seqCanvas.cursorX);
352     endEditing();
353   }
354
355   void numberPressed(char value)
356   {
357     if (keyboardNo1 == null)
358     {
359       keyboardNo1 = new StringBuffer();
360     }
361
362     if (keyboardNo2 != null)
363     {
364       keyboardNo2.append(value);
365     }
366     else
367     {
368       keyboardNo1.append(value);
369     }
370   }
371
372   int getKeyboardNo1()
373   {
374     try
375     {
376       if (keyboardNo1 != null)
377       {
378         int value = Integer.parseInt(keyboardNo1.toString());
379         keyboardNo1 = null;
380         return value;
381       }
382     } catch (Exception x)
383     {
384     }
385     keyboardNo1 = null;
386     return 1;
387   }
388
389   int getKeyboardNo2()
390   {
391     try
392     {
393       if (keyboardNo2 != null)
394       {
395         int value = Integer.parseInt(keyboardNo2.toString());
396         keyboardNo2 = null;
397         return value;
398       }
399     } catch (Exception x)
400     {
401     }
402     keyboardNo2 = null;
403     return 1;
404   }
405
406   /**
407    * Set status message in alignment panel
408    * 
409    * @param sequence
410    *          aligned sequence object
411    * @param column
412    *          alignment column
413    * @param seq
414    *          index of sequence in alignment
415    */
416   void setStatusMessage(SequenceI sequence, int column, int seq)
417   {
418     // TODO remove duplication of identical gui method
419     StringBuilder text = new StringBuilder(32);
420     String seqno = seq == -1 ? "" : " " + (seq + 1);
421     text.append("Sequence" + seqno + " ID: " + sequence.getName());
422
423     String residue = null;
424     /*
425      * Try to translate the display character to residue name (null for gap).
426      */
427     final String displayChar = String.valueOf(sequence.getCharAt(column));
428     if (av.getAlignment().isNucleotide())
429     {
430       residue = ResidueProperties.nucleotideName.get(displayChar);
431       if (residue != null)
432       {
433         text.append(" Nucleotide: ").append(residue);
434       }
435     }
436     else
437     {
438       residue = "X".equalsIgnoreCase(displayChar) ? "X"
439               : ("*".equals(displayChar) ? "STOP"
440                       : ResidueProperties.aa2Triplet.get(displayChar));
441       if (residue != null)
442       {
443         text.append(" Residue: ").append(residue);
444       }
445     }
446
447     int pos = -1;
448     if (residue != null)
449     {
450       pos = sequence.findPosition(column);
451       text.append(" (").append(Integer.toString(pos)).append(")");
452     }
453
454     ap.alignFrame.statusBar.setText(text.toString());
455   }
456
457   /**
458    * Set the status bar message to highlight the first matched position in
459    * search results.
460    * 
461    * @param results
462    * @return true if results were matched, false if not
463    */
464   private boolean setStatusMessage(SearchResultsI results)
465   {
466     AlignmentI al = this.av.getAlignment();
467     int sequenceIndex = al.findIndex(results);
468     if (sequenceIndex == -1)
469     {
470       return false;
471     }
472     SequenceI ds = al.getSequenceAt(sequenceIndex).getDatasetSequence();
473     for (SearchResultMatchI m : results.getResults())
474     {
475       SequenceI seq = m.getSequence();
476       if (seq.getDatasetSequence() != null)
477       {
478         seq = seq.getDatasetSequence();
479       }
480
481       if (seq == ds)
482       {
483         /*
484          * Convert position in sequence (base 1) to sequence character array
485          * index (base 0)
486          */
487         int start = m.getStart() - m.getSequence().getStart();
488         setStatusMessage(seq, start, sequenceIndex);
489         return true;
490       }
491     }
492     return false;
493   }
494
495   @Override
496   public void mousePressed(MouseEvent evt)
497   {
498     lastMousePress = evt.getPoint();
499
500     // For now, ignore the mouseWheel font resizing on Macs
501     // As the Button2_mask always seems to be true
502     if ((evt.getModifiersEx()
503             & InputEvent.BUTTON2_DOWN_MASK) == InputEvent.BUTTON2_DOWN_MASK
504             && !av.MAC)
505     {
506       mouseWheelPressed = true;
507       return;
508     }
509
510     if (evt.isShiftDown() || evt.isControlDown() || evt.isAltDown())
511     {
512       if (evt.isControlDown() || evt.isAltDown())
513       {
514         groupEditing = true;
515       }
516       editingSeqs = true;
517     }
518     else
519     {
520       doMousePressedDefineMode(evt);
521       return;
522     }
523
524     int seq = findSeq(evt);
525     int res = findColumn(evt);
526
527     if (seq < 0 || res < 0)
528     {
529       return;
530     }
531
532     if ((seq < av.getAlignment().getHeight())
533             && (res < av.getAlignment().getSequenceAt(seq).getLength()))
534     {
535       startseq = seq;
536       lastres = res;
537     }
538     else
539     {
540       startseq = -1;
541       lastres = -1;
542     }
543
544     return;
545   }
546
547   @Override
548   public void mouseClicked(MouseEvent evt)
549   {
550     SequenceI sequence = av.getAlignment().getSequenceAt(findSeq(evt));
551     if (evt.getClickCount() > 1)
552     {
553       if (av.getSelectionGroup() != null
554               && av.getSelectionGroup().getSize() == 1
555               && av.getSelectionGroup().getEndRes()
556                       - av.getSelectionGroup().getStartRes() < 2)
557       {
558         av.setSelectionGroup(null);
559       }
560
561       int column = findColumn(evt);
562       List<SequenceFeature> features = findFeaturesAtColumn(sequence,
563               column + 1);
564
565       if (!features.isEmpty())
566       {
567         SearchResultsI highlight = new SearchResults();
568         highlight.addResult(sequence, features.get(0).getBegin(),
569                 features.get(0).getEnd());
570         seqCanvas.highlightSearchResults(highlight);
571         seqCanvas.getFeatureRenderer().amendFeatures(
572                 Collections.singletonList(sequence), features, false, ap);
573         av.setSearchResults(null); // clear highlighting
574         seqCanvas.repaint(); // draw new/amended features
575       }
576     }
577   }
578
579   @Override
580   public void mouseReleased(MouseEvent evt)
581   {
582     boolean didDrag = mouseDragging; // did we come here after a drag
583     mouseDragging = false;
584     mouseWheelPressed = false;
585
586     if (!editingSeqs)
587     {
588       doMouseReleasedDefineMode(evt, didDrag);
589       return;
590     }
591
592     endEditing();
593
594   }
595
596   int startWrapBlock = -1;
597
598   int wrappedBlock = -1;
599
600   /**
601    * Returns the aligned sequence position (base 0) at the mouse position, or
602    * the closest visible one
603    * 
604    * @param evt
605    * @return
606    */
607   int findColumn(MouseEvent evt)
608   {
609     int res = 0;
610     int x = evt.getX();
611
612     int startRes = av.getRanges().getStartRes();
613     if (av.getWrapAlignment())
614     {
615
616       int hgap = av.getCharHeight();
617       if (av.getScaleAboveWrapped())
618       {
619         hgap += av.getCharHeight();
620       }
621
622       int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
623               + hgap + seqCanvas.getAnnotationHeight();
624
625       int y = evt.getY();
626       y -= hgap;
627       x = Math.max(0, x - seqCanvas.LABEL_WEST);
628
629       int cwidth = seqCanvas.getWrappedCanvasWidth(getSize().width);
630       if (cwidth < 1)
631       {
632         return 0;
633       }
634
635       wrappedBlock = y / cHeight;
636       wrappedBlock += startRes / cwidth;
637       int startOffset = startRes % cwidth; // in case start is scrolled right
638                                            // from 0
639       res = wrappedBlock * cwidth + startOffset
640               + +Math.min(cwidth - 1, x / av.getCharWidth());
641     }
642     else
643     {
644       res = (x / av.getCharWidth()) + startRes;
645     }
646
647     if (av.hasHiddenColumns())
648     {
649       res = av.getAlignment().getHiddenColumns()
650               .visibleToAbsoluteColumn(res);
651     }
652
653     return res;
654
655   }
656
657   int findSeq(MouseEvent evt)
658   {
659     final int sqnum = findAlRow(evt);
660     return (sqnum < 0) ? 0 : sqnum;
661   }
662
663   /**
664    * 
665    * @param evt
666    * @return row in alignment that was selected (or -1 for column selection)
667    */
668   private int findAlRow(MouseEvent evt)
669   {
670     int seq = 0;
671     int y = evt.getY();
672
673     if (av.getWrapAlignment())
674     {
675       int hgap = av.getCharHeight();
676       if (av.getScaleAboveWrapped())
677       {
678         hgap += av.getCharHeight();
679       }
680
681       int cHeight = av.getAlignment().getHeight() * av.getCharHeight()
682               + hgap + seqCanvas.getAnnotationHeight();
683
684       y -= hgap;
685
686       seq = Math.min((y % cHeight) / av.getCharHeight(),
687               av.getAlignment().getHeight() - 1);
688       if (seq < 0)
689       {
690         seq = -1;
691       }
692     }
693     else
694     {
695       seq = Math.min(
696               (y / av.getCharHeight()) + av.getRanges().getStartSeq(),
697               av.getAlignment().getHeight() - 1);
698       if (seq < 0)
699       {
700         seq = -1;
701       }
702     }
703
704     return seq;
705   }
706
707   public void doMousePressed(MouseEvent evt)
708   {
709
710     int seq = findSeq(evt);
711     int res = findColumn(evt);
712
713     if (seq < av.getAlignment().getHeight()
714             && res < av.getAlignment().getSequenceAt(seq).getLength())
715     {
716       // char resstr = align.getSequenceAt(seq).getSequence().charAt(res);
717       // Find the residue's position in the sequence (res is the position
718       // in the alignment
719
720       startseq = seq;
721       lastres = res;
722     }
723     else
724     {
725       startseq = -1;
726       lastres = -1;
727     }
728
729     return;
730   }
731
732   String lastMessage;
733
734   @Override
735   public void mouseOverSequence(SequenceI sequence, int index, int pos)
736   {
737     String tmp = sequence.hashCode() + index + "";
738     if (lastMessage == null || !lastMessage.equals(tmp))
739     {
740       ssm.mouseOverSequence(sequence, index, pos, av);
741     }
742
743     lastMessage = tmp;
744   }
745
746   @Override
747   public void highlightSequence(SearchResultsI results)
748   {
749     if (av.isFollowHighlight())
750     {
751       // don't allow highlight of protein/cDNA to also scroll a complementary
752       // panel,as this sets up a feedback loop (scrolling panel 1 causes moused
753       // over residue to change abruptly, causing highlighted residue in panel 2
754       // to change, causing a scroll in panel 1 etc)
755       ap.setToScrollComplementPanel(false);
756       if (ap.scrollToPosition(results, true))
757       {
758         ap.alignFrame.repaint();
759       }
760       ap.setToScrollComplementPanel(true);
761     }
762     setStatusMessage(results);
763     seqCanvas.highlightSearchResults(results);
764
765   }
766
767   @Override
768   public VamsasSource getVamsasSource()
769   {
770     return this.ap == null ? null : this.ap.av;
771   }
772
773   @Override
774   public void updateColours(SequenceI seq, int index)
775   {
776     System.out.println("update the seqPanel colours");
777     // repaint();
778   }
779
780   @Override
781   public void mouseMoved(MouseEvent evt)
782   {
783     final int column = findColumn(evt);
784     int seq = findSeq(evt);
785
786     if (seq >= av.getAlignment().getHeight() || seq < 0 || column < 0)
787     {
788       if (tooltip != null)
789       {
790         tooltip.setTip("");
791       }
792       return;
793     }
794
795     SequenceI sequence = av.getAlignment().getSequenceAt(seq);
796     if (column > sequence.getLength())
797     {
798       if (tooltip != null)
799       {
800         tooltip.setTip("");
801       }
802       return;
803     }
804
805     final char ch = sequence.getCharAt(column);
806     boolean isGapped = Comparison.isGap(ch);
807     // find residue at column (or nearest if at a gap)
808     int respos = sequence.findPosition(column);
809
810     if (ssm != null && !isGapped)
811     {
812       mouseOverSequence(sequence, column, respos);
813     }
814
815     StringBuilder text = new StringBuilder();
816     text.append("Sequence ").append(Integer.toString(seq + 1))
817             .append(" ID: ").append(sequence.getName());
818
819     if (!isGapped)
820     {
821       if (av.getAlignment().isNucleotide())
822       {
823         String base = ResidueProperties.nucleotideName.get(ch);
824         text.append(" Nucleotide: ").append(base == null ? ch : base);
825       }
826       else
827       {
828         String residue = (ch == 'x' || ch == 'X') ? "X"
829                 : ResidueProperties.aa2Triplet.get(String.valueOf(ch));
830         text.append(" Residue: ").append(residue == null ? ch : residue);
831       }
832       text.append(" (").append(Integer.toString(respos)).append(")");
833     }
834
835     ap.alignFrame.statusBar.setText(text.toString());
836
837     StringBuilder tooltipText = new StringBuilder();
838     SequenceGroup[] groups = av.getAlignment().findAllGroups(sequence);
839     if (groups != null)
840     {
841       for (int g = 0; g < groups.length; g++)
842       {
843         if (groups[g].getStartRes() <= column
844                 && groups[g].getEndRes() >= column)
845         {
846           if (!groups[g].getName().startsWith("JTreeGroup")
847                   && !groups[g].getName().startsWith("JGroup"))
848           {
849             tooltipText.append(groups[g].getName()).append(" ");
850           }
851           if (groups[g].getDescription() != null)
852           {
853             tooltipText.append(groups[g].getDescription());
854           }
855           tooltipText.append("\n");
856         }
857       }
858     }
859
860     /*
861      * add feature details to tooltip, including any that straddle
862      * a gapped position
863      */
864     if (av.isShowSequenceFeatures())
865     {
866       List<SequenceFeature> allFeatures = findFeaturesAtColumn(sequence,
867               column + 1);
868       for (SequenceFeature sf : allFeatures)
869       {
870         tooltipText.append(sf.getType() + " " + sf.begin + ":" + sf.end);
871
872         if (sf.getDescription() != null)
873         {
874           tooltipText.append(" " + sf.getDescription());
875         }
876
877         if (sf.getValue("status") != null)
878         {
879           String status = sf.getValue("status").toString();
880           if (status.length() > 0)
881           {
882             tooltipText.append(" (" + sf.getValue("status") + ")");
883           }
884         }
885         tooltipText.append("\n");
886       }
887     }
888
889     if (tooltip == null)
890     {
891       tooltip = new Tooltip(tooltipText.toString(), seqCanvas);
892     }
893     else
894     {
895       tooltip.setTip(tooltipText.toString());
896     }
897   }
898
899   /**
900    * Returns features at the specified aligned column on the given sequence.
901    * Non-positional features are not included. If the column has a gap, then
902    * enclosing features are included (but not contact features).
903    * 
904    * @param sequence
905    * @param column
906    *          (1..)
907    * @return
908    */
909   List<SequenceFeature> findFeaturesAtColumn(SequenceI sequence, int column)
910   {
911     return seqCanvas.getFeatureRenderer().findFeaturesAtColumn(sequence, column);
912   }
913
914   Tooltip tooltip;
915
916   /**
917    * set when the current UI interaction has resulted in a change that requires
918    * overview shading to be recalculated. this could be changed to something
919    * more expressive that indicates what actually has changed, so selective
920    * redraws can be applied
921    */
922   private boolean needOverviewUpdate; // TODO: refactor to avcontroller
923
924   @Override
925   public void mouseDragged(MouseEvent evt)
926   {
927     if (mouseWheelPressed)
928     {
929       int oldWidth = av.getCharWidth();
930
931       // Which is bigger, left-right or up-down?
932       if (Math.abs(evt.getY() - lastMousePress.y) > Math
933               .abs(evt.getX() - lastMousePress.x))
934       {
935         int fontSize = av.font.getSize();
936
937         if (evt.getY() < lastMousePress.y && av.getCharHeight() > 1)
938         {
939           fontSize--;
940         }
941         else if (evt.getY() > lastMousePress.y)
942         {
943           fontSize++;
944         }
945
946         if (fontSize < 1)
947         {
948           fontSize = 1;
949         }
950
951         av.setFont(
952                 new Font(av.font.getName(), av.font.getStyle(), fontSize),
953                 true);
954         av.setCharWidth(oldWidth);
955       }
956       else
957       {
958         if (evt.getX() < lastMousePress.x && av.getCharWidth() > 1)
959         {
960           av.setCharWidth(av.getCharWidth() - 1);
961         }
962         else if (evt.getX() > lastMousePress.x)
963         {
964           av.setCharWidth(av.getCharWidth() + 1);
965         }
966
967         if (av.getCharWidth() < 1)
968         {
969           av.setCharWidth(1);
970         }
971       }
972
973       ap.fontChanged();
974
975       FontMetrics fm = getFontMetrics(av.getFont());
976       av.validCharWidth = fm.charWidth('M') <= av.getCharWidth();
977
978       lastMousePress = evt.getPoint();
979
980       ap.paintAlignment(false, false);
981       ap.annotationPanel.image = null;
982       return;
983     }
984
985     if (!editingSeqs)
986     {
987       doMouseDraggedDefineMode(evt);
988       return;
989     }
990
991     int res = findColumn(evt);
992
993     if (res < 0)
994     {
995       res = 0;
996     }
997
998     if ((lastres == -1) || (lastres == res))
999     {
1000       return;
1001     }
1002
1003     if ((res < av.getAlignment().getWidth()) && (res < lastres))
1004     {
1005       // dragLeft, delete gap
1006       editSequence(false, res);
1007     }
1008     else
1009     {
1010       editSequence(true, res);
1011     }
1012
1013     mouseDragging = true;
1014     if (scrollThread != null)
1015     {
1016       scrollThread.setEvent(evt);
1017     }
1018
1019   }
1020
1021   synchronized void editSequence(boolean insertGap, int startres)
1022   {
1023     int fixedLeft = -1;
1024     int fixedRight = -1;
1025     boolean fixedColumns = false;
1026     SequenceGroup sg = av.getSelectionGroup();
1027
1028     SequenceI seq = av.getAlignment().getSequenceAt(startseq);
1029
1030     if (!groupEditing && av.hasHiddenRows())
1031     {
1032       if (av.isHiddenRepSequence(seq))
1033       {
1034         sg = av.getRepresentedSequences(seq);
1035         groupEditing = true;
1036       }
1037     }
1038
1039     StringBuffer message = new StringBuffer();
1040     if (groupEditing)
1041     {
1042       message.append(MessageManager.getString("action.edit_group"))
1043               .append(":");
1044       if (editCommand == null)
1045       {
1046         editCommand = new EditCommand(
1047                 MessageManager.getString("action.edit_group"));
1048       }
1049     }
1050     else
1051     {
1052       message.append(MessageManager.getString("label.edit_sequence"))
1053               .append(" " + seq.getName());
1054       String label = seq.getName();
1055       if (label.length() > 10)
1056       {
1057         label = label.substring(0, 10);
1058       }
1059       if (editCommand == null)
1060       {
1061         editCommand = new EditCommand(MessageManager
1062                 .formatMessage("label.edit_params", new String[]
1063                 { label }));
1064       }
1065     }
1066
1067     if (insertGap)
1068     {
1069       message.append(" insert ");
1070     }
1071     else
1072     {
1073       message.append(" delete ");
1074     }
1075
1076     message.append(Math.abs(startres - lastres) + " gaps.");
1077     ap.alignFrame.statusBar.setText(message.toString());
1078
1079     // Are we editing within a selection group?
1080     if (groupEditing || (sg != null
1081             && sg.getSequences(av.getHiddenRepSequences()).contains(seq)))
1082     {
1083       fixedColumns = true;
1084
1085       // sg might be null as the user may only see 1 sequence,
1086       // but the sequence represents a group
1087       if (sg == null)
1088       {
1089         if (!av.isHiddenRepSequence(seq))
1090         {
1091           endEditing();
1092           return;
1093         }
1094
1095         sg = av.getRepresentedSequences(seq);
1096       }
1097
1098       fixedLeft = sg.getStartRes();
1099       fixedRight = sg.getEndRes();
1100
1101       if ((startres < fixedLeft && lastres >= fixedLeft)
1102               || (startres >= fixedLeft && lastres < fixedLeft)
1103               || (startres > fixedRight && lastres <= fixedRight)
1104               || (startres <= fixedRight && lastres > fixedRight))
1105       {
1106         endEditing();
1107         return;
1108       }
1109
1110       if (fixedLeft > startres)
1111       {
1112         fixedRight = fixedLeft - 1;
1113         fixedLeft = 0;
1114       }
1115       else if (fixedRight < startres)
1116       {
1117         fixedLeft = fixedRight;
1118         fixedRight = -1;
1119       }
1120     }
1121
1122     if (av.hasHiddenColumns())
1123     {
1124       fixedColumns = true;
1125       int y1 = av.getAlignment().getHiddenColumns()
1126               .getNextHiddenBoundary(true, startres);
1127       int y2 = av.getAlignment().getHiddenColumns()
1128               .getNextHiddenBoundary(false, startres);
1129
1130       if ((insertGap && startres > y1 && lastres < y1)
1131               || (!insertGap && startres < y2 && lastres > y2))
1132       {
1133         endEditing();
1134         return;
1135       }
1136
1137       // System.out.print(y1+" "+y2+" "+fixedLeft+" "+fixedRight+"~~");
1138       // Selection spans a hidden region
1139       if (fixedLeft < y1 && (fixedRight > y2 || fixedRight == -1))
1140       {
1141         if (startres >= y2)
1142         {
1143           fixedLeft = y2;
1144         }
1145         else
1146         {
1147           fixedRight = y2 - 1;
1148         }
1149       }
1150     }
1151
1152     if (groupEditing)
1153     {
1154       SequenceI[] groupSeqs = sg.getSequences(av.getHiddenRepSequences())
1155               .toArray(new SequenceI[0]);
1156
1157       // drag to right
1158       if (insertGap)
1159       {
1160         // If the user has selected the whole sequence, and is dragging to
1161         // the right, we can still extend the alignment and selectionGroup
1162         if (sg.getStartRes() == 0 && sg.getEndRes() == fixedRight
1163                 && sg.getEndRes() == av.getAlignment().getWidth() - 1)
1164         {
1165           sg.setEndRes(av.getAlignment().getWidth() + startres - lastres);
1166           fixedRight = sg.getEndRes();
1167         }
1168
1169         // Is it valid with fixed columns??
1170         // Find the next gap before the end
1171         // of the visible region boundary
1172         boolean blank = false;
1173         for (; fixedRight > lastres; fixedRight--)
1174         {
1175           blank = true;
1176
1177           for (SequenceI gs : groupSeqs)
1178           {
1179             for (int j = 0; j < startres - lastres; j++)
1180             {
1181               if (!jalview.util.Comparison
1182                       .isGap(gs.getCharAt(fixedRight - j)))
1183               {
1184                 blank = false;
1185                 break;
1186               }
1187             }
1188           }
1189           if (blank)
1190           {
1191             break;
1192           }
1193         }
1194
1195         if (!blank)
1196         {
1197           if (sg.getSize() == av.getAlignment().getHeight())
1198           {
1199             if ((av.hasHiddenColumns() && startres < av.getAlignment()
1200                     .getHiddenColumns()
1201                     .getNextHiddenBoundary(false, startres)))
1202             {
1203               endEditing();
1204               return;
1205             }
1206
1207             int alWidth = av.getAlignment().getWidth();
1208             if (av.hasHiddenRows())
1209             {
1210               int hwidth = av.getAlignment().getHiddenSequences()
1211                       .getWidth();
1212               if (hwidth > alWidth)
1213               {
1214                 alWidth = hwidth;
1215               }
1216             }
1217             // We can still insert gaps if the selectionGroup
1218             // contains all the sequences
1219             sg.setEndRes(sg.getEndRes() + startres - lastres);
1220             fixedRight = alWidth + startres - lastres;
1221           }
1222           else
1223           {
1224             endEditing();
1225             return;
1226           }
1227         }
1228       }
1229
1230       // drag to left
1231       else if (!insertGap)
1232       {
1233         // / Are we able to delete?
1234         // ie are all columns blank?
1235
1236         for (SequenceI gs : groupSeqs)
1237         {
1238           for (int j = startres; j < lastres; j++)
1239           {
1240             if (gs.getLength() <= j)
1241             {
1242               continue;
1243             }
1244
1245             if (!jalview.util.Comparison.isGap(gs.getCharAt(j)))
1246             {
1247               // Not a gap, block edit not valid
1248               endEditing();
1249               return;
1250             }
1251           }
1252         }
1253       }
1254
1255       if (insertGap)
1256       {
1257         // dragging to the right
1258         if (fixedColumns && fixedRight != -1)
1259         {
1260           for (int j = lastres; j < startres; j++)
1261           {
1262             insertChar(j, groupSeqs, fixedRight);
1263           }
1264         }
1265         else
1266         {
1267           editCommand.appendEdit(Action.INSERT_GAP, groupSeqs, startres,
1268                   startres - lastres, av.getAlignment(), true);
1269         }
1270       }
1271       else
1272       {
1273         // dragging to the left
1274         if (fixedColumns && fixedRight != -1)
1275         {
1276           for (int j = lastres; j > startres; j--)
1277           {
1278             deleteChar(startres, groupSeqs, fixedRight);
1279           }
1280         }
1281         else
1282         {
1283           editCommand.appendEdit(Action.DELETE_GAP, groupSeqs, startres,
1284                   lastres - startres, av.getAlignment(), true);
1285         }
1286
1287       }
1288     }
1289     else
1290     // ///Editing a single sequence///////////
1291     {
1292       if (insertGap)
1293       {
1294         // dragging to the right
1295         if (fixedColumns && fixedRight != -1)
1296         {
1297           for (int j = lastres; j < startres; j++)
1298           {
1299             insertChar(j, new SequenceI[] { seq }, fixedRight);
1300           }
1301         }
1302         else
1303         {
1304           editCommand.appendEdit(Action.INSERT_GAP, new SequenceI[] { seq },
1305                   lastres, startres - lastres, av.getAlignment(), true);
1306         }
1307       }
1308       else
1309       {
1310         // dragging to the left
1311         if (fixedColumns && fixedRight != -1)
1312         {
1313           for (int j = lastres; j > startres; j--)
1314           {
1315             if (!jalview.util.Comparison.isGap(seq.getCharAt(startres)))
1316             {
1317               endEditing();
1318               break;
1319             }
1320             deleteChar(startres, new SequenceI[] { seq }, fixedRight);
1321           }
1322         }
1323         else
1324         {
1325           // could be a keyboard edit trying to delete none gaps
1326           int max = 0;
1327           for (int m = startres; m < lastres; m++)
1328           {
1329             if (!jalview.util.Comparison.isGap(seq.getCharAt(m)))
1330             {
1331               break;
1332             }
1333             max++;
1334           }
1335
1336           if (max > 0)
1337           {
1338             editCommand.appendEdit(Action.DELETE_GAP,
1339                     new SequenceI[]
1340                     { seq }, startres, max, av.getAlignment(), true);
1341           }
1342         }
1343       }
1344     }
1345
1346     lastres = startres;
1347     seqCanvas.repaint();
1348   }
1349
1350   void insertChar(int j, SequenceI[] seq, int fixedColumn)
1351   {
1352     int blankColumn = fixedColumn;
1353     for (int s = 0; s < seq.length; s++)
1354     {
1355       // Find the next gap before the end of the visible region boundary
1356       // If lastCol > j, theres a boundary after the gap insertion
1357
1358       for (blankColumn = fixedColumn; blankColumn > j; blankColumn--)
1359       {
1360         if (jalview.util.Comparison.isGap(seq[s].getCharAt(blankColumn)))
1361         {
1362           // Theres a space, so break and insert the gap
1363           break;
1364         }
1365       }
1366
1367       if (blankColumn <= j)
1368       {
1369         blankColumn = fixedColumn;
1370         endEditing();
1371         return;
1372       }
1373     }
1374
1375     editCommand.appendEdit(Action.DELETE_GAP, seq, blankColumn, 1,
1376             av.getAlignment(), true);
1377
1378     editCommand.appendEdit(Action.INSERT_GAP, seq, j, 1, av.getAlignment(),
1379             true);
1380
1381   }
1382
1383   void deleteChar(int j, SequenceI[] seq, int fixedColumn)
1384   {
1385
1386     editCommand.appendEdit(Action.DELETE_GAP, seq, j, 1, av.getAlignment(),
1387             true);
1388
1389     editCommand.appendEdit(Action.INSERT_GAP, seq, fixedColumn, 1,
1390             av.getAlignment(), true);
1391   }
1392
1393   // ////////////////////////////////////////
1394   // ///Everything below this is for defining the boundary of the rubberband
1395   // ////////////////////////////////////////
1396   public void doMousePressedDefineMode(MouseEvent evt)
1397   {
1398     if (scrollThread != null)
1399     {
1400       scrollThread.threadRunning = false;
1401       scrollThread = null;
1402     }
1403
1404     int column = findColumn(evt);
1405     int seq = findSeq(evt);
1406     oldSeq = seq;
1407     startWrapBlock = wrappedBlock;
1408
1409     if (seq == -1)
1410     {
1411       return;
1412     }
1413
1414     SequenceI sequence = av.getAlignment().getSequenceAt(seq);
1415
1416     if (sequence == null || column > sequence.getLength())
1417     {
1418       return;
1419     }
1420
1421     stretchGroup = av.getSelectionGroup();
1422
1423     if (stretchGroup == null || !stretchGroup.contains(sequence, column))
1424     {
1425       stretchGroup = av.getAlignment().findGroup(sequence, column);
1426       if (stretchGroup != null)
1427       {
1428         // only update the current selection if the popup menu has a group to
1429         // focus on
1430         av.setSelectionGroup(stretchGroup);
1431       }
1432     }
1433
1434     // DETECT RIGHT MOUSE BUTTON IN AWT
1435     if ((evt.getModifiersEx()
1436             & InputEvent.BUTTON3_DOWN_MASK) == InputEvent.BUTTON3_DOWN_MASK)
1437     {
1438       List<SequenceFeature> allFeatures = findFeaturesAtColumn(sequence,
1439               sequence.findPosition(column + 1));
1440
1441       Vector<String> links = null;
1442       for (SequenceFeature sf : allFeatures)
1443       {
1444         if (sf.links != null)
1445         {
1446           if (links == null)
1447           {
1448             links = new Vector<>();
1449           }
1450           links.addAll(sf.links);
1451         }
1452       }
1453       APopupMenu popup = new APopupMenu(ap, null, links);
1454       this.add(popup);
1455       popup.show(this, evt.getX(), evt.getY());
1456       return;
1457     }
1458
1459     if (av.cursorMode)
1460     {
1461       seqCanvas.cursorX = findColumn(evt);
1462       seqCanvas.cursorY = findSeq(evt);
1463       seqCanvas.repaint();
1464       return;
1465     }
1466
1467     // Only if left mouse button do we want to change group sizes
1468
1469     if (stretchGroup == null)
1470     {
1471       // define a new group here
1472       SequenceGroup sg = new SequenceGroup();
1473       sg.setStartRes(column);
1474       sg.setEndRes(column);
1475       sg.addSequence(sequence, false);
1476       av.setSelectionGroup(sg);
1477       stretchGroup = sg;
1478
1479       if (av.getConservationSelected())
1480       {
1481         SliderPanel.setConservationSlider(ap, av.getResidueShading(),
1482                 ap.getViewName());
1483       }
1484       if (av.getAbovePIDThreshold())
1485       {
1486         SliderPanel.setPIDSliderSource(ap, av.getResidueShading(),
1487                 ap.getViewName());
1488       }
1489
1490     }
1491   }
1492
1493   public void doMouseReleasedDefineMode(MouseEvent evt, boolean afterDrag)
1494   {
1495     if (stretchGroup == null)
1496     {
1497       return;
1498     }
1499     // always do this - annotation has own state
1500     // but defer colourscheme update until hidden sequences are passed in
1501     boolean vischange = stretchGroup.recalcAnnotations(true);
1502     // here we rely on stretchGroup == av.getSelection()
1503     needOverviewUpdate |= vischange && av.isSelectionDefinedGroup()
1504             && afterDrag;
1505     if (stretchGroup.cs != null)
1506     {
1507       stretchGroup.cs.alignmentChanged(stretchGroup,
1508               av.getHiddenRepSequences());
1509
1510       if (stretchGroup.cs.conservationApplied())
1511       {
1512         SliderPanel.setConservationSlider(ap, stretchGroup.cs,
1513                 stretchGroup.getName());
1514       }
1515       if (stretchGroup.cs.getThreshold() > 0)
1516       {
1517         SliderPanel.setPIDSliderSource(ap, stretchGroup.cs,
1518                 stretchGroup.getName());
1519       }
1520     }
1521     PaintRefresher.Refresh(ap, av.getSequenceSetId());
1522     ap.paintAlignment(needOverviewUpdate, needOverviewUpdate);
1523     needOverviewUpdate = false;
1524     changeEndRes = false;
1525     changeStartRes = false;
1526     stretchGroup = null;
1527     av.sendSelection();
1528   }
1529
1530   public void doMouseDraggedDefineMode(MouseEvent evt)
1531   {
1532     int res = findColumn(evt);
1533     int y = findSeq(evt);
1534
1535     if (wrappedBlock != startWrapBlock)
1536     {
1537       return;
1538     }
1539
1540     if (stretchGroup == null)
1541     {
1542       return;
1543     }
1544
1545     mouseDragging = true;
1546
1547     if (y > av.getAlignment().getHeight())
1548     {
1549       y = av.getAlignment().getHeight() - 1;
1550     }
1551
1552     if (res >= av.getAlignment().getWidth())
1553     {
1554       res = av.getAlignment().getWidth() - 1;
1555     }
1556
1557     if (stretchGroup.getEndRes() == res)
1558     {
1559       // Edit end res position of selected group
1560       changeEndRes = true;
1561     }
1562     else if (stretchGroup.getStartRes() == res)
1563     {
1564       // Edit start res position of selected group
1565       changeStartRes = true;
1566     }
1567
1568     if (res < 0)
1569     {
1570       res = 0;
1571     }
1572
1573     if (changeEndRes)
1574     {
1575       if (res > (stretchGroup.getStartRes() - 1))
1576       {
1577         stretchGroup.setEndRes(res);
1578         needOverviewUpdate |= av.isSelectionDefinedGroup();
1579       }
1580     }
1581     else if (changeStartRes)
1582     {
1583       if (res < (stretchGroup.getEndRes() + 1))
1584       {
1585         stretchGroup.setStartRes(res);
1586         needOverviewUpdate |= av.isSelectionDefinedGroup();
1587       }
1588     }
1589
1590     int dragDirection = 0;
1591
1592     if (y > oldSeq)
1593     {
1594       dragDirection = 1;
1595     }
1596     else if (y < oldSeq)
1597     {
1598       dragDirection = -1;
1599     }
1600
1601     while ((y != oldSeq) && (oldSeq > -1)
1602             && (y < av.getAlignment().getHeight()))
1603     {
1604       // This routine ensures we don't skip any sequences, as the
1605       // selection is quite slow.
1606       Sequence seq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1607
1608       oldSeq += dragDirection;
1609
1610       if (oldSeq < 0)
1611       {
1612         break;
1613       }
1614
1615       Sequence nextSeq = (Sequence) av.getAlignment().getSequenceAt(oldSeq);
1616
1617       if (stretchGroup.getSequences(null).contains(nextSeq))
1618       {
1619         stretchGroup.deleteSequence(seq, false);
1620         needOverviewUpdate |= av.isSelectionDefinedGroup();
1621       }
1622       else
1623       {
1624         if (seq != null)
1625         {
1626           stretchGroup.addSequence(seq, false);
1627         }
1628
1629         stretchGroup.addSequence(nextSeq, false);
1630         needOverviewUpdate |= av.isSelectionDefinedGroup();
1631       }
1632     }
1633
1634     if (oldSeq < 0)
1635     {
1636       oldSeq = -1;
1637     }
1638
1639     if (res > av.getRanges().getEndRes()
1640             || res < av.getRanges().getStartRes()
1641             || y < av.getRanges().getStartSeq()
1642             || y > av.getRanges().getEndSeq())
1643     {
1644       mouseExited(evt);
1645     }
1646
1647     if ((scrollThread != null) && (scrollThread.isRunning()))
1648     {
1649       scrollThread.setEvent(evt);
1650     }
1651
1652     seqCanvas.repaint();
1653   }
1654
1655   @Override
1656   public void mouseEntered(MouseEvent e)
1657   {
1658     if (oldSeq < 0)
1659     {
1660       oldSeq = 0;
1661     }
1662
1663     if ((scrollThread != null) && (scrollThread.isRunning()))
1664     {
1665       scrollThread.stopScrolling();
1666       scrollThread = null;
1667     }
1668   }
1669
1670   @Override
1671   public void mouseExited(MouseEvent e)
1672   {
1673     if (av.getWrapAlignment())
1674     {
1675       return;
1676     }
1677
1678     if (mouseDragging && scrollThread == null)
1679     {
1680       scrollThread = new ScrollThread();
1681     }
1682   }
1683
1684   void scrollCanvas(MouseEvent evt)
1685   {
1686     if (evt == null)
1687     {
1688       if ((scrollThread != null) && (scrollThread.isRunning()))
1689       {
1690         scrollThread.stopScrolling();
1691         scrollThread = null;
1692       }
1693       mouseDragging = false;
1694     }
1695     else
1696     {
1697       if (scrollThread == null)
1698       {
1699         scrollThread = new ScrollThread();
1700       }
1701
1702       mouseDragging = true;
1703       scrollThread.setEvent(evt);
1704     }
1705
1706   }
1707
1708   // this class allows scrolling off the bottom of the visible alignment
1709   class ScrollThread extends Thread
1710   {
1711     MouseEvent evt;
1712
1713     private volatile boolean threadRunning = true;
1714
1715     public ScrollThread()
1716     {
1717       start();
1718     }
1719
1720     public void setEvent(MouseEvent e)
1721     {
1722       evt = e;
1723     }
1724
1725     public void stopScrolling()
1726     {
1727       threadRunning = false;
1728     }
1729
1730     public boolean isRunning()
1731     {
1732       return threadRunning;
1733     }
1734
1735     @Override
1736     public void run()
1737     {
1738       while (threadRunning)
1739       {
1740
1741         if (evt != null)
1742         {
1743
1744           if (mouseDragging && evt.getY() < 0
1745                   && av.getRanges().getStartSeq() > 0)
1746           {
1747             av.getRanges().scrollUp(true);
1748           }
1749
1750           if (mouseDragging && evt.getY() >= getSize().height && av
1751                   .getAlignment().getHeight() > av.getRanges().getEndSeq())
1752           {
1753             av.getRanges().scrollUp(false);
1754           }
1755
1756           if (mouseDragging && evt.getX() < 0)
1757           {
1758             av.getRanges().scrollRight(false);
1759           }
1760
1761           else if (mouseDragging && evt.getX() >= getSize().width)
1762           {
1763             av.getRanges().scrollRight(true);
1764           }
1765         }
1766
1767         try
1768         {
1769           Thread.sleep(75);
1770         } catch (Exception ex)
1771         {
1772         }
1773       }
1774     }
1775   }
1776
1777   /**
1778    * modify current selection according to a received message.
1779    */
1780   @Override
1781   public void selection(SequenceGroup seqsel, ColumnSelection colsel,
1782           HiddenColumns hidden, SelectionSource source)
1783   {
1784     // TODO: fix this hack - source of messages is align viewport, but SeqPanel
1785     // handles selection messages...
1786     // TODO: extend config options to allow user to control if selections may be
1787     // shared between viewports.
1788     if (av != null && (av == source || !av.followSelection
1789             || (source instanceof AlignViewport
1790                     && ((AlignmentViewport) source).getSequenceSetId()
1791                             .equals(av.getSequenceSetId()))))
1792     {
1793       return;
1794     }
1795
1796     /*
1797      * Check for selection in a view of which this one is a dna/protein
1798      * complement.
1799      */
1800     if (selectionFromTranslation(seqsel, colsel, hidden, source))
1801     {
1802       return;
1803     }
1804
1805     // do we want to thread this ? (contention with seqsel and colsel locks, I
1806     // suspect)
1807     /*
1808      * only copy colsel if there is a real intersection between
1809      * sequence selection and this panel's alignment
1810      */
1811     boolean repaint = false;
1812     boolean copycolsel = false;
1813     if (av.getSelectionGroup() == null || !av.isSelectionGroupChanged(true))
1814     {
1815       SequenceGroup sgroup = null;
1816       if (seqsel != null && seqsel.getSize() > 0)
1817       {
1818         if (av.getAlignment() == null)
1819         {
1820           System.out.println("Selection message: alignviewport av SeqSetId="
1821                   + av.getSequenceSetId() + " ViewId=" + av.getViewId()
1822                   + " 's alignment is NULL! returning immediatly.");
1823           return;
1824         }
1825         sgroup = seqsel.intersect(av.getAlignment(),
1826                 (av.hasHiddenRows()) ? av.getHiddenRepSequences() : null);
1827         if ((sgroup != null && sgroup.getSize() > 0))
1828         {
1829           copycolsel = true;
1830         }
1831       }
1832       if (sgroup != null && sgroup.getSize() > 0)
1833       {
1834         av.setSelectionGroup(sgroup);
1835       }
1836       else
1837       {
1838         av.setSelectionGroup(null);
1839       }
1840       repaint = av.isSelectionGroupChanged(true);
1841     }
1842     if (copycolsel && (av.getColumnSelection() == null
1843             || !av.isColSelChanged(true)))
1844     {
1845       // the current selection is unset or from a previous message
1846       // so import the new colsel.
1847       if (colsel == null || colsel.isEmpty())
1848       {
1849         if (av.getColumnSelection() != null)
1850         {
1851           av.getColumnSelection().clear();
1852         }
1853       }
1854       else
1855       {
1856         // TODO: shift colSel according to the intersecting sequences
1857         if (av.getColumnSelection() == null)
1858         {
1859           av.setColumnSelection(new ColumnSelection(colsel));
1860         }
1861         else
1862         {
1863           av.getColumnSelection().setElementsFrom(colsel,
1864                   av.getAlignment().getHiddenColumns());
1865         }
1866       }
1867       repaint |= av.isColSelChanged(true);
1868     }
1869     if (copycolsel && av.hasHiddenColumns()
1870             && (av.getColumnSelection() == null))
1871     {
1872       System.err.println("Bad things");
1873     }
1874     if (repaint)
1875     {
1876       ap.scalePanelHolder.repaint();
1877       ap.repaint();
1878     }
1879   }
1880
1881   /**
1882    * scroll to the given row/column - or nearest visible location
1883    * 
1884    * @param row
1885    * @param column
1886    */
1887   public void scrollTo(int row, int column)
1888   {
1889
1890     row = row < 0 ? ap.av.getRanges().getStartSeq() : row;
1891     column = column < 0 ? ap.av.getRanges().getStartRes() : column;
1892     ap.scrollTo(column, column, row, true, true);
1893   }
1894
1895   /**
1896    * scroll to the given row - or nearest visible location
1897    * 
1898    * @param row
1899    */
1900   public void scrollToRow(int row)
1901   {
1902
1903     row = row < 0 ? ap.av.getRanges().getStartSeq() : row;
1904     ap.scrollTo(ap.av.getRanges().getStartRes(),
1905             ap.av.getRanges().getStartRes(), row, true, true);
1906   }
1907
1908   /**
1909    * scroll to the given column - or nearest visible location
1910    * 
1911    * @param column
1912    */
1913   public void scrollToColumn(int column)
1914   {
1915
1916     column = column < 0 ? ap.av.getRanges().getStartRes() : column;
1917     ap.scrollTo(column, column, ap.av.getRanges().getStartSeq(), true,
1918             true);
1919   }
1920
1921   /**
1922    * If this panel is a cdna/protein translation view of the selection source,
1923    * tries to map the source selection to a local one, and returns true. Else
1924    * returns false.
1925    * 
1926    * @param seqsel
1927    * @param colsel
1928    * @param source
1929    */
1930   protected boolean selectionFromTranslation(SequenceGroup seqsel,
1931           ColumnSelection colsel, HiddenColumns hidden,
1932           SelectionSource source)
1933   {
1934     if (!(source instanceof AlignViewportI))
1935     {
1936       return false;
1937     }
1938     final AlignViewportI sourceAv = (AlignViewportI) source;
1939     if (sourceAv.getCodingComplement() != av
1940             && av.getCodingComplement() != sourceAv)
1941     {
1942       return false;
1943     }
1944
1945     /*
1946      * Map sequence selection
1947      */
1948     SequenceGroup sg = MappingUtils.mapSequenceGroup(seqsel, sourceAv, av);
1949     av.setSelectionGroup(sg);
1950     av.isSelectionGroupChanged(true);
1951
1952     /*
1953      * Map column selection
1954      */
1955     // ColumnSelection cs = MappingUtils.mapColumnSelection(colsel, sourceAv,
1956     // av);
1957     ColumnSelection cs = new ColumnSelection();
1958     HiddenColumns hs = new HiddenColumns();
1959     MappingUtils.mapColumnSelection(colsel, hidden, sourceAv, av, cs, hs);
1960     av.setColumnSelection(cs);
1961     av.getAlignment().setHiddenColumns(hs);
1962
1963     ap.scalePanelHolder.repaint();
1964     ap.repaint();
1965
1966     return true;
1967   }
1968
1969 }