X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fgui%2FScalePanel.java;h=19b26c8217a7f710becb1868385987d8b4dcadbd;hb=f2a4334ccce440e1e84bab27ec5d08af1494a7f8;hp=e2fd20b3b33cab9a254db5264f68a1d16a48f079;hpb=c5db2e1951d834169caae93721d3af96391784ad;p=jalview.git diff --git a/src/jalview/gui/ScalePanel.java b/src/jalview/gui/ScalePanel.java index e2fd20b..19b26c8 100755 --- a/src/jalview/gui/ScalePanel.java +++ b/src/jalview/gui/ScalePanel.java @@ -1,110 +1,283 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer + * Copyright (C) 2005 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 + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * 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. + * + * 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 + */ package jalview.gui; import jalview.datamodel.*; + import java.awt.*; import java.awt.event.*; + import javax.swing.*; + +/** + * DOCUMENT ME! + * + * @author $author$ + * @version $Revision$ + */ public class ScalePanel extends JPanel { + protected int offy = 4; + + /** DOCUMENT ME!! */ + public int width; + protected AlignViewport av; + AlignmentPanel ap; + boolean stretchingGroup = false; + int min; //used by mouseDragged to see if user + int max; //used by mouseDragged to see if user + + // wants to delete columns + public ScalePanel(AlignViewport av, AlignmentPanel ap) + { + this.av = av; + this.ap = ap; + + addMouseListener(new MouseAdapter() + { + public void mousePressed(MouseEvent evt) + { + doMousePressed(evt); + } + + public void mouseReleased(MouseEvent evt) + { + doMouseReleased(evt); + } + }); + addMouseMotionListener(new MouseMotionAdapter() + { + public void mouseDragged(MouseEvent evt) + { + doMouseDragged(evt); + } + }); + } + + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void doMousePressed(MouseEvent evt) + { + int x = evt.getX(); + int res = (x / av.getCharWidth()) + av.getStartRes(); + SequenceGroup sg = null; + + min = res; + max = res; - protected ScaleCanvas scaleCanvas; + if (av.getColumnSelection().contains(res)) + { + av.getColumnSelection().removeElement(res); + ap.annotationPanel.removeEditableColumn(res); + } + else + { + av.getColumnSelection().addElement(res); + sg = new SequenceGroup(); - protected int offy; - public int width; + for (int i = 0; i < av.alignment.getSequences().size(); i++) + { + sg.addSequence(av.alignment.getSequenceAt(i), false); + } - protected AlignViewport av; - AlignmentPanel ap; + sg.setStartRes(res); + sg.setEndRes(res); + } - public ScalePanel(AlignViewport av, AlignmentPanel ap) - { - this.av = av; - this.ap = ap; + av.setSelectionGroup(sg); + ap.repaint(); + } - scaleCanvas = new ScaleCanvas(av); - setLayout(new BorderLayout()); - add(scaleCanvas, BorderLayout.CENTER); - addMouseListener(new MouseAdapter() + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void doMouseReleased(MouseEvent evt) { - public void mousePressed(MouseEvent evt) - { - doMousePressed(evt); - } - public void mouseReleased(MouseEvent evt) - { - doMouseReleased(evt); - } - - }); - addMouseMotionListener(new MouseMotionAdapter() + int x = evt.getX(); + int res = (x / av.getCharWidth()) + av.getStartRes(); + + if (av.getColumnSelection() != null) + { + for (int i = 0; i < av.getColumnSelection().size(); i++) + { + ap.annotationPanel.addEditableColumn(av.getColumnSelection() + .columnAt(i)); + } + } + + if (!stretchingGroup) + { + ap.repaint(); + + return; + } + + SequenceGroup sg = av.getSelectionGroup(); + + if (res > sg.getStartRes()) + { + sg.setEndRes(res); + } + else if (res < sg.getStartRes()) + { + sg.setStartRes(res); + } + + stretchingGroup = false; + ap.repaint(); + } + + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void doMouseDragged(MouseEvent evt) { - public void mouseDragged(MouseEvent evt) - { - doMouseDragged(evt); - } - }); + int x = evt.getX(); + int res = (x / av.getCharWidth()) + av.getStartRes(); + + if (res < min) + { + min = res; + } - } + if (res > max) + { + max = res; + } - public Dimension getMinimumSize() { - return scaleCanvas.getMinimumSize(); - } + SequenceGroup sg = av.getSelectionGroup(); - public Dimension getPreferredSize() { - return scaleCanvas.getPreferredSize(); - } + if (sg != null) + { + stretchingGroup = true; - public void doMousePressed(MouseEvent evt) { - int x = evt.getX(); - int res = x/av.getCharWidth() + av.getStartRes(); + if (!av.getColumnSelection().contains(res)) + { + av.getColumnSelection().addElement(res); + } - if (! av.getColumnSelection().contains(res)) - av.getColumnSelection().addElement(res); - else - return; + if (res > sg.getStartRes()) + { + sg.setEndRes(res); + } + else if (res < sg.getStartRes()) + { + sg.setStartRes(res); + } - SequenceGroup sg = new SequenceGroup(); - for(int i=0; i sg.getEndRes())) + { + av.getColumnSelection().removeElement(i); + ap.annotationPanel.removeEditableColumn(res); + } + else + { + av.getColumnSelection().addElement(i); + } + } - sg.setStartRes(res); - sg.setEndRes(res); - av.setRubberbandGroup(sg); - ap.RefreshPanels(); - } + ap.repaint(); + } + } - public void doMouseReleased(MouseEvent evt) - { - int x = evt.getX(); - int res = x/av.getCharWidth() + av.getStartRes(); + /** + * DOCUMENT ME! + * + * @param g DOCUMENT ME! + */ + public void paintComponent(Graphics g) + { + drawScale(g, av.getStartRes(), av.getEndRes(), getWidth(), getHeight()); + } + + // scalewidth will normally be screenwidth, + public void drawScale(Graphics g, int startx, int endx, int width, + int height) + { + Graphics2D gg = (Graphics2D) g; + gg.setFont(av.getFont()); - if (! av.getColumnSelection().contains(res)) - av.getColumnSelection().addElement(res); + if(av.antiAlias) + gg.setRenderingHint(RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); - SequenceGroup sg = av.getRubberbandGroup(); + //Fill in the background + gg.setColor(Color.white); + gg.fillRect(0, 0, width, height); + gg.setColor(Color.black); - if(res>sg.getStartRes()) - sg.setEndRes(res); - else if(res= startx) && (sel <= endx)) + { + gg.fillRect((sel - startx) * av.charWidth, 0, av.charWidth, + getHeight()); + } + } - SequenceGroup sg = av.getRubberbandGroup(); + // Draw the scale numbers + gg.setColor(Color.black); - if(res>sg.getStartRes()) - sg.setEndRes(res); - else if(res