profile visualizations are now logos
[jalview.git] / src / jalview / gui / AnnotationLabels.java
index 8050490..87955b0 100755 (executable)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
- * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
+ * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
  * 
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -38,6 +38,8 @@ import jalview.io.*;
 public class AnnotationLabels extends JPanel implements MouseListener,
         MouseMotionListener, ActionListener
 {
+  static String TOGGLE_LABELSCALE = "Scale Label to Column";
+
   static String ADDNEW = "Add New Row";
 
   static String EDITNAME = "Edit Label/Description";
@@ -214,13 +216,23 @@ public class AnnotationLabels extends JPanel implements MouseListener,
     }
     else if (evt.getActionCommand().equals(COPYCONS_SEQ))
     {
-      SequenceI cons = av.getConsensusSeq();
+      SequenceI cons = null;
+      if (aa[selectedRow].groupRef!=null)
+      {
+        cons = aa[selectedRow].groupRef.getConsensusSeq();
+      } else {
+        cons = av.getConsensusSeq();
+      }
       if (cons != null)
       {
         copy_annotseqtoclipboard(cons);
       }
 
     }
+    else if (evt.getActionCommand().equals(TOGGLE_LABELSCALE))
+    {
+      aa[selectedRow].scaleColLabel = !aa[selectedRow].scaleColLabel; 
+    }
 
     ap.annotationPanel.adjustPanelHeight();
     ap.annotationScroller.validate();
