X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FIdwidthAdjuster.java;h=b5371124c118bdb4ac4948fa3288451b79dd9b60;hb=97b26ba418dec7a6e926378205d25470bf098633;hp=c779fee24c801d9b1bcffa9e2844d586acef8dbe;hpb=2de8acfae59aced665e4c37ad0f7dcc2ed68818e;p=jalview.git diff --git a/src/jalview/appletgui/IdwidthAdjuster.java b/src/jalview/appletgui/IdwidthAdjuster.java index c779fee..b537112 100755 --- a/src/jalview/appletgui/IdwidthAdjuster.java +++ b/src/jalview/appletgui/IdwidthAdjuster.java @@ -1,25 +1,33 @@ /* - * 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 + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * This file is part of Jalview. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.appletgui; -import java.awt.*; -import java.awt.event.*; +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Graphics; +import java.awt.Image; +import java.awt.Panel; +import java.awt.event.MouseEvent; +import java.awt.event.MouseListener; +import java.awt.event.MouseMotionListener; public class IdwidthAdjuster extends Panel implements MouseListener, MouseMotionListener @@ -55,6 +63,26 @@ public class IdwidthAdjuster extends Panel implements MouseListener, { active = false; repaint(); + + /* + * If in a SplitFrame with co-scaled alignments, set the other's id width to + * match; note applet does not (yet) store this in ViewStyle + */ + /* + * Code disabled for now as it doesn't work, don't know why; idCanvas width + * keeps resetting to a previous value (actually two alternating values!) + */ + // final AlignViewportI viewport = ap.getAlignViewport(); + // if (viewport.getCodingComplement() != null + // && viewport.isScaleProteinAsCdna()) + // { + // Dimension d = ap.idPanel.idCanvas.getSize(); + // SplitFrame sf = ap.alignFrame.getSplitFrame(); + // final AlignmentPanel otherPanel = + // sf.getComplement(ap.alignFrame).alignPanel; + // otherPanel.setIdWidth(d.width, d.height); + // otherPanel.repaint(); + // } } public void mouseEntered(MouseEvent evt) @@ -75,13 +103,13 @@ public class IdwidthAdjuster extends Panel implements MouseListener, Dimension d = ap.idPanel.idCanvas.getSize(); int dif = evt.getX() - oldX; - if (d.width + dif > 20 || dif > 0) + final int newWidth = d.width + dif; + if (newWidth > 20 || dif > 0) { - ap.setIdWidth(d.width + dif, d.height); - this.setSize(d.width + dif, getSize().height); + ap.setIdWidth(newWidth, d.height); + this.setSize(newWidth, getSize().height); + oldX = evt.getX(); } - - oldX = evt.getX(); } public void mouseMoved(MouseEvent evt)