X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FIdwidthAdjuster.java;h=4ba069922ee9622fe1857ea077f172b3a76aa166;hb=fa9da54fb97cb2eacb1af7859024d90166bddb8f;hp=c6d5d2a1e56282bc2e9cf9e97e250416bb48f5d4;hpb=3ab70c7242fba39a5106deb39882648bacfc2ba6;p=jalview.git diff --git a/src/jalview/gui/IdwidthAdjuster.java b/src/jalview/gui/IdwidthAdjuster.java index c6d5d2a..4ba0699 100755 --- a/src/jalview/gui/IdwidthAdjuster.java +++ b/src/jalview/gui/IdwidthAdjuster.java @@ -22,6 +22,7 @@ package jalview.gui; import jalview.api.AlignViewportI; +import java.awt.Color; import java.awt.Cursor; import java.awt.Graphics; import java.awt.event.MouseEvent; @@ -39,7 +40,7 @@ import javax.swing.JPanel; public class IdwidthAdjuster extends JPanel implements MouseListener, MouseMotionListener { - boolean active = false; + public static final int MIN_ID_WIDTH = 20; int oldX = 0; @@ -54,16 +55,15 @@ public class IdwidthAdjuster extends JPanel public IdwidthAdjuster(AlignmentPanel ap) { this.ap = ap; - + setBackground(Color.white); addMouseListener(this); addMouseMotionListener(this); } /** - * DOCUMENT ME! + * Action on mouse pressed is to save the start position for any drag * * @param evt - * DOCUMENT ME! */ @Override public void mousePressed(MouseEvent evt) @@ -72,118 +72,103 @@ public class IdwidthAdjuster extends JPanel } /** - * DOCUMENT ME! + * On release of mouse drag to resize the width, if there is a complementary + * alignment in a split frame, sets the complement to the same id width and + * repaints the split frame. Note this is done whether or not the protein + * characters are scaled to codon width. * * @param evt - * DOCUMENT ME! */ @Override public void mouseReleased(MouseEvent evt) { - active = false; repaint(); /* - * If in a SplitFrame with co-scaled alignments, set the other's id width to - * match + * If in a SplitFrame, set the other's id width to match */ final AlignViewportI viewport = ap.getAlignViewport(); - if (viewport.getCodingComplement() != null - && viewport.isScaleProteinAsCdna()) + if (viewport.getCodingComplement() != null) { viewport.getCodingComplement().setIdWidth(viewport.getIdWidth()); SplitFrame sf = (SplitFrame) ap.alignFrame.getSplitViewContainer(); sf.repaint(); } - } /** - * DOCUMENT ME! + * When this region is entered, repaints to show a left-right move cursor * * @param evt - * DOCUMENT ME! */ @Override public void mouseEntered(MouseEvent evt) { - active = true; repaint(); } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseExited(MouseEvent evt) { - active = false; - repaint(); } /** - * DOCUMENT ME! + * Adjusts the id panel width for a mouse drag left or right (subject to a + * minimum of 20 pixels) and repaints the alignment * * @param evt - * DOCUMENT ME! */ @Override public void mouseDragged(MouseEvent evt) { - active = true; - + int mouseX = evt.getX(); final AlignViewportI viewport = ap.getAlignViewport(); int curwidth = viewport.getIdWidth(); - int dif = evt.getX() - oldX; + int dif = mouseX - oldX; final int newWidth = curwidth + dif; - if ((newWidth > 20) || (dif > 0)) - { - viewport.setIdWidth(newWidth); - ap.paintAlignment(true, false); + /* + * don't drag below minimum width + */ + if (newWidth < MIN_ID_WIDTH) + { + return; } oldX = evt.getX(); + + /* + * don't drag right if mouse is to the left of the region + */ + if (dif > 0 && mouseX < 0) + { + return; + } + viewport.setIdWidth(newWidth); + ap.paintAlignment(true, false); } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseMoved(MouseEvent evt) { } - /** - * DOCUMENT ME! - * - * @param evt - * DOCUMENT ME! - */ @Override public void mouseClicked(MouseEvent evt) { } /** - * DOCUMENT ME! + * Paints this region, showing a left-right move cursor if currently 'active' * * @param g - * DOCUMENT ME! */ @Override public void paintComponent(Graphics g) { - if (active) - { - setCursor(Cursor.getPredefinedCursor(Cursor.W_RESIZE_CURSOR)); - } + g.setColor(Color.white); + g.fillRect(0, 0, getWidth(), getHeight()); + setCursor(Cursor.getPredefinedCursor(Cursor.W_RESIZE_CURSOR)); } }