X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FScalePanel.java;h=ebf25bf4536f174fa77ce4a9d0473dbf0a8d17f5;hb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;hp=dc80d1bff69aa8023eee8f847f8c04a85d915589;hpb=577f505f54fe343e89f581461e780ea8308c20ec;p=jalview.git diff --git a/src/jalview/gui/ScalePanel.java b/src/jalview/gui/ScalePanel.java index dc80d1b..ebf25bf 100755 --- a/src/jalview/gui/ScalePanel.java +++ b/src/jalview/gui/ScalePanel.java @@ -1,186 +1,480 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer + * Copyright (C) 2007 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.*; -public class ScalePanel extends JPanel -{ +import jalview.datamodel.*; +/** + * DOCUMENT ME! + * + * @author $author$ + * @version $Revision$ + */ +public class ScalePanel + extends JPanel implements MouseMotionListener, MouseListener +{ protected int offy = 4; - public int width; + /** 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 + boolean mouseDragging = false; + // wants to delete columns public ScalePanel(AlignViewport av, AlignmentPanel ap) { - this.av = av; + this.av = av; this.ap = ap; - addMouseListener(new MouseAdapter() + addMouseListener(this); + addMouseMotionListener(this); + } + + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void mousePressed(MouseEvent evt) + { + int x = (evt.getX() / av.getCharWidth()) + av.getStartRes(); + final int res; + + if (av.hasHiddenColumns) { - public void mousePressed(MouseEvent evt) + res = av.getColumnSelection().adjustForHiddenColumns(x); + } + else + { + res = x; + } + + min = res; + max = res; + + if (SwingUtilities.isRightMouseButton(evt)) + { + JPopupMenu pop = new JPopupMenu(); + if (reveal != null) { - doMousePressed(evt); + JMenuItem item = new JMenuItem("Reveal"); + item.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + av.showColumn(reveal[0]); + reveal = null; + ap.repaint(); + if (ap.overviewPanel != null) + { + ap.overviewPanel.updateOverviewImage(); + } + } + }); + pop.add(item); + + if (av.getColumnSelection().getHiddenColumns().size() > 1) + { + item = new JMenuItem("Reveal All"); + item.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + av.showAllHiddenColumns(); + reveal = null; + ap.repaint(); + if (ap.overviewPanel != null) + { + ap.overviewPanel.updateOverviewImage(); + } + } + }); + pop.add(item); + } + pop.show(this, evt.getX(), evt.getY()); } - public void mouseReleased(MouseEvent evt) + else if (av.getColumnSelection().contains(res)) { - doMouseReleased(evt); + JMenuItem item = new JMenuItem("Hide Columns"); + item.addActionListener(new ActionListener() + { + public void actionPerformed(ActionEvent e) + { + av.hideColumns(res, res); + if (av.getSelectionGroup() != null + && av.getSelectionGroup().getSize() == av.alignment.getHeight()) + { + av.setSelectionGroup(null); + } + + ap.repaint(); + if (ap.overviewPanel != null) + { + ap.overviewPanel.updateOverviewImage(); + } + } + }); + pop.add(item); + pop.show(this, evt.getX(), evt.getY()); } - - }); - addMouseMotionListener(new MouseMotionAdapter() + } + else // LEFT MOUSE TO SELECT { - public void mouseDragged(MouseEvent evt) + if (!evt.isControlDown() && !evt.isShiftDown()) { - doMouseDragged(evt); + av.getColumnSelection().clear(); } - }); - - } - - - public void doMousePressed(MouseEvent evt) { - int x = evt.getX(); - int res = x/av.getCharWidth() + av.getStartRes(); - SequenceGroup sg = null; - if (av.getColumnSelection().contains(res)) - av.getColumnSelection().removeElement(res); - else - { av.getColumnSelection().addElement(res); - - sg = new SequenceGroup(); + SequenceGroup sg = new SequenceGroup(); for (int i = 0; i < av.alignment.getSequences().size(); i++) - sg.addSequence(av.alignment.getSequenceAt(i)); + { + sg.addSequence(av.alignment.getSequenceAt(i), false); + } sg.setStartRes(res); sg.setEndRes(res); + av.setSelectionGroup(sg); + + if (evt.isShiftDown()) + { + int min = Math.min(av.getColumnSelection().getMin(), res); + int max = Math.max(av.getColumnSelection().getMax(), res); + for (int i = min; i < max; i++) + { + av.getColumnSelection().addElement(i); + } + sg.setStartRes(min); + sg.setEndRes(max); + } + } - av.setSelectionGroup(sg); - ap.RefreshPanels(); + + ap.repaint(); } - public void doMouseReleased(MouseEvent evt) + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void mouseReleased(MouseEvent evt) { - if(!stretchingGroup) - return; + mouseDragging = false; - int x = evt.getX(); - int res = x/av.getCharWidth() + av.getStartRes(); + int res = (evt.getX() / av.getCharWidth()) + av.getStartRes(); - if (! av.getColumnSelection().contains(res)) - av.getColumnSelection().addElement(res); + if (res > av.alignment.getWidth()) + { + res = av.alignment.getWidth() - 1; + } - SequenceGroup sg = av.getSelectionGroup(); + if (av.hasHiddenColumns) + { + res = av.getColumnSelection().adjustForHiddenColumns(res); + } + + if (!stretchingGroup) + { + ap.repaint(); - if(res>sg.getStartRes()) - sg.setEndRes(res); - else if(res sg.getStartRes()) + { + sg.setEndRes(res); + } + else if (res < sg.getStartRes()) + { + sg.setStartRes(res); + } + } + stretchingGroup = false; + ap.repaint(); } - public void doMouseDragged(MouseEvent evt) + /** + * DOCUMENT ME! + * + * @param evt DOCUMENT ME! + */ + public void mouseDragged(MouseEvent evt) { - int x = evt.getX(); - int res = x/av.getCharWidth() + av.getStartRes(); + mouseDragging = true; + + int res = (evt.getX() / av.getCharWidth()) + av.getStartRes(); + if (res < 0) + { + res = 0; + } + + if (av.hasHiddenColumns) + { + res = av.getColumnSelection().adjustForHiddenColumns(res); + } + + if (res > av.alignment.getWidth()) + { + res = av.alignment.getWidth() - 1; + } + + if (res < min) + { + min = res; + } + + if (res > max) + { + max = res; + } SequenceGroup sg = av.getSelectionGroup(); - if(sg!=null) + + if (sg != null) { stretchingGroup = true; + + if (!av.getColumnSelection().contains(res)) + { + av.getColumnSelection().addElement(res); + } + if (res > sg.getStartRes()) + { sg.setEndRes(res); - else if (res < sg.getStartRes()) + } + if (res < sg.getStartRes()) + { sg.setStartRes(res); + } + + for (int i = min; i <= max; i++) + { + if ( (i < sg.getStartRes()) || (i > sg.getEndRes())) + { + av.getColumnSelection().removeElement(i); + } + else + { + av.getColumnSelection().addElement(i); + } + } - ap.RefreshPanels(); + ap.repaint(); } } - public void paintComponent(Graphics g) + public void mouseEntered(MouseEvent evt) { - drawScale(g, av.getStartRes(), av.getEndRes(), getWidth()); + if (mouseDragging) + { + ap.seqPanel.scrollCanvas(null); + } } -// scalewidth will normally be screenwidth, - public void drawScale(Graphics gg, int startx, int endx, int scaleWidth) + public void mouseExited(MouseEvent evt) { - int charWidth = av.getCharWidth(); + if (mouseDragging) + { + ap.seqPanel.scrollCanvas(evt); + } + } - gg.setFont(av.getFont()); + public void mouseClicked(MouseEvent evt) + {} - //Fill in the background - - gg.setColor(Color.white); - gg.fillRect(0,0,scaleWidth, getHeight()); + public void mouseMoved(MouseEvent evt) + { + if (!av.hasHiddenColumns) + { + return; + } - int resWidth = endx - startx + 1; + int res = (evt.getX() / av.getCharWidth()) + av.getStartRes(); - // We want roughly one tick every 50 pixels + res = av.getColumnSelection().adjustForHiddenColumns(res); - double rough = scaleWidth/50.0; + reveal = null; + for (int i = 0; i < av.getColumnSelection().getHiddenColumns().size(); i++) + { + int[] region = (int[]) av.getColumnSelection().getHiddenColumns(). + elementAt(i); + if (res + 1 == region[0] || res - 1 == region[1]) + { + reveal = region; + ToolTipManager.sharedInstance().registerComponent(this); + this.setToolTipText("Reveal Hidden Columns with Right Mouse Button"); + break; + } + else + { + this.setToolTipText(null); + } - double roughtick = resWidth/rough; + } - int digits = (int)(Math.log(roughtick)/Math.log(10)); - int num = (int)(roughtick/Math.pow(10,digits)); + repaint(); + } - if (Math.abs(10-num) < 3) - num = 10; - else if (Math.abs(5-num) >= 2) - num = 5; - // else - // num = 2; + int[] reveal; - //System.out.println("Dig " + digits + " " + rough + " " + roughtick + " " + getWidth() + " " + num); + /** + * DOCUMENT ME! + * + * @param g DOCUMENT ME! + */ + public void paintComponent(Graphics g) + { + drawScale(g, av.getStartRes(), av.getEndRes(), getWidth(), getHeight()); + } - int space = (int)(num * Math.pow(10,digits)); + // 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()); - //Set the text font + if (av.antiAlias) + { + gg.setRenderingHint(RenderingHints.KEY_ANTIALIASING, + RenderingHints.VALUE_ANTIALIAS_ON); + } + //Fill in the background + gg.setColor(Color.white); + gg.fillRect(0, 0, width, height); gg.setColor(Color.black); - int scalestartx = startx - startx%space + space; - - //Fill the selected columns ColumnSelection cs = av.getColumnSelection(); - int width = charWidth; - if (width == 0) - width = 1; + gg.setColor(new Color(220, 0, 0)); - gg.setColor(new Color(220,0,0)); - for (int i=0; i