Formatting
[jalview.git] / src / jalview / appletgui / AnnotationLabels.java
index 48cea13..bf6d38d 100755 (executable)
@@ -1,6 +1,6 @@
 /*\r
  * Jalview - A Sequence Alignment Editor and Viewer\r
- * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
+ * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
  *\r
  * This program is free software; you can redistribute it and/or\r
  * modify it under the terms of the GNU General Public License\r
 \r
 package jalview.appletgui;\r
 \r
+import java.util.*;\r
+\r
 import java.awt.*;\r
 import java.awt.event.*;\r
-import java.util.Vector;\r
 \r
 import jalview.datamodel.*;\r
 \r
@@ -34,7 +35,7 @@ public class AnnotationLabels
   AlignViewport av;\r
   boolean resizing = false;\r
   int oldY, mouseX;\r
-  static String ADDNEW = "Add new row";\r
+  static String EDITNAME = "Edit label/description";\r
   static String HIDE = "Hide this row";\r
   static String DELETE = "Delete this row";\r
   static String SHOWALL = "Show all hidden rows";\r
@@ -56,10 +57,9 @@ public class AnnotationLabels
   }\r
 \r
   public AnnotationLabels(AlignViewport av)\r
-{\r
-  this.av = av;\r
-}\r
-\r
+  {\r
+    this.av = av;\r
+  }\r
 \r
   public void setScrollOffset(int y)\r
   {\r
@@ -72,8 +72,10 @@ public class AnnotationLabels
     selectedRow = -1;\r
     AlignmentAnnotation[] aa = ap.av.alignment.getAlignmentAnnotation();\r
 \r
-    if(aa==null)\r
+    if (aa == null)\r
+    {\r
       return;\r
+    }\r
 \r
     int height = 0;\r
     for (int i = 0; i < aa.length; i++)\r
@@ -96,6 +98,23 @@ public class AnnotationLabels
   {\r
     AlignmentAnnotation[] aa = av.alignment.getAlignmentAnnotation();\r
 \r
+    if (evt.getActionCommand().equals(EDITNAME))\r
+    {\r
+      EditNameDialog dialog = new EditNameDialog(\r
+          aa[selectedRow].label,\r
+          aa[selectedRow].description,\r
+          "       Annotation Label",\r
+          "Annotation Description",\r
+          ap,\r
+          "Edit Annotation Name / Description");\r
+\r
+      if (dialog.accept)\r
+      {\r
+        aa[selectedRow].label = dialog.getName();\r
+        aa[selectedRow].description = dialog.getDescription();\r
+        repaint();\r
+      }\r
+    }\r
     if (evt.getActionCommand().equals(HIDE))\r
     {\r
       aa[selectedRow].visible = false;\r
@@ -119,9 +138,11 @@ public class AnnotationLabels
     }\r
     else if (evt.getActionCommand().equals(COPYCONS_SEQ))\r
     {\r
-      SequenceI cons=av.getConsensusSeq();\r
-      if (cons!=null)\r
+      SequenceI cons = av.getConsensusSeq();\r
+      if (cons != null)\r
+      {\r
         copy_annotseqtoclipboard(cons);\r
+      }\r
 \r
     }\r
     ap.annotationPanel.adjustPanelHeight();\r
@@ -137,16 +158,17 @@ public class AnnotationLabels
     if (selectedRow > -1)\r
     {\r
       if (tooltip == null)\r
+      {\r
         tooltip = new Tooltip(ap.av.alignment.\r
-                                          getAlignmentAnnotation()[selectedRow].\r
-                                          description,\r
-                                          this);\r
+                              getAlignmentAnnotation()[selectedRow].\r
+                              description,\r
+                              this);\r
+      }\r
       else\r
+      {\r
         tooltip.setTip(ap.av.alignment.\r
-                     getAlignmentAnnotation()[selectedRow].description);\r
-\r
-      tooltip.repaint();\r
-\r
+                       getAlignmentAnnotation()[selectedRow].description);\r
+      }\r
     }\r
     else if (tooltip != null)\r
     {\r
@@ -157,20 +179,29 @@ public class AnnotationLabels
 \r
   public void mouseDragged(MouseEvent evt)\r
   {}\r
+\r
   public void mouseClicked(MouseEvent evt)\r
   {}\r
+\r
   public void mouseReleased(MouseEvent evt)\r
   {}\r
+\r
   public void mouseEntered(MouseEvent evt)\r
   {}\r
+\r
   public void mouseExited(MouseEvent evt)\r
   {}\r
+\r
   public void mousePressed(MouseEvent evt)\r
   {\r
     AlignmentAnnotation[] aa = ap.av.alignment.getAlignmentAnnotation();\r
 \r
     PopupMenu pop = new PopupMenu("Annotations");\r
-    MenuItem item = new MenuItem(HIDE);\r
+\r
+    MenuItem item = new MenuItem(EDITNAME);\r
+    item.addActionListener(this);\r
+    pop.add(item);\r
+    item = new MenuItem(HIDE);\r
     item.addActionListener(this);\r
     pop.add(item);\r
     item = new MenuItem(SHOWALL);\r
@@ -181,7 +212,7 @@ public class AnnotationLabels
     item.addActionListener(this);\r
     pop.add(item);\r
 \r
-    if (aa[selectedRow].label.equals("Consensus"))\r
+    if (aa[selectedRow] == ap.av.consensus)\r
     {\r
       pop.addSeparator();\r
       final CheckboxMenuItem cbmi = new CheckboxMenuItem(\r
@@ -197,46 +228,50 @@ public class AnnotationLabels
         }\r
       });\r
       pop.add(cbmi);\r
-      final MenuItem cpcons=new MenuItem(COPYCONS_SEQ);\r
+      final MenuItem cpcons = new MenuItem(COPYCONS_SEQ);\r
       cpcons.addActionListener(this);\r
       pop.add(cpcons);\r
     }\r
 \r
-     pop.show(this, evt.getX(), evt.getY());\r
+    pop.show(this, evt.getX(), evt.getY());\r
 \r
   }\r
-/**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param e DOCUMENT ME!\r
-     */\r
-    protected void copy_annotseqtoclipboard(SequenceI sq)\r
+\r
+  /**\r
+   * DOCUMENT ME!\r
+   *\r
+   * @param e DOCUMENT ME!\r
+   */\r
+  protected void copy_annotseqtoclipboard(SequenceI sq)\r
+  {\r
+    if (sq == null || sq.getLength() < 1)\r
     {\r
-      if (sq==null || sq.getLength()<1)\r
-        return;\r
-      jalview.appletgui.AlignFrame.copiedSequences = new StringBuffer();\r
-      jalview.appletgui.AlignFrame.copiedSequences.append(sq.getName() + "\t" +\r
-          sq.getStart() + "\t" +\r
-          sq.getEnd() + "\t" +\r
-          sq.getSequenceAsString() + "\n");\r
-      if (av.hasHiddenColumns)\r
+      return;\r
+    }\r
+    jalview.appletgui.AlignFrame.copiedSequences = new StringBuffer();\r
+    jalview.appletgui.AlignFrame.copiedSequences.append(sq.getName() + "\t" +\r
+        sq.getStart() + "\t" +\r
+        sq.getEnd() + "\t" +\r
+        sq.getSequenceAsString() + "\n");\r
+    if (av.hasHiddenColumns)\r
+    {\r
+      jalview.appletgui.AlignFrame.copiedHiddenColumns = new Vector();\r
+      for (int i = 0; i < av.getColumnSelection().getHiddenColumns().size(); i++)\r
       {\r
-        jalview.appletgui.AlignFrame.copiedHiddenColumns=new Vector();\r
-        for(int i=0; i<av.getColumnSelection().getHiddenColumns().size(); i++)\r
-        {\r
-          int[] region = (int[])\r
-              av.getColumnSelection().getHiddenColumns().elementAt(i);\r
+        int[] region = (int[])\r
+            av.getColumnSelection().getHiddenColumns().elementAt(i);\r
 \r
-          jalview.appletgui.AlignFrame.copiedHiddenColumns.addElement(new int[]{region[0],\r
-                            region[1]});\r
-        }\r
+        jalview.appletgui.AlignFrame.copiedHiddenColumns.addElement(new int[]\r
+            {region[0],\r
+            region[1]});\r
       }\r
     }\r
+  }\r
 \r
-    public void update(Graphics g)\r
-    {\r
-      paint(g);\r
-    }\r
+  public void update(Graphics g)\r
+  {\r
+    paint(g);\r
+  }\r
 \r
   public void paint(Graphics g)\r
   {\r
@@ -247,7 +282,7 @@ public class AnnotationLabels
     }\r
 \r
     drawComponent(image.getGraphics(), w);\r
-    g.drawImage(image,0,0,this);\r
+    g.drawImage(image, 0, 0, this);\r
   }\r
 \r
   public void drawComponent(Graphics g, int width)\r
@@ -275,14 +310,14 @@ public class AnnotationLabels
 \r
         x = width - fm.stringWidth(aa[i].label) - 3;\r
 \r
-        if (aa[i].graph>0)\r
+        if (aa[i].graph > 0)\r
         {\r
           y += (aa[i].height / 3);\r
         }\r
 \r
         g.drawString(aa[i].label, x, y);\r
 \r
-        if (aa[i].graph>0)\r
+        if (aa[i].graph > 0)\r
         {\r
           y += (2 * aa[i].height / 3);\r
         }\r