X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAnnotationLabels.java;h=b94a615fde23941f0c20521f211edd0f8948b4f3;hb=728ae344b37e93155d8f54173535f8367bf25f07;hp=d497488c6579101c1736cceb9d15cb4f04af5b2f;hpb=8b27085fa7fc5f2877e078421284c2636b85b8c6;p=jalview.git diff --git a/src/jalview/gui/AnnotationLabels.java b/src/jalview/gui/AnnotationLabels.java index d497488..b94a615 100755 --- a/src/jalview/gui/AnnotationLabels.java +++ b/src/jalview/gui/AnnotationLabels.java @@ -52,7 +52,6 @@ import java.awt.image.BufferedImage; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; -import java.util.List; import java.util.regex.Pattern; import javax.swing.JCheckBoxMenuItem; @@ -68,8 +67,8 @@ import javax.swing.ToolTipManager; * @author $author$ * @version $Revision$ */ -public class AnnotationLabels extends JPanel implements MouseListener, - MouseMotionListener, ActionListener +public class AnnotationLabels extends JPanel + implements MouseListener, MouseMotionListener, ActionListener { private static final Pattern LEFT_ANGLE_BRACKET_PATTERN = Pattern .compile("<"); @@ -220,6 +219,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, AlignmentAnnotation[] aa = ap.av.getAlignment() .getAlignmentAnnotation(); + boolean fullRepaint = false; if (evt.getActionCommand().equals(ADDNEW)) { AlignmentAnnotation newAnnotation = new AlignmentAnnotation(null, @@ -232,11 +232,16 @@ public class AnnotationLabels extends JPanel implements MouseListener, ap.av.getAlignment().addAnnotation(newAnnotation); ap.av.getAlignment().setAnnotationIndex(newAnnotation, 0); + fullRepaint = true; } else if (evt.getActionCommand().equals(EDITNAME)) { + String name = aa[selectedRow].label; editLabelDescription(aa[selectedRow]); - repaint(); + if (!name.equalsIgnoreCase(aa[selectedRow].label)) + { + fullRepaint = true; + } } else if (evt.getActionCommand().equals(HIDE)) { @@ -246,6 +251,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, { ap.av.getAlignment().deleteAnnotation(aa[selectedRow]); ap.av.getCalcManager().removeWorkerForAnnotation(aa[selectedRow]); + fullRepaint = true; } else if (evt.getActionCommand().equals(SHOWALL)) { @@ -256,11 +262,13 @@ public class AnnotationLabels extends JPanel implements MouseListener, aa[i].visible = true; } } + fullRepaint = true; } else if (evt.getActionCommand().equals(OUTPUT_TEXT)) { new AnnotationExporter().exportAnnotations(ap, - new AlignmentAnnotation[] { aa[selectedRow] }); + new AlignmentAnnotation[] + { aa[selectedRow] }); } else if (evt.getActionCommand().equals(COPYCONS_SEQ)) { @@ -284,21 +292,11 @@ public class AnnotationLabels extends JPanel implements MouseListener, aa[selectedRow].scaleColLabel = !aa[selectedRow].scaleColLabel; } - refresh(); + ap.refresh(fullRepaint); } /** - * Redraw sensibly. - */ - protected void refresh() - { - ap.validateAnnotationDimensions(false); - ap.addNotify(); - ap.repaint(); - } - - /** * DOCUMENT ME! * * @param e @@ -306,6 +304,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, */ boolean editLabelDescription(AlignmentAnnotation annotation) { + // TODO i18n EditNameDialog dialog = new EditNameDialog(annotation.label, annotation.description, " Annotation Name ", "Annotation Description ", "Edit Annotation Name/Description", @@ -333,12 +332,20 @@ public class AnnotationLabels extends JPanel implements MouseListener, { getSelectedRow(evt.getY() - getScrollOffset()); oldY = evt.getY(); - if (!evt.isPopupTrigger()) + if (evt.isPopupTrigger()) { - return; + showPopupMenu(evt); } + } + + /** + * Build and show the Pop-up menu at the right-click mouse position + * + * @param evt + */ + void showPopupMenu(MouseEvent evt) + { evt.consume(); - // handle popup menu event final AlignmentAnnotation[] aa = ap.av.getAlignment() .getAlignmentAnnotation(); @@ -391,7 +398,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, // ann.visible = false; // } // } - refresh(); + ap.refresh(true); } }); pop.add(hideType); @@ -433,9 +440,9 @@ public class AnnotationLabels extends JPanel implements MouseListener, // av and sequencegroup need to implement same interface for final JCheckBoxMenuItem cbmi = new JCheckBoxMenuItem( MessageManager.getString("label.ignore_gaps_consensus"), - (aa[selectedRow].groupRef != null) ? aa[selectedRow].groupRef - .getIgnoreGapsConsensus() : ap.av - .isIgnoreGapsConsensus()); + (aa[selectedRow].groupRef != null) + ? aa[selectedRow].groupRef.getIgnoreGapsConsensus() + : ap.av.isIgnoreGapsConsensus()); final AlignmentAnnotation aaa = aa[selectedRow]; cbmi.addActionListener(new ActionListener() { @@ -446,13 +453,14 @@ public class AnnotationLabels extends JPanel implements MouseListener, { // TODO: pass on reference to ap so the view can be updated. aaa.groupRef.setIgnoreGapsConsensus(cbmi.getState()); - ap.getAnnotationPanel().paint( - ap.getAnnotationPanel().getGraphics()); + ap.getAnnotationPanel() + .paint(ap.getAnnotationPanel().getGraphics()); } else { ap.av.setIgnoreGapsConsensus(cbmi.getState(), ap); } + ap.alignmentChanged(); } }); pop.add(cbmi); @@ -596,7 +604,6 @@ public class AnnotationLabels extends JPanel implements MouseListener, } } pop.show(this, evt.getX(), evt.getY()); - } /** @@ -608,6 +615,12 @@ public class AnnotationLabels extends JPanel implements MouseListener, @Override public void mouseReleased(MouseEvent evt) { + if (evt.isPopupTrigger()) + { + showPopupMenu(evt); + return; + } + int start = selectedRow; getSelectedRow(evt.getY() - getScrollOffset()); int end = selectedRow; @@ -687,12 +700,12 @@ public class AnnotationLabels extends JPanel implements MouseListener, if ((d.height - dif) > 20) { - ap.annotationScroller.setPreferredSize(new Dimension(d.width, - d.height - dif)); + ap.annotationScroller + .setPreferredSize(new Dimension(d.width, d.height - dif)); d = ap.annotationSpaceFillerHolder.getPreferredSize(); - ap.annotationSpaceFillerHolder.setPreferredSize(new Dimension( - d.width, d.height - dif)); - ap.paintAlignment(true); + ap.annotationSpaceFillerHolder + .setPreferredSize(new Dimension(d.width, d.height - dif)); + ap.paintAlignment(true, false); } ap.addNotify(); @@ -716,8 +729,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, getSelectedRow(evt.getY() - getScrollOffset()); - if (selectedRow > -1 - && ap.av.getAlignment().getAlignmentAnnotation().length > selectedRow) + if (selectedRow > -1 && ap.av.getAlignment() + .getAlignmentAnnotation().length > selectedRow) { AlignmentAnnotation aa = ap.av.getAlignment() .getAlignmentAnnotation()[selectedRow]; @@ -731,8 +744,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, // tooltips desc.append(aa.getDescription(true).trim()); // check to see if the description is an html fragment. - if (desc.length() < 6 - || (desc.substring(0, 6).toLowerCase().indexOf("") < 0)) + if (desc.length() < 6 || (desc.substring(0, 6).toLowerCase() + .indexOf("") < 0)) { // clean the description ready for embedding in html desc = new StringBuffer(LEFT_ANGLE_BRACKET_PATTERN.matcher(desc) @@ -806,17 +819,16 @@ public class AnnotationLabels extends JPanel implements MouseListener, ap.getSeqPanel().ap.getIdPanel().highlightSearchResults(null); // process modifiers SequenceGroup sg = ap.av.getSelectionGroup(); - if (sg == null - || sg == aa[selectedRow].groupRef - || !(jalview.util.Platform.isControlDown(evt) || evt - .isShiftDown())) + if (sg == null || sg == aa[selectedRow].groupRef + || !(jalview.util.Platform.isControlDown(evt) + || evt.isShiftDown())) { if (jalview.util.Platform.isControlDown(evt) || evt.isShiftDown()) { // clone a new selection group from the associated group - ap.av.setSelectionGroup(new SequenceGroup( - aa[selectedRow].groupRef)); + ap.av.setSelectionGroup( + new SequenceGroup(aa[selectedRow].groupRef)); } else { @@ -843,7 +855,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, } } - ap.paintAlignment(false); + ap.paintAlignment(false, false); PaintRefresher.Refresh(ap, ap.av.getSequenceSetId()); ap.av.sendSelection(); } @@ -858,10 +870,9 @@ public class AnnotationLabels extends JPanel implements MouseListener, { if (evt.getClickCount() == 1) { - ap.getSeqPanel().ap - .getIdPanel() - .highlightSearchResults( - Arrays.asList(new SequenceI[] { aa[selectedRow].sequenceRef })); + ap.getSeqPanel().ap.getIdPanel() + .highlightSearchResults(Arrays.asList(new SequenceI[] + { aa[selectedRow].sequenceRef })); } else if (evt.getClickCount() >= 2) { @@ -872,8 +883,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, // we make a copy rather than edit the current selection if no // modifiers pressed // see Enhancement JAL-1557 - if (!(jalview.util.Platform.isControlDown(evt) || evt - .isShiftDown())) + if (!(jalview.util.Platform.isControlDown(evt) + || evt.isShiftDown())) { sg = new SequenceGroup(sg); sg.clear(); @@ -901,7 +912,7 @@ public class AnnotationLabels extends JPanel implements MouseListener, sg.addSequence(aa[selectedRow].sequenceRef, false); } ap.av.setSelectionGroup(sg); - ap.paintAlignment(false); + ap.paintAlignment(false, false); PaintRefresher.Refresh(ap, ap.av.getSequenceSetId()); ap.av.sendSelection(); } @@ -934,17 +945,17 @@ public class AnnotationLabels extends JPanel implements MouseListener, Alignment ds = new Alignment(dseqs); if (av.hasHiddenColumns()) { - omitHidden = av.getColumnSelection().getVisibleSequenceStrings(0, - sq.getLength(), seqs); + omitHidden = av.getAlignment().getHiddenColumns() + .getVisibleSequenceStrings(0, sq.getLength(), seqs); } int[] alignmentStartEnd = new int[] { 0, ds.getWidth() - 1 }; - List hiddenCols = av.getColumnSelection().getHiddenColumns(); - if (hiddenCols != null) + if (av.hasHiddenColumns()) { - alignmentStartEnd = av.getAlignment().getVisibleStartAndEndIndex( - hiddenCols); + alignmentStartEnd = av.getAlignment().getHiddenColumns() + .getVisibleStartAndEndIndex(av.getAlignment().getWidth()); } + String output = new FormatAdapter().formatSequences(FileFormat.Fasta, seqs, omitHidden, alignmentStartEnd); @@ -952,13 +963,11 @@ public class AnnotationLabels extends JPanel implements MouseListener, .setContents(new StringSelection(output), Desktop.instance); ArrayList hiddenColumns = null; + if (av.hasHiddenColumns()) { - hiddenColumns = new ArrayList(); - for (int[] region : av.getColumnSelection().getHiddenColumns()) - { - hiddenColumns.add(new int[] { region[0], region[1] }); - } + hiddenColumns = av.getAlignment().getHiddenColumns() + .getHiddenColumnsCopy(); } Desktop.jalviewClipboard = new Object[] { seqs, ds, // what is the dataset @@ -1054,8 +1063,9 @@ public class AnnotationLabels extends JPanel implements MouseListener, int ofontH = fontHeight; int sOffset = 0; int visHeight = 0; - int[] visr = (ap != null && ap.getAnnotationPanel() != null) ? ap - .getAnnotationPanel().getVisibleVRange() : null; + int[] visr = (ap != null && ap.getAnnotationPanel() != null) + ? ap.getAnnotationPanel().getVisibleVRange() + : null; if (clip && visr != null) { sOffset = visr[0]; @@ -1098,8 +1108,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, { if (debugRedraw) { - System.out.println("Scroll offset: " + sOffset - + " after vis: " + i); + System.out.println( + "Scroll offset: " + sOffset + " after vis: " + i); } after = true; } @@ -1137,7 +1147,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, } if (groupSize * (fontHeight + 8) < aa[i].height) { - graphExtras = (aa[i].height - (groupSize * (fontHeight + 8))) / 2; + graphExtras = (aa[i].height - (groupSize * (fontHeight + 8))) + / 2; } else { @@ -1151,11 +1162,12 @@ public class AnnotationLabels extends JPanel implements MouseListener, { fontHeight = -8 + (int) h; s = ((float) fontHeight) / (float) ofontH; - Font f = baseFont.deriveFont(AffineTransform - .getScaleInstance(s, s)); + Font f = baseFont + .deriveFont(AffineTransform.getScaleInstance(s, s)); g.setFont(f); fm = g.getFontMetrics(); - graphExtras = (aa[i].height - (groupSize * (fontHeight + 8))) / 2; + graphExtras = (aa[i].height - (groupSize * (fontHeight + 8))) + / 2; } } if (visible) @@ -1172,8 +1184,8 @@ public class AnnotationLabels extends JPanel implements MouseListener, g.setColor(aa[gg]._linecolour); g.drawLine(x, y - graphExtras + 3, - x + fm.stringWidth(aa[gg].label), y - graphExtras - + 3); + x + fm.stringWidth(aa[gg].label), + y - graphExtras + 3); } g.setColor(Color.black);