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