2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
20 package jalview.appletgui;
\r
25 import java.awt.event.*;
\r
27 import jalview.datamodel.*;
\r
29 public class AnnotationPanel
\r
31 implements AdjustmentListener, ActionListener, MouseListener, MouseMotionListener
\r
38 static String HELIX = "Helix";
\r
39 static String SHEET = "Sheet";
\r
40 static String LABEL = "Label";
\r
41 static String REMOVE = "Remove Annotation";
\r
42 static String COLOUR = "Colour";
\r
43 static Color HELIX_COLOUR = Color.red.darker();
\r
44 static Color SHEET_COLOUR = Color.green.darker().darker();
\r
51 boolean fastPaint = false;
\r
53 public static int GRAPH_HEIGHT = 40;
\r
55 boolean MAC = false;
\r
57 public AnnotationPanel(AlignmentPanel ap)
\r
59 if (System.getProperty("os.name").startsWith("Mac"))
\r
67 adjustPanelHeight();
\r
69 addMouseMotionListener(this);
\r
71 addMouseListener(this);
\r
74 // ap.annotationScroller.getVAdjustable().addAdjustmentListener( this );
\r
77 public AnnotationPanel(AlignViewport av)
\r
82 public void adjustmentValueChanged(AdjustmentEvent evt)
\r
84 ap.alabels.setScrollOffset( -evt.getValue());
\r
90 * @param evt DOCUMENT ME!
\r
92 public void actionPerformed(ActionEvent evt)
\r
94 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
95 Annotation[] anot = aa[activeRow].annotations;
\r
97 if (anot.length < av.getColumnSelection().getMax())
\r
99 Annotation[] temp = new Annotation[av.getColumnSelection().getMax() + 2];
\r
100 System.arraycopy(anot, 0, temp, 0, anot.length);
\r
102 aa[activeRow].annotations = anot;
\r
106 if (av.colSel != null && av.colSel.size() > 0
\r
107 && anot[av.colSel.getMin()] != null)
\r
108 label = anot[av.getColumnSelection().getMin()].displayCharacter;
\r
111 if (evt.getActionCommand().equals(REMOVE))
\r
113 for (int i = 0; i < av.getColumnSelection().size(); i++)
\r
115 anot[av.getColumnSelection().columnAt(i)] = null;
\r
118 else if (evt.getActionCommand().equals(LABEL))
\r
120 label = enterLabel(label, "Enter Label");
\r
127 if ( (label.length() > 0) && !aa[activeRow].hasText)
\r
129 aa[activeRow].hasText = true;
\r
132 for (int i = 0; i < av.getColumnSelection().size(); i++)
\r
134 int index = av.getColumnSelection().columnAt(i);
\r
136 if(!av.colSel.isVisible(index))
\r
139 if (anot[index] == null)
\r
141 anot[index] = new Annotation(label, "", ' ', 0);
\r
144 anot[index].displayCharacter = label;
\r
147 else if (evt.getActionCommand().equals(COLOUR))
\r
149 UserDefinedColours udc = new UserDefinedColours(
\r
151 Color.black, ap.alignFrame);
\r
153 Color col = udc.getColor();
\r
155 for (int i = 0; i < av.getColumnSelection().size(); i++)
\r
157 int index = av.getColumnSelection().columnAt(i);
\r
159 if(!av.colSel.isVisible(index))
\r
162 if (anot[index] == null)
\r
164 anot[index] = new Annotation("", "", ' ', 0);
\r
167 anot[index].colour = col;
\r
170 else // HELIX OR SHEET
\r
173 String symbol = "\u03B1";
\r
175 if (evt.getActionCommand().equals(HELIX))
\r
179 else if (evt.getActionCommand().equals(SHEET))
\r
185 if (!aa[activeRow].hasIcons)
\r
187 aa[activeRow].hasIcons = true;
\r
190 label = enterLabel(symbol, "Enter Label");
\r
197 if ( (label.length() > 0) && !aa[activeRow].hasText)
\r
199 aa[activeRow].hasText = true;
\r
202 for (int i = 0; i < av.getColumnSelection().size(); i++)
\r
204 int index = av.getColumnSelection().columnAt(i);
\r
206 if(!av.colSel.isVisible(index))
\r
209 if (anot[index] == null)
\r
211 anot[index] = new Annotation(label, "", type, 0);
\r
214 anot[index].secondaryStructure = type;
\r
215 anot[index].displayCharacter = label;
\r
219 adjustPanelHeight();
\r
225 String enterLabel(String text, String label)
\r
227 EditNameDialog dialog = new EditNameDialog(text,null,label,null,
\r
228 ap.alignFrame,"Enter Label", 400,200, true);
\r
231 return dialog.getName();
\r
236 public void mousePressed(MouseEvent evt)
\r
238 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
248 for (int i = 0; i < aa.length; i++)
\r
252 height += aa[i].height;
\r
255 if (evt.getY() < height)
\r
257 if (aa[i].editable)
\r
266 if ( (evt.getModifiers() & InputEvent.BUTTON3_MASK) ==
\r
267 InputEvent.BUTTON3_MASK && activeRow != -1)
\r
269 if (av.getColumnSelection() == null)
\r
274 PopupMenu pop = new PopupMenu("Structure type");
\r
275 MenuItem item = new MenuItem(HELIX);
\r
276 item.addActionListener(this);
\r
278 item = new MenuItem(SHEET);
\r
279 item.addActionListener(this);
\r
281 item = new MenuItem(LABEL);
\r
282 item.addActionListener(this);
\r
284 item = new MenuItem(COLOUR);
\r
285 item.addActionListener(this);
\r
287 item = new MenuItem(REMOVE);
\r
288 item.addActionListener(this);
\r
290 ap.alignFrame.add(pop);
\r
291 pop.show(this, evt.getX(), evt.getY());
\r
301 ap.scalePanel.mousePressed(evt);
\r
304 public void mouseReleased(MouseEvent evt)
\r
306 ap.scalePanel.mouseReleased(evt);
\r
309 public void mouseClicked(MouseEvent evt)
\r
312 public void mouseDragged(MouseEvent evt)
\r
314 ap.scalePanel.mouseDragged(evt);
\r
317 public void mouseMoved(MouseEvent evt)
\r
319 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
327 for (int i = 0; i < aa.length; i++)
\r
332 height += aa[i].height;
\r
335 if (evt.getY() < height)
\r
342 int res = evt.getX() / av.getCharWidth() + av.getStartRes();
\r
344 if (av.hasHiddenColumns)
\r
346 res = av.getColumnSelection().adjustForHiddenColumns(res);
\r
349 if (row > -1 && res < aa[row].annotations.length && aa[row].annotations[res] != null)
\r
351 StringBuffer text = new StringBuffer("Sequence position " + (res + 1));
\r
352 if (aa[row].annotations[res].description != null)
\r
354 text.append(" " + aa[row].annotations[res].description);
\r
356 ap.alignFrame.statusBar.setText(text.toString());
\r
359 public void mouseEntered(MouseEvent evt)
\r
361 ap.scalePanel.mouseEntered(evt);
\r
363 public void mouseExited(MouseEvent evt)
\r
365 ap.scalePanel.mouseExited(evt);
\r
369 public int adjustPanelHeight()
\r
371 // setHeight of panels
\r
372 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
377 for (int i = 0; i < aa.length; i++)
\r
379 if (!aa[i].visible)
\r
388 aa[i].height += av.charHeight;
\r
391 if (aa[i].hasIcons)
\r
393 aa[i].height += 16;
\r
396 if (aa[i].graph > 0)
\r
398 aa[i].height += aa[i].graphHeight;
\r
401 if (aa[i].height == 0)
\r
406 height += aa[i].height;
\r
414 this.setSize(getSize().width, height);
\r
422 public void addEditableColumn(int i)
\r
424 if (activeRow == -1)
\r
426 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
432 for (int j = 0; j < aa.length; j++)
\r
434 if (aa[j].editable)
\r
442 if (activeRes == null)
\r
444 activeRes = new Vector();
\r
445 activeRes.addElement(String.valueOf(i));
\r
449 activeRes.addElement(String.valueOf(i));
\r
453 public void update(Graphics g)
\r
458 public void paint(Graphics g)
\r
461 imgWidth = getSize().width;
\r
462 //(av.endRes - av.startRes + 1) * av.charWidth;
\r
464 if (image == null || imgWidth != image.getWidth(this))
\r
466 image = createImage(imgWidth, ap.annotationPanel.getSize().height);
\r
467 gg = image.getGraphics();
\r
468 gg.setFont(av.getFont());
\r
469 fm = gg.getFontMetrics();
\r
475 g.drawImage(image, 0, 0, this);
\r
480 gg.setColor(Color.white);
\r
481 gg.fillRect(0, 0, getSize().width, getSize().height);
\r
482 drawComponent(gg, av.startRes, av.endRes + 1);
\r
484 g.drawImage(image, 0, 0, this);
\r
487 public void fastPaint(int horizontal)
\r
489 if (horizontal == 0
\r
490 || av.alignment.getAlignmentAnnotation() == null
\r
491 || av.alignment.getAlignmentAnnotation().length < 1
\r
498 gg.copyArea(0, 0, imgWidth, getSize().height, -horizontal * av.charWidth, 0);
\r
499 int sr = av.startRes, er = av.endRes + 1, transX = 0;
\r
501 if (horizontal > 0) // scrollbar pulled right, image to the left
\r
503 transX = (er - sr - horizontal) * av.charWidth;
\r
504 sr = er - horizontal;
\r
506 else if (horizontal < 0)
\r
508 er = sr - horizontal;
\r
511 gg.translate(transX, 0);
\r
513 drawComponent(gg, sr, er);
\r
515 gg.translate( -transX, 0);
\r
524 * @param g DOCUMENT ME!
\r
525 * @param startRes DOCUMENT ME!
\r
526 * @param endRes DOCUMENT ME!
\r
528 public void drawComponent(Graphics g, int startRes, int endRes)
\r
530 g.setFont(av.getFont());
\r
532 g.setColor(Color.white);
\r
533 g.fillRect(0, 0, (endRes - startRes) * av.charWidth, getSize().height);
\r
537 fm = g.getFontMetrics();
\r
540 if ( (av.alignment.getAlignmentAnnotation() == null) ||
\r
541 (av.alignment.getAlignmentAnnotation().length < 1))
\r
543 g.setColor(Color.white);
\r
544 g.fillRect(0, 0, getSize().width, getSize().height);
\r
545 g.setColor(Color.black);
\r
546 if (av.validCharWidth)
\r
548 g.drawString("Alignment has no annotations", 20, 15);
\r
554 AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();
\r
561 int iconOffset = av.charHeight / 2;
\r
562 boolean validRes = false;
\r
564 boolean[] graphGroupDrawn = new boolean[aa.length];
\r
567 for (int i = 0; i < aa.length; i++)
\r
569 AlignmentAnnotation row = aa[i];
\r
581 if (row.graphGroup > -1 && graphGroupDrawn[row.graphGroup])
\r
586 // this is so that we draw the characters below the graph
\r
591 y -= av.charHeight;
\r
597 iconOffset = av.charHeight / 2;
\r
605 while (x < endRes - startRes)
\r
607 if (av.hasHiddenColumns)
\r
609 column = av.getColumnSelection().adjustForHiddenColumns(startRes + x);
\r
610 if (column > row.annotations.length - 1)
\r
617 column = startRes + x;
\r
620 if ( (row.annotations.length <= column) ||
\r
621 (row.annotations[column] == null))
\r
630 if (activeRow == i)
\r
632 g.setColor(Color.red);
\r
634 if (av.getColumnSelection() != null)
\r
636 for (int n = 0; n < av.getColumnSelection().size(); n++)
\r
638 int v = av.getColumnSelection().columnAt(n);
\r
642 g.fillRect(x * av.charWidth, y,
\r
643 av.charWidth, av.charHeight);
\r
651 if (av.validCharWidth && validRes &&
\r
652 (row.annotations[column].displayCharacter.length() > 0))
\r
654 int charOffset = (av.charWidth -
\r
655 fm.charWidth(row.annotations[column].
\r
656 displayCharacter.charAt(
\r
659 if (row.annotations[column].colour == null)
\r
660 g.setColor(Color.black);
\r
662 g.setColor(row.annotations[column].colour);
\r
664 if (column == 0 || row.graph > 0)
\r
666 g.drawString(row.annotations[column].displayCharacter,
\r
667 (x * av.charWidth) + charOffset,
\r
668 y + iconOffset + 3);
\r
671 row.annotations[column - 1] == null
\r
672 || (!row.annotations[column].displayCharacter.equals(
\r
673 row.annotations[column - 1].displayCharacter)
\r
675 (row.annotations[column].displayCharacter.length() < 2 &&
\r
676 row.annotations[column].secondaryStructure == ' ')))
\r
678 g.drawString(row.annotations[column].displayCharacter,
\r
679 (x * av.charWidth) + charOffset,
\r
680 y + iconOffset + 3);
\r
687 (row.annotations[column].secondaryStructure != lastSS))
\r
692 g.setColor(HELIX_COLOUR);
\r
695 //Off by 1 offset when drawing rects and ovals
\r
696 //to offscreen image on the MAC
\r
697 g.fillRoundRect(lastSSX, y + 4 + iconOffset,
\r
698 (x * av.charWidth) - lastSSX, 7, 8, 8);
\r
702 int sCol = (lastSSX / av.charWidth) + startRes;
\r
704 int x2 = (x * av.charWidth);
\r
707 row.annotations[sCol - 1] == null ||
\r
708 row.annotations[sCol - 1].secondaryStructure != 'H')
\r
710 g.fillArc(lastSSX, y + 4 + iconOffset, av.charWidth, 8, 90,
\r
712 x1 += av.charWidth / 2;
\r
715 if (row.annotations[column] == null ||
\r
716 row.annotations[column].secondaryStructure != 'H')
\r
718 g.fillArc( (x * av.charWidth) - av.charWidth,
\r
719 y + 4 + iconOffset, av.charWidth, 8, 270, 180);
\r
720 x2 -= av.charWidth / 2;
\r
723 g.fillRect(x1, y + 4 + iconOffset, x2 - x1, 8);
\r
727 g.setColor(SHEET_COLOUR);
\r
728 g.fillRect(lastSSX, y + 4 + iconOffset,
\r
729 (x * av.charWidth) - lastSSX - 4, 7);
\r
730 g.fillPolygon(new int[]
\r
731 { (x * av.charWidth) - 4,
\r
732 (x * av.charWidth) - 4,
\r
733 (x * av.charWidth)},
\r
736 y + iconOffset, y + 14 + iconOffset,
\r
743 g.setColor(Color.gray);
\r
744 g.fillRect(lastSSX, y + 6 + iconOffset,
\r
745 (x * av.charWidth) - lastSSX, 2);
\r
752 lastSS = row.annotations[column].secondaryStructure;
\r
759 lastSSX = (x * av.charWidth);
\r
767 if (column >= row.annotations.length)
\r
769 column = row.annotations.length - 1;
\r
779 g.setColor(HELIX_COLOUR);
\r
782 //Off by 1 offset when drawing rects and ovals
\r
783 //to offscreen image on the MAC
\r
784 g.fillRoundRect(lastSSX, y + 4 + iconOffset,
\r
785 (x * av.charWidth) - lastSSX, 7, 8, 8);
\r
789 int sCol = (lastSSX / av.charWidth) + startRes;
\r
791 int x2 = (x * av.charWidth);
\r
794 row.annotations[sCol - 1] == null ||
\r
795 row.annotations[sCol - 1].secondaryStructure != 'H')
\r
797 g.fillArc(lastSSX, y + 4 + iconOffset, av.charWidth, 8, 90, 180);
\r
798 x1 += av.charWidth / 2;
\r
801 if (row.annotations[column] == null ||
\r
802 row.annotations[column].secondaryStructure != 'H')
\r
804 g.fillArc( (x * av.charWidth) - av.charWidth,
\r
805 y + 4 + iconOffset, av.charWidth, 8, 270,
\r
807 x2 -= av.charWidth / 2;
\r
810 g.fillRect(x1, y + 4 + iconOffset, x2 - x1, 8);
\r
815 g.setColor(SHEET_COLOUR);
\r
817 if (row.annotations[endRes] == null
\r
818 || row.annotations[endRes].secondaryStructure != 'E')
\r
820 g.fillRect(lastSSX, y + 4 + iconOffset,
\r
821 (x * av.charWidth) - lastSSX - 4, 7);
\r
822 g.fillPolygon(new int[]
\r
823 { (x * av.charWidth) - 4,
\r
824 (x * av.charWidth) - 4,
\r
825 (x * av.charWidth)},
\r
828 y + iconOffset, y + 14 + iconOffset,
\r
834 g.fillRect(lastSSX, y + 4 + iconOffset,
\r
835 x * av.charWidth - lastSSX, 7);
\r
840 g.setColor(Color.gray);
\r
841 if (!av.wrapAlignment || endRes == av.endRes)
\r
843 g.fillRect(lastSSX, y + 6 + iconOffset,
\r
844 (x * av.charWidth) - lastSSX, 2);
\r
853 if (row.graph == AlignmentAnnotation.LINE_GRAPH)
\r
855 if (row.graphGroup > -1 && !graphGroupDrawn[row.graphGroup])
\r
857 float groupmax = -999999, groupmin = 9999999;
\r
858 for (int gg = 0; gg < aa.length; gg++)
\r
860 if (aa[gg].graphGroup != row.graphGroup)
\r
867 aa[gg].visible = false;
\r
870 if (aa[gg].graphMax > groupmax)
\r
872 groupmax = aa[gg].graphMax;
\r
874 if (aa[gg].graphMin < groupmin)
\r
876 groupmin = aa[gg].graphMin;
\r
880 for (int gg = 0; gg < aa.length; gg++)
\r
882 if (aa[gg].graphGroup == row.graphGroup)
\r
884 drawLineGraph(g, aa[gg], startRes, endRes, y,
\r
885 groupmin, groupmax,
\r
890 graphGroupDrawn[row.graphGroup] = true;
\r
894 drawLineGraph(g, row, startRes, endRes,
\r
895 y, row.graphMin, row.graphMax, row.graphHeight);
\r
898 else if (row.graph == AlignmentAnnotation.BAR_GRAPH)
\r
900 drawBarGraph(g, row, startRes, endRes,
\r
901 row.graphMin, row.graphMax, y);
\r
905 if (row.graph > 0 && row.hasText)
\r
907 y += av.charHeight;
\r
910 if (row.graph == 0)
\r
917 public void drawLineGraph(Graphics g, AlignmentAnnotation aa,
\r
918 int sRes, int eRes,
\r
920 float min, float max,
\r
923 if (sRes > aa.annotations.length)
\r
930 //Adjustment for fastpaint to left
\r
931 if (eRes < av.endRes)
\r
936 eRes = Math.min(eRes, aa.annotations.length);
\r
944 int y1 = y, y2 = y;
\r
945 float range = max - min;
\r
950 y2 = y - (int) ( (0 - min / range) * graphHeight);
\r
953 g.setColor(Color.gray);
\r
954 g.drawLine(x - av.charWidth, y2, (eRes - sRes) * av.charWidth, y2);
\r
956 eRes = Math.min(eRes, aa.annotations.length);
\r
959 int aaMax = aa.annotations.length - 1;
\r
961 while (x < eRes - sRes)
\r
964 if (av.hasHiddenColumns)
\r
966 column = av.getColumnSelection().adjustForHiddenColumns(column);
\r
969 if (column > aaMax)
\r
974 if (aa.annotations[column] == null || aa.annotations[column - 1] == null)
\r
980 if (aa.annotations[column].colour == null)
\r
981 g.setColor(Color.black);
\r
983 g.setColor(aa.annotations[column].colour);
\r
986 (int) ( ( (aa.annotations[column - 1].value - min) / range) * graphHeight);
\r
988 (int) ( ( (aa.annotations[column].value - min) / range) * graphHeight);
\r
990 g.drawLine(x * av.charWidth - av.charWidth / 2, y1,
\r
991 x * av.charWidth + av.charWidth / 2, y2);
\r
995 if (aa.threshold != null)
\r
997 g.setColor(aa.threshold.colour);
\r
999 y2 = (int) (y - ( (aa.threshold.value - min) / range) * graphHeight);
\r
1000 g.drawLine(0, y2, (eRes - sRes) * av.charWidth, y2);
\r
1004 public void drawBarGraph(Graphics g, AlignmentAnnotation aa,
\r
1005 int sRes, int eRes,
\r
1006 float min, float max,
\r
1009 if (sRes > aa.annotations.length)
\r
1014 eRes = Math.min(eRes, aa.annotations.length);
\r
1016 int x = 0, y1 = y, y2 = y;
\r
1018 float range = max - min;
\r
1022 y2 = y - (int) ( (0 - min / (range)) * aa.graphHeight);
\r
1025 g.setColor(Color.gray);
\r
1027 g.drawLine(x, y2, (eRes - sRes) * av.charWidth, y2);
\r
1030 int aaMax = aa.annotations.length - 1;
\r
1032 while (x < eRes - sRes)
\r
1034 column = sRes + x;
\r
1035 if (av.hasHiddenColumns)
\r
1037 column = av.getColumnSelection().adjustForHiddenColumns(column);
\r
1040 if (column > aaMax)
\r
1045 if (aa.annotations[column] == null)
\r
1051 if (aa.annotations[column].colour == null)
\r
1052 g.setColor(Color.black);
\r
1054 g.setColor(aa.annotations[column].colour);
\r
1057 (int) ( ( (aa.annotations[column].value - min) / (range)) * aa.graphHeight);
\r
1061 g.fillRect(x * av.charWidth, y2, av.charWidth, y1 - y2);
\r
1065 g.fillRect(x * av.charWidth, y1, av.charWidth, y2 - y1);
\r
1071 if (aa.threshold != null)
\r
1073 g.setColor(aa.threshold.colour);
\r
1074 y2 = (int) (y - ( (aa.threshold.value - min) / range) * aa.graphHeight);
\r
1075 g.drawLine(0, y2, (eRes - sRes) * av.charWidth, y2);
\r
1079 // used by overview window
\r
1080 public void drawGraph(Graphics g, AlignmentAnnotation aa, int width, int y,
\r
1081 int sRes, int eRes)
\r
1083 eRes = Math.min(eRes, aa.annotations.length);
\r
1084 g.setColor(Color.white);
\r
1085 g.fillRect(0, 0, width, y);
\r
1086 g.setColor(new Color(0, 0, 180));
\r
1088 int x = 0, height;
\r
1090 for (int j = sRes; j < eRes; j++)
\r
1092 if (aa.annotations[j].colour == null)
\r
1093 g.setColor(Color.black);
\r
1095 g.setColor(aa.annotations[j].colour);
\r
1097 height = (int) ( (aa.annotations[j].value / aa.graphMax) * GRAPH_HEIGHT);
\r
1102 g.fillRect(x, y - height, av.charWidth, height);
\r
1103 x += av.charWidth;
\r