X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fappletgui%2FIdPanel.java;h=f6e7d44ca6bdca5f56b7efa1ad754995628e3aca;hb=8797ce6a98df4aa29eefecb25b10fed4f2ab9e86;hp=f3db9be7a1b8d9215b6d2d815f5d6583226fac4f;hpb=29f89f52f3fc99e904a55e426c53a830290408cc;p=jalview.git diff --git a/src/jalview/appletgui/IdPanel.java b/src/jalview/appletgui/IdPanel.java index f3db9be..f6e7d44 100755 --- a/src/jalview/appletgui/IdPanel.java +++ b/src/jalview/appletgui/IdPanel.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2006 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 @@ -50,41 +50,58 @@ public class IdPanel idCanvas.addMouseMotionListener(this); String label, url; - for(int i=1; i<10; i++) + if(av.applet!=null) { - label = parent.alignFrame.applet.getParameter("linkLabel_"+i); - url = parent.alignFrame.applet.getParameter("linkURL_"+i); + for (int i = 1; i < 10; i++) + { + label = av.applet.getParameter("linkLabel_" + i); + url = av.applet.getParameter("linkURL_" + i); - if(label!=null && url!=null) - links.addElement(label+"|"+url); + if (label != null && url != null) + links.addElement(label + "|" + url); + } } if (links.size() < 1) { links = new java.util.Vector(); - links.addElement("SRS|http://srs.ebi.ac.uk/srs7bin/cgi-bin/wgetz?-e+[uniprot-all:$SEQUENCE_ID$]+-vn+2"); + links.addElement("SRS|http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-newId+(([uniprot-all:$SEQUENCE_ID$]))+-view+SwissEntry"); } } + Tooltip tooltip; public void mouseMoved(MouseEvent e) - {} - - public void mouseDragged(MouseEvent e) { - mouseDragging = true; + int seq = alignPanel.seqPanel.findSeq(e); - int y = e.getY(); - if (av.getWrapAlignment()) - { - y -= 2 * av.charHeight; - } - int seq = av.getIndex(y); + SequenceI sequence = av.getAlignment().getSequenceAt(seq); - if (seq < 0) + if(sequence.getDescription()==null) { + if(tooltip!=null) + tooltip.setVisible(false); + tooltip = null; return; } + if (tooltip == null) + tooltip = new Tooltip( + sequence.getDisplayId(true) + + "\n" + sequence.getDescription(), idCanvas); + else + tooltip.setTip(sequence.getDisplayId(true) + + "\n" + sequence.getDescription()); + + tooltip.repaint(); + + } + + public void mouseDragged(MouseEvent e) + { + mouseDragging = true; + + int seq = Math.max(0, alignPanel.seqPanel.findSeq(e)); + if (seq < lastid) { selectSeqs(lastid - 1, seq); @@ -103,16 +120,12 @@ public class IdPanel if (e.getClickCount() < 2) return; - int y = e.getY(); - - if (av.getWrapAlignment()) - { - y -= (2 * av.charHeight); - } //DEFAULT LINK IS FIRST IN THE LINK LIST - int seq = av.getIndex(y); + int seq = alignPanel.seqPanel.findSeq(e); String id = av.getAlignment().getSequenceAt(seq).getName(); + if (id.indexOf("|") > -1) + id = id.substring(id.lastIndexOf("|") + 1); String target = links.elementAt(0).toString(); target = target.substring(0, target.indexOf("|")); @@ -124,7 +137,8 @@ public class IdPanel try { - jalview.bin.JalviewLite.showURL(url, target); + + alignPanel.alignFrame.showURL(url, target); } catch (Exception ex) { @@ -172,11 +186,7 @@ public class IdPanel y -= 2 * av.charHeight; } - int seq = av.getIndex(y); - if (seq == -1) - { - return; - } + int seq = alignPanel.seqPanel.findSeq(e); if ( (e.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK) @@ -187,31 +197,15 @@ public class IdPanel return; } - if (!e.isControlDown() && !e.isShiftDown() && - av.alignment.findGroup(av.alignment.getSequenceAt(seq)) != null) - { - - SequenceGroup selection = new SequenceGroup(); - SequenceGroup sg = av.alignment.findGroup(av.alignment.getSequenceAt(seq)); - selection.setStartRes(0); - selection.setEndRes(av.alignment.getWidth() - 1); - for (int i = 0; i < sg.getSize(); i++) - { - selection.addSequence(sg.getSequenceAt(i), true); - } - - av.setSelectionGroup(selection); - return; - } - if (av.getSelectionGroup() == null || - (!e.isControlDown() && av.getSelectionGroup() != null)) + if ((av.getSelectionGroup() == null) || + ((!e.isControlDown() && !e.isShiftDown()) && av.getSelectionGroup() != null)) { av.setSelectionGroup(new SequenceGroup()); + av.getSelectionGroup().setStartRes(0); + av.getSelectionGroup().setEndRes(av.alignment.getWidth() - 1); } - av.getSelectionGroup().setStartRes(0); - av.getSelectionGroup().setEndRes(av.alignment.getWidth() - 1); if (e.isShiftDown() && lastid != -1) { @@ -236,6 +230,12 @@ public class IdPanel { lastid = start; + + if (end >= av.getAlignment().getHeight()) + { + end = av.getAlignment().getHeight() - 1; + } + if (end < start) { int tmp = start; @@ -318,11 +318,12 @@ public class IdPanel { selectSeqs(lastid - 1, seq); } - else if (seq > lastid) + else if (seq > lastid && seq