JAL-2089 patch broken merge to master for Release 2.10.0b1
[jalview.git] / src / jalview / appletgui / AnnotationLabels.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.analysis.AlignmentUtils;
24 import jalview.datamodel.AlignmentAnnotation;
25 import jalview.datamodel.Annotation;
26 import jalview.datamodel.SequenceGroup;
27 import jalview.datamodel.SequenceI;
28 import jalview.util.MessageManager;
29 import jalview.util.ParseHtmlBodyAndLinks;
30
31 import java.awt.Checkbox;
32 import java.awt.CheckboxMenuItem;
33 import java.awt.Color;
34 import java.awt.Dimension;
35 import java.awt.FlowLayout;
36 import java.awt.FontMetrics;
37 import java.awt.Frame;
38 import java.awt.Graphics;
39 import java.awt.Image;
40 import java.awt.MenuItem;
41 import java.awt.Panel;
42 import java.awt.PopupMenu;
43 import java.awt.event.ActionEvent;
44 import java.awt.event.ActionListener;
45 import java.awt.event.InputEvent;
46 import java.awt.event.ItemEvent;
47 import java.awt.event.ItemListener;
48 import java.awt.event.MouseEvent;
49 import java.awt.event.MouseListener;
50 import java.awt.event.MouseMotionListener;
51 import java.util.Arrays;
52 import java.util.Collections;
53 import java.util.Vector;
54
55 public class AnnotationLabels extends Panel implements ActionListener,
56         MouseListener, MouseMotionListener
57 {
58   Image image;
59
60   boolean active = false;
61
62   AlignmentPanel ap;
63
64   AlignViewport av;
65
66   boolean resizing = false;
67
68   int oldY, mouseX;
69
70   static String ADDNEW = "Add New Row";
71
72   static String EDITNAME = "Edit Label/Description";
73
74   static String HIDE = "Hide This Row";
75
76   static String SHOWALL = "Show All Hidden Rows";
77
78   static String OUTPUT_TEXT = "Show Values In Textbox";
79
80   static String COPYCONS_SEQ = "Copy Consensus Sequence";
81
82   int scrollOffset = 0;
83
84   int selectedRow = -1;
85
86   Tooltip tooltip;
87
88   private boolean hasHiddenRows;
89
90   public AnnotationLabels(AlignmentPanel ap)
91   {
92     this.ap = ap;
93     this.av = ap.av;
94     setLayout(null);
95
96     /**
97      * this retrieves the adjustable height glyph from resources. we don't use
98      * it at the moment. java.net.URL url =
99      * getClass().getResource("/images/idwidth.gif"); Image temp = null;
100      * 
101      * if (url != null) { temp =
102      * java.awt.Toolkit.getDefaultToolkit().createImage(url); }
103      * 
104      * try { MediaTracker mt = new MediaTracker(this); mt.addImage(temp, 0);
105      * mt.waitForID(0); } catch (Exception ex) { }
106      * 
107      * BufferedImage bi = new BufferedImage(temp.getHeight(this),
108      * temp.getWidth(this), BufferedImage.TYPE_INT_RGB); Graphics2D g =
109      * (Graphics2D) bi.getGraphics(); g.rotate(Math.toRadians(90));
110      * g.drawImage(temp, 0, -bi.getWidth(this), this); image = (Image) bi;
111      */
112     addMouseListener(this);
113     addMouseMotionListener(this);
114   }
115
116   public AnnotationLabels(AlignViewport av)
117   {
118     this.av = av;
119   }
120
121   public void setScrollOffset(int y, boolean repaint)
122   {
123     scrollOffset = y;
124     if (repaint)
125     {
126       repaint();
127     }
128   }
129
130   /**
131    * 
132    * @param y
133    * @return -2 if no rows are visible at all, -1 if no visible rows were
134    *         selected
135    */
136   int getSelectedRow(int y)
137   {
138     int row = -2;
139     AlignmentAnnotation[] aa = ap.av.getAlignment()
140             .getAlignmentAnnotation();
141
142     if (aa == null)
143     {
144       return row;
145     }
146     int height = 0;
147     for (int i = 0; i < aa.length; i++)
148     {
149       row = -1;
150       if (!aa[i].visible)
151       {
152         continue;
153       }
154       height += aa[i].height;
155       if (y < height)
156       {
157         row = i;
158         break;
159       }
160     }
161
162     return row;
163   }
164
165   @Override
166   public void actionPerformed(ActionEvent evt)
167   {
168     AlignmentAnnotation[] aa = av.getAlignment().getAlignmentAnnotation();
169
170     if (evt.getActionCommand().equals(ADDNEW))
171     {
172       AlignmentAnnotation newAnnotation = new AlignmentAnnotation("", null,
173               new Annotation[ap.av.getAlignment().getWidth()]);
174
175       if (!editLabelDescription(newAnnotation))
176       {
177         return;
178       }
179
180       ap.av.getAlignment().addAnnotation(newAnnotation);
181       ap.av.getAlignment().setAnnotationIndex(newAnnotation, 0);
182     }
183     else if (evt.getActionCommand().equals(EDITNAME))
184     {
185       editLabelDescription(aa[selectedRow]);
186     }
187     else if (evt.getActionCommand().equals(HIDE))
188     {
189       aa[selectedRow].visible = false;
190     }
191     else if (evt.getActionCommand().equals(SHOWALL))
192     {
193       for (int i = 0; i < aa.length; i++)
194       {
195         aa[i].visible = (aa[i].annotations == null) ? false : true;
196       }
197     }
198     else if (evt.getActionCommand().equals(OUTPUT_TEXT))
199     {
200       CutAndPasteTransfer cap = new CutAndPasteTransfer(false,
201               ap.alignFrame);
202       Frame frame = new Frame();
203       frame.add(cap);
204       jalview.bin.JalviewLite.addFrame(frame, ap.alignFrame.getTitle()
205               + " - " + aa[selectedRow].label, 500, 100);
206       cap.setText(aa[selectedRow].toString());
207     }
208     else if (evt.getActionCommand().equals(COPYCONS_SEQ))
209     {
210       SequenceI cons = av.getConsensusSeq();
211       if (cons != null)
212       {
213         copy_annotseqtoclipboard(cons);
214       }
215
216     }
217     refresh();
218   }
219
220   /**
221    * Adjust size and repaint
222    */
223   protected void refresh()
224   {
225     ap.annotationPanel.adjustPanelHeight();
226     setSize(getSize().width, ap.annotationPanel.getSize().height);
227     ap.validate();
228     ap.paintAlignment(true);
229   }
230
231   boolean editLabelDescription(AlignmentAnnotation annotation)
232   {
233     Checkbox padGaps = new Checkbox("Fill Empty Gaps With \""
234             + ap.av.getGapCharacter() + "\"", annotation.padGaps);
235
236     EditNameDialog dialog = new EditNameDialog(annotation.label,
237             annotation.description, "      Annotation Label",
238             "Annotation Description", ap.alignFrame,
239             "Edit Annotation Name / Description", 500, 180, false);
240
241     Panel empty = new Panel(new FlowLayout());
242     empty.add(padGaps);
243     dialog.add(empty);
244     dialog.pack();
245
246     dialog.setVisible(true);
247
248     if (dialog.accept)
249     {
250       annotation.label = dialog.getName();
251       annotation.description = dialog.getDescription();
252       annotation.setPadGaps(padGaps.getState(), av.getGapCharacter());
253       repaint();
254       return true;
255     }
256     else
257     {
258       return false;
259     }
260
261   }
262
263   boolean resizePanel = false;
264
265   @Override
266   public void mouseMoved(MouseEvent evt)
267   {
268     resizePanel = evt.getY() < 10 && evt.getX() < 14;
269     int row = getSelectedRow(evt.getY() + scrollOffset);
270
271     if (row > -1)
272     {
273       ParseHtmlBodyAndLinks phb = new ParseHtmlBodyAndLinks(
274               av.getAlignment().getAlignmentAnnotation()[row]
275                       .getDescription(true),
276               true, "\n");
277       if (tooltip == null)
278       {
279         tooltip = new Tooltip(phb.getNonHtmlContent(), this);
280       }
281       else
282       {
283         tooltip.setTip(phb.getNonHtmlContent());
284       }
285     }
286     else if (tooltip != null)
287     {
288       tooltip.setTip("");
289     }
290   }
291
292   /**
293    * curent drag position
294    */
295   MouseEvent dragEvent = null;
296
297   /**
298    * flag to indicate drag events should be ignored
299    */
300   private boolean dragCancelled = false;
301
302   /**
303    * clear any drag events in progress
304    */
305   public void cancelDrag()
306   {
307     dragEvent = null;
308     dragCancelled = true;
309   }
310
311   @Override
312   public void mouseDragged(MouseEvent evt)
313   {
314     if (dragCancelled)
315     {
316       return;
317     }
318     ;
319     dragEvent = evt;
320
321     if (resizePanel)
322     {
323       Dimension d = ap.annotationPanelHolder.getSize(), e = ap.annotationSpaceFillerHolder
324               .getSize(), f = ap.seqPanelHolder.getSize();
325       int dif = evt.getY() - oldY;
326
327       dif /= ap.av.getCharHeight();
328       dif *= ap.av.getCharHeight();
329
330       if ((d.height - dif) > 20 && (f.height + dif) > 20)
331       {
332         ap.annotationPanel.setSize(d.width, d.height - dif);
333         setSize(new Dimension(e.width, d.height - dif));
334         ap.annotationSpaceFillerHolder.setSize(new Dimension(e.width,
335                 d.height - dif));
336         ap.annotationPanelHolder.setSize(new Dimension(d.width, d.height
337                 - dif));
338         ap.apvscroll.setValues(ap.apvscroll.getValue(), d.height - dif, 0,
339                 av.calcPanelHeight());
340         f.height += dif;
341         ap.seqPanelHolder.setPreferredSize(f);
342         ap.setScrollValues(av.getStartRes(), av.getStartSeq());
343         ap.validate();
344         // ap.paintAlignment(true);
345         ap.addNotify();
346       }
347
348     }
349     else
350     {
351       int diff;
352       if ((diff = 6 - evt.getY()) > 0)
353       {
354         // nudge scroll up
355         ap.apvscroll.setValue(ap.apvscroll.getValue() - diff);
356         ap.adjustmentValueChanged(null);
357
358       }
359       else if ((0 < (diff = 6
360               - ap.annotationSpaceFillerHolder.getSize().height
361               + evt.getY())))
362       {
363         // nudge scroll down
364         ap.apvscroll.setValue(ap.apvscroll.getValue() + diff);
365         ap.adjustmentValueChanged(null);
366       }
367       repaint();
368     }
369   }
370
371   @Override
372   public void mouseClicked(MouseEvent evt)
373   {
374   }
375
376   @Override
377   public void mouseReleased(MouseEvent evt)
378   {
379     if (!resizePanel && !dragCancelled)
380     {
381       int start = selectedRow;
382
383       int end = getSelectedRow(evt.getY() + scrollOffset);
384
385       if (start > -1 && start != end)
386       {
387         // Swap these annotations
388         AlignmentAnnotation startAA = ap.av.getAlignment()
389                 .getAlignmentAnnotation()[start];
390         if (end == -1)
391         {
392           end = ap.av.getAlignment().getAlignmentAnnotation().length - 1;
393         }
394         AlignmentAnnotation endAA = ap.av.getAlignment()
395                 .getAlignmentAnnotation()[end];
396
397         ap.av.getAlignment().getAlignmentAnnotation()[end] = startAA;
398         ap.av.getAlignment().getAlignmentAnnotation()[start] = endAA;
399       }
400     }
401     resizePanel = false;
402     dragEvent = null;
403     dragCancelled = false;
404     repaint();
405     ap.annotationPanel.repaint();
406   }
407
408   @Override
409   public void mouseEntered(MouseEvent evt)
410   {
411     if (evt.getY() < 10 && evt.getX() < 14)
412     {
413       resizePanel = true;
414       repaint();
415     }
416   }
417
418   @Override
419   public void mouseExited(MouseEvent evt)
420   {
421     dragCancelled = false;
422
423     if (dragEvent == null)
424     {
425       resizePanel = false;
426     }
427     else
428     {
429       if (!resizePanel)
430       {
431         dragEvent = null;
432       }
433     }
434     repaint();
435   }
436
437   @Override
438   public void mousePressed(MouseEvent evt)
439   {
440     oldY = evt.getY();
441     if (resizePanel)
442     {
443       return;
444     }
445     dragCancelled = false;
446     // todo: move below to mouseClicked ?
447     selectedRow = getSelectedRow(evt.getY() + scrollOffset);
448
449     AlignmentAnnotation[] aa = ap.av.getAlignment()
450             .getAlignmentAnnotation();
451
452     // DETECT RIGHT MOUSE BUTTON IN AWT
453     if ((evt.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK)
454     {
455
456       PopupMenu popup = new PopupMenu(
457               MessageManager.getString("label.annotations"));
458
459       MenuItem item = new MenuItem(ADDNEW);
460       item.addActionListener(this);
461       popup.add(item);
462       if (selectedRow < 0)
463       {
464         // this never happens at moment: - see comment on JAL-563
465         if (hasHiddenRows)
466         {
467           item = new MenuItem(SHOWALL);
468           item.addActionListener(this);
469           popup.add(item);
470         }
471         this.add(popup);
472         popup.show(this, evt.getX(), evt.getY());
473         return;
474       }
475       // add the rest if there are actually rows to show
476       item = new MenuItem(EDITNAME);
477       item.addActionListener(this);
478       popup.add(item);
479       item = new MenuItem(HIDE);
480       item.addActionListener(this);
481       popup.add(item);
482
483       /*
484        * Hide all <label>:
485        */
486       if (selectedRow < aa.length)
487       {
488         if (aa[selectedRow].sequenceRef != null)
489         {
490           final String label = aa[selectedRow].label;
491           MenuItem hideType = new MenuItem(
492                   MessageManager.getString("label.hide_all") + " " + label);
493           hideType.addActionListener(new ActionListener()
494           {
495             @Override
496             public void actionPerformed(ActionEvent e)
497             {
498               AlignmentUtils.showOrHideSequenceAnnotations(
499                       ap.av.getAlignment(), Collections.singleton(label),
500                       null, false, false);
501               refresh();
502             }
503           });
504           popup.add(hideType);
505         }
506       }
507
508       if (hasHiddenRows)
509       {
510         item = new MenuItem(SHOWALL);
511         item.addActionListener(this);
512         popup.add(item);
513       }
514       this.add(popup);
515       item = new MenuItem(OUTPUT_TEXT);
516       item.addActionListener(this);
517       popup.add(item);
518       if (selectedRow < aa.length)
519       {
520         if (aa[selectedRow].autoCalculated)
521         {
522           if (aa[selectedRow].label.indexOf("Consensus") > -1)
523           {
524             popup.addSeparator();
525             final CheckboxMenuItem cbmi = new CheckboxMenuItem(
526                     MessageManager.getString("label.ignore_gaps_consensus"),
527                     (aa[selectedRow].groupRef != null) ? aa[selectedRow].groupRef
528                             .getIgnoreGapsConsensus() : ap.av
529                             .isIgnoreGapsConsensus());
530             final AlignmentAnnotation aaa = aa[selectedRow];
531             cbmi.addItemListener(new ItemListener()
532             {
533               @Override
534               public void itemStateChanged(ItemEvent e)
535               {
536                 if (aaa.groupRef != null)
537                 {
538                   // TODO: pass on reference to ap so the view can be updated.
539                   aaa.groupRef.setIgnoreGapsConsensus(cbmi.getState());
540                 }
541                 else
542                 {
543                   ap.av.setIgnoreGapsConsensus(cbmi.getState(), ap);
544                 }
545                 ap.paintAlignment(true);
546               }
547             });
548             popup.add(cbmi);
549             if (aaa.groupRef != null)
550             {
551               final CheckboxMenuItem chist = new CheckboxMenuItem(
552                       MessageManager
553                               .getString("label.show_group_histogram"),
554                       aa[selectedRow].groupRef.isShowConsensusHistogram());
555               chist.addItemListener(new ItemListener()
556               {
557                 @Override
558                 public void itemStateChanged(ItemEvent e)
559                 {
560                   // TODO: pass on reference
561                   // to ap
562                   // so the
563                   // view
564                   // can be
565                   // updated.
566                   aaa.groupRef.setShowConsensusHistogram(chist.getState());
567                   ap.repaint();
568                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
569                 }
570               });
571               popup.add(chist);
572               final CheckboxMenuItem cprofl = new CheckboxMenuItem(
573                       MessageManager.getString("label.show_group_logo"),
574                       aa[selectedRow].groupRef.isShowSequenceLogo());
575               cprofl.addItemListener(new ItemListener()
576               {
577                 @Override
578                 public void itemStateChanged(ItemEvent e)
579                 {
580                   // TODO: pass on reference
581                   // to ap
582                   // so the
583                   // view
584                   // can be
585                   // updated.
586                   aaa.groupRef.setshowSequenceLogo(cprofl.getState());
587                   ap.repaint();
588                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
589                 }
590               });
591
592               popup.add(cprofl);
593               final CheckboxMenuItem cprofn = new CheckboxMenuItem(
594                       MessageManager
595                               .getString("label.normalise_group_logo"),
596                       aa[selectedRow].groupRef.isNormaliseSequenceLogo());
597               cprofn.addItemListener(new ItemListener()
598               {
599                 @Override
600                 public void itemStateChanged(ItemEvent e)
601                 {
602                   // TODO: pass on reference
603                   // to ap
604                   // so the
605                   // view
606                   // can be
607                   // updated.
608                   aaa.groupRef.setshowSequenceLogo(true);
609                   aaa.groupRef.setNormaliseSequenceLogo(cprofn.getState());
610                   ap.repaint();
611                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
612                 }
613               });
614               popup.add(cprofn);
615             }
616             else
617             {
618               final CheckboxMenuItem chist = new CheckboxMenuItem(
619                       MessageManager.getString("label.show_histogram"),
620                       av.isShowConsensusHistogram());
621               chist.addItemListener(new ItemListener()
622               {
623                 @Override
624                 public void itemStateChanged(ItemEvent e)
625                 {
626                   // TODO: pass on reference
627                   // to ap
628                   // so the
629                   // view
630                   // can be
631                   // updated.
632                   av.setShowConsensusHistogram(chist.getState());
633                   ap.alignFrame.showConsensusHistogram.setState(chist
634                           .getState()); // TODO: implement
635                                         // ap.updateGUI()/alignFrame.updateGUI
636                                         // for applet
637                   ap.repaint();
638                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
639                 }
640               });
641               popup.add(chist);
642               final CheckboxMenuItem cprof = new CheckboxMenuItem(
643                       MessageManager.getString("label.show_logo"),
644                       av.isShowSequenceLogo());
645               cprof.addItemListener(new ItemListener()
646               {
647                 @Override
648                 public void itemStateChanged(ItemEvent e)
649                 {
650                   // TODO: pass on reference
651                   // to ap
652                   // so the
653                   // view
654                   // can be
655                   // updated.
656                   av.setShowSequenceLogo(cprof.getState());
657                   ap.alignFrame.showSequenceLogo.setState(cprof.getState()); // TODO:
658                                                                              // implement
659                                                                              // ap.updateGUI()/alignFrame.updateGUI
660                                                                              // for
661                                                                              // applet
662                   ap.repaint();
663                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
664                 }
665               });
666               popup.add(cprof);
667               final CheckboxMenuItem cprofn = new CheckboxMenuItem(
668                       MessageManager.getString("label.normalise_logo"),
669                       av.isNormaliseSequenceLogo());
670               cprofn.addItemListener(new ItemListener()
671               {
672                 @Override
673                 public void itemStateChanged(ItemEvent e)
674                 {
675                   // TODO: pass on reference
676                   // to ap
677                   // so the
678                   // view
679                   // can be
680                   // updated.
681                   av.setShowSequenceLogo(true);
682                   ap.alignFrame.normSequenceLogo.setState(cprofn.getState()); // TODO:
683                                                                               // implement
684                                                                               // ap.updateGUI()/alignFrame.updateGUI
685                                                                               // for
686                                                                               // applet
687                   av.setNormaliseSequenceLogo(cprofn.getState());
688                   ap.repaint();
689                   // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
690                 }
691               });
692               popup.add(cprofn);
693             }
694
695             item = new MenuItem(COPYCONS_SEQ);
696             item.addActionListener(this);
697             popup.add(item);
698           }
699         }
700       }
701       popup.show(this, evt.getX(), evt.getY());
702     }
703     else
704     {
705       // selection action.
706       if (selectedRow > -1 && selectedRow < aa.length)
707       {
708         if (aa[selectedRow].groupRef != null)
709         {
710           if (evt.getClickCount() >= 2)
711           {
712             // todo: make the ap scroll to the selection - not necessary, first
713             // click highlights/scrolls, second selects
714             ap.seqPanel.ap.idPanel.highlightSearchResults(null);
715             // process modifiers
716             SequenceGroup sg = ap.av.getSelectionGroup();
717             if (sg == null
718                     || sg == aa[selectedRow].groupRef
719                     || !(jalview.util.Platform.isControlDown(evt) || evt
720                             .isShiftDown()))
721             {
722               if (jalview.util.Platform.isControlDown(evt)
723                       || evt.isShiftDown())
724               {
725                 // clone a new selection group from the associated group
726                 ap.av.setSelectionGroup(new SequenceGroup(
727                         aa[selectedRow].groupRef));
728               }
729               else
730               {
731                 // set selection to the associated group so it can be edited
732                 ap.av.setSelectionGroup(aa[selectedRow].groupRef);
733               }
734             }
735             else
736             {
737               // modify current selection with associated group
738               int remainToAdd = aa[selectedRow].groupRef.getSize();
739               for (SequenceI sgs : aa[selectedRow].groupRef.getSequences())
740               {
741                 if (jalview.util.Platform.isControlDown(evt))
742                 {
743                   sg.addOrRemove(sgs, --remainToAdd == 0);
744                 }
745                 else
746                 {
747                   // notionally, we should also add intermediate sequences from
748                   // last added sequence ?
749                   sg.addSequence(sgs, --remainToAdd == 0);
750                 }
751               }
752             }
753             ap.paintAlignment(false);
754             PaintRefresher.Refresh(ap, ap.av.getSequenceSetId());
755             ap.av.sendSelection();
756           }
757           else
758           {
759             ap.seqPanel.ap.idPanel
760                     .highlightSearchResults(aa[selectedRow].groupRef
761                             .getSequences(null));
762           }
763           return;
764         }
765         else if (aa[selectedRow].sequenceRef != null)
766         {
767           if (evt.getClickCount() == 1)
768           {
769             ap.seqPanel.ap.idPanel
770                     .highlightSearchResults(Arrays
771                             .asList(new SequenceI[] { aa[selectedRow].sequenceRef }));
772           }
773           else if (evt.getClickCount() >= 2)
774           {
775             ap.seqPanel.ap.idPanel.highlightSearchResults(null);
776             SequenceGroup sg = ap.av.getSelectionGroup();
777             if (sg != null)
778             {
779               // we make a copy rather than edit the current selection if no
780               // modifiers pressed
781               // see Enhancement JAL-1557
782               if (!(jalview.util.Platform.isControlDown(evt) || evt
783                       .isShiftDown()))
784               {
785                 sg = new SequenceGroup(sg);
786                 sg.clear();
787                 sg.addSequence(aa[selectedRow].sequenceRef, false);
788               }
789               else
790               {
791                 if (jalview.util.Platform.isControlDown(evt))
792                 {
793                   sg.addOrRemove(aa[selectedRow].sequenceRef, true);
794                 }
795                 else
796                 {
797                   // notionally, we should also add intermediate sequences from
798                   // last added sequence ?
799                   sg.addSequence(aa[selectedRow].sequenceRef, true);
800                 }
801               }
802             }
803             else
804             {
805               sg = new SequenceGroup();
806               sg.setStartRes(0);
807               sg.setEndRes(ap.av.getAlignment().getWidth() - 1);
808               sg.addSequence(aa[selectedRow].sequenceRef, false);
809             }
810             ap.av.setSelectionGroup(sg);
811             ap.paintAlignment(false);
812             PaintRefresher.Refresh(ap, ap.av.getSequenceSetId());
813             ap.av.sendSelection();
814           }
815
816         }
817       }
818
819     }
820   }
821
822   /**
823    * DOCUMENT ME!
824    * 
825    * @param e
826    *          DOCUMENT ME!
827    */
828   protected void copy_annotseqtoclipboard(SequenceI sq)
829   {
830     if (sq == null || sq.getLength() < 1)
831     {
832       return;
833     }
834     jalview.appletgui.AlignFrame.copiedSequences = new StringBuffer();
835     jalview.appletgui.AlignFrame.copiedSequences.append(sq.getName() + "\t"
836             + sq.getStart() + "\t" + sq.getEnd() + "\t"
837             + sq.getSequenceAsString() + "\n");
838     if (av.hasHiddenColumns())
839     {
840       jalview.appletgui.AlignFrame.copiedHiddenColumns = new Vector();
841       for (int[] region : av.getColumnSelection().getHiddenColumns())
842       {
843         jalview.appletgui.AlignFrame.copiedHiddenColumns
844                 .addElement(new int[] { region[0], region[1] });
845       }
846     }
847   }
848
849   @Override
850   public void update(Graphics g)
851   {
852     paint(g);
853   }
854
855   @Override
856   public void paint(Graphics g)
857   {
858     int w = getSize().width;
859     int h = getSize().height;
860     if (image == null || w != image.getWidth(this)
861             || h != image.getHeight(this))
862     {
863       image = createImage(w, ap.annotationPanel.getSize().height);
864     }
865
866     drawComponent(image.getGraphics(), w);
867     g.drawImage(image, 0, 0, this);
868   }
869
870   public void drawComponent(Graphics g, int width)
871   {
872     g.setFont(av.getFont());
873     FontMetrics fm = g.getFontMetrics(av.getFont());
874     g.setColor(Color.white);
875     g.fillRect(0, 0, getSize().width, getSize().height);
876
877     g.translate(0, -scrollOffset);
878     g.setColor(Color.black);
879
880     AlignmentAnnotation[] aa = av.getAlignment().getAlignmentAnnotation();
881     int y = 0, fy = g.getFont().getSize();
882     int x = 0, offset;
883
884     if (aa != null)
885     {
886       hasHiddenRows = false;
887       for (int i = 0; i < aa.length; i++)
888       {
889         if (!aa[i].visible)
890         {
891           hasHiddenRows = true;
892           continue;
893         }
894
895         x = width - fm.stringWidth(aa[i].label) - 3;
896
897         y += aa[i].height;
898         offset = -(aa[i].height - fy) / 2;
899
900         g.drawString(aa[i].label, x, y + offset);
901       }
902     }
903     g.translate(0, +scrollOffset);
904     if (resizePanel)
905     {
906       g.setColor(Color.red);
907       g.setPaintMode();
908       g.drawLine(2, 8, 5, 2);
909       g.drawLine(5, 2, 8, 8);
910     }
911     else if (!dragCancelled && dragEvent != null && aa != null)
912     {
913       g.setColor(Color.lightGray);
914       g.drawString(aa[selectedRow].label, dragEvent.getX(),
915               dragEvent.getY());
916     }
917
918     if (!av.getWrapAlignment() && ((aa == null) || (aa.length < 1)))
919     {
920       g.setColor(Color.black);
921       g.drawString(MessageManager.getString("label.right_click"), 2, 8);
922       g.drawString(MessageManager.getString("label.to_add_annotation"), 2,
923               18);
924     }
925   }
926 }