@@ -413,12 +425,50 @@ public class AnnotationLabels extends JPanel implements MouseListener,
    */
   public void mouseClicked(MouseEvent evt)
   {
+    AlignmentAnnotation[] aa = ap.av.alignment.getAlignmentAnnotation();
+    if (SwingUtilities.isLeftMouseButton(evt))
+    {
+      if (selectedRow < aa.length)
+        {
+        if (aa[selectedRow].groupRef!=null)
+        {
+          if (evt.getClickCount()>=2)
+          {
+            // todo: make the ap scroll to the selection
+            ap.seqPanel.ap.idPanel.highlightSearchResults(null);
+            ap.av.setSelectionGroup(//new SequenceGroup(
+                    aa[selectedRow].groupRef); // );
+            ap.paintAlignment(false);
+          } else {
+            ap.seqPanel.ap.idPanel.highlightSearchResults(aa[selectedRow].groupRef.getSequences(null));
+          }
+          return;
+        } else 
+        if (aa[selectedRow].sequenceRef!=null){
+          Vector sr = new Vector();
+          sr.addElement(aa[selectedRow].sequenceRef);
+          if (evt.getClickCount()==1)
+          {
+          ap.seqPanel.ap.idPanel.highlightSearchResults(sr);
+          } else
+            if (evt.getClickCount()>=2)
+          {
+              ap.seqPanel.ap.idPanel.highlightSearchResults(null);
+              SequenceGroup sg = new SequenceGroup();
+            sg.addSequence(aa[selectedRow].sequenceRef,false);
+            ap.av.setSelectionGroup(sg);
+            ap.paintAlignment(false);
+            PaintRefresher.Refresh(ap, ap.av.getSequenceSetId());
+          }
+          
+        }
+      }
+    }
     if (!SwingUtilities.isRightMouseButton(evt))
     {
       return;
     }
 
-    AlignmentAnnotation[] aa = ap.av.alignment.getAlignmentAnnotation();
 
     JPopupMenu pop = new JPopupMenu("Annotations");
     JMenuItem item = new JMenuItem(ADDNEW);
@@ -449,25 +499,132 @@ public class AnnotationLabels extends JPanel implements MouseListener,
     item = new JMenuItem(OUTPUT_TEXT);
     item.addActionListener(this);
     pop.add(item);
-    // annotation object should be typed
-    if (selectedRow < aa.length && aa[selectedRow] == ap.av.consensus)
+    // TODO: annotation object should be typed for autocalculated/derived property methods
+    if (selectedRow < aa.length)
     {
-      pop.addSeparator();
-      final JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem(
-              "Ignore Gaps In Consensus", ap.av.getIgnoreGapsConsensus());
-      cbmi.addActionListener(new ActionListener()
+      if (!aa[selectedRow].autoCalculated) {
+        if (aa[selectedRow].graph==AlignmentAnnotation.NO_GRAPH)
+        {
+          // display formatting settings for this row.
+          pop.addSeparator();
+          // av and sequencegroup need to implement same interface for
+          item = new JCheckBoxMenuItem(TOGGLE_LABELSCALE,
+                aa[selectedRow].scaleColLabel);
+          item.addActionListener(this);
+          pop.add(item);
+        }
+      }
+      else if (aa[selectedRow].label.indexOf("Consensus") > -1)
       {
-        public void actionPerformed(ActionEvent e)
+        pop.addSeparator();
+        // av and sequencegroup need to implement same interface for
+        final JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem(
+                "Ignore Gaps In Consensus",
+                (aa[selectedRow].groupRef != null) ? aa[selectedRow].groupRef
+                        .getIgnoreGapsConsensus()
+                        : ap.av.getIgnoreGapsConsensus());
+        final AlignmentAnnotation aaa = aa[selectedRow];
+        cbmi.addActionListener(new ActionListener()
         {
-          ap.av.setIgnoreGapsConsensus(cbmi.getState(), ap);
+          public void actionPerformed(ActionEvent e)
+          {
+            if (aaa.groupRef != null)
+            {
+           // TODO: pass on reference to ap so the view can be updated.
+              aaa.groupRef.setIgnoreGapsConsensus(cbmi.getState()); 
+              ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
+            }
+            else
+            {
+              ap.av.setIgnoreGapsConsensus(cbmi.getState(), ap);
+            }
+          }
+        });
+        pop.add(cbmi);
+        // av and sequencegroup need to implement same interface for
+        if (aaa.groupRef != null)
+        {
+          final JCheckBoxMenuItem chist = new JCheckBoxMenuItem(
+                  "Show Group Histogram", aa[selectedRow].groupRef
+                          .isShowConsensusHistogram());
+          chist.addActionListener(new ActionListener()
+          {
+            public void actionPerformed(ActionEvent e)
+            {
+              // TODO: pass on reference
+              // to ap
+              // so the
+              // view
+              // can be
+              // updated.
+              aaa.groupRef.setShowConsensusHistogram(chist.getState());
+              ap.repaint();
+              // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
+            }
+          });
+          pop.add(chist);
+          final JCheckBoxMenuItem cprof = new JCheckBoxMenuItem(
+                  "Show Group Logo", aa[selectedRow].groupRef
+                          .isShowSequenceLogo());
+          cprof.addActionListener(new ActionListener()
+          {
+            public void actionPerformed(ActionEvent e)
+            {
+              // TODO: pass on reference
+              // to ap
+              // so the
+              // view
+              // can be
+              // updated.
+              aaa.groupRef.setIncludeAllConsSymbols(cprof.getState());
+              ap.repaint();
+              // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
+            }
+          });
+          pop.add(cprof);
+        } else {
+          final JCheckBoxMenuItem chist = new JCheckBoxMenuItem(
+                  "Show Histogram", av.isShowConsensusHistogram());
+          chist.addActionListener(new ActionListener()
+          {
+            public void actionPerformed(ActionEvent e)
+            {
+              // TODO: pass on reference
+              // to ap
+              // so the
+              // view
+              // can be
+              // updated.
+              av.setShowConsensusHistogram(chist.getState());
+              ap.repaint();
+              // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
+            }
+          });
+          pop.add(chist);
+          final JCheckBoxMenuItem cprof = new JCheckBoxMenuItem(
+                  "Show Logo", av.isShowSequenceLogo());
+          cprof.addActionListener(new ActionListener()
+          {
+            public void actionPerformed(ActionEvent e)
+            {
+              // TODO: pass on reference
+              // to ap
+              // so the
+              // view
+              // can be
+              // updated.
+              av.setShowSequenceLogo(cprof.getState());
+              ap.repaint();
+              // ap.annotationPanel.paint(ap.annotationPanel.getGraphics());
+            }
+          });
+          pop.add(cprof);   
         }
-      });
-      pop.add(cbmi);
-      final JMenuItem consclipbrd = new JMenuItem(COPYCONS_SEQ);
-      consclipbrd.addActionListener(this);
-      pop.add(consclipbrd);
+        final JMenuItem consclipbrd = new JMenuItem(COPYCONS_SEQ);
+        consclipbrd.addActionListener(this);
+        pop.add(consclipbrd);
+      }
     }
-
     pop.show(this, evt.getX(), evt.getY());
   }