2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.viewmodel;
23 import jalview.api.AlignmentColsCollectionI;
24 import jalview.api.AlignmentRowsCollectionI;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.AllColsCollection;
27 import jalview.datamodel.AllRowsCollection;
28 import jalview.datamodel.HiddenColumns;
29 import jalview.datamodel.HiddenSequences;
31 public class OverviewDimensionsShowHidden extends OverviewDimensions
33 private ViewportRanges ranges;
36 * Create an OverviewDimensions object
39 * positional properties of the viewport
40 * @param showAnnotationPanel
41 * true if the annotation panel is to be shown, false otherwise
43 public OverviewDimensionsShowHidden(ViewportRanges vpranges,
44 boolean showAnnotationPanel)
46 super(vpranges, showAnnotationPanel);
52 * Check box dimensions and scroll positions and correct if necessary
55 * x position in overview panel
57 * y position in overview panel
63 * viewport position properties
66 public void updateViewportFromMouse(int mousex, int mousey,
67 HiddenSequences hiddenSeqs, HiddenColumns hiddenCols)
84 if (ranges.isWrappedMode())
86 y = 0; // sorry, no vertical scroll when wrapped
90 // Convert x value to residue position
93 // need to determine where scrollCol should be, given x
94 // to do this also need to know width of viewport, and some hidden column
97 // convert x to residues - this is an absolute position
98 int xAsRes = Math.round((float) x * alwidth / width);
100 // get viewport width in residues
101 int vpwidth = ranges.getViewportWidth();
103 // get where x should be when accounting for hidden cols
104 // if x is in a hidden col region, shift to left - but we still need
106 // so convert back after getting visible region position
107 int visXAsRes = hiddenCols.findColumnPosition(xAsRes);
109 // check in case we went off the edge of the alignment
110 int visAlignWidth = hiddenCols.findColumnPosition(alwidth - 1);
111 if (visXAsRes + vpwidth - 1 > visAlignWidth)
113 // went past the end of the alignment, adjust backwards
115 // if last position was before the end of the alignment, need to update
116 if (ranges.getEndRes() < visAlignWidth)
118 visXAsRes = hiddenCols.findColumnPosition(hiddenCols
119 .subtractVisibleColumns(vpwidth - 1, alwidth - 1));
123 visXAsRes = ranges.getStartRes();
128 // Convert y value to sequence position
131 // convert y to residues
132 int yAsSeq = Math.round((float) y * alheight / sequencesHeight);
134 // get viewport height in sequences
135 int vpheight = ranges.getViewportHeight();
137 // get where y should be when accounting for hidden rows
138 // if y is in a hidden row region, shift up - but we still need absolute
140 // so convert back after getting visible region position
141 yAsSeq = hiddenSeqs.adjustForHiddenSeqs(hiddenSeqs
142 .findIndexWithoutHiddenSeqs(yAsSeq));
143 yAsSeq = Math.max(yAsSeq, 0); // -1 if before first visible sequence
145 // check in case we went off the edge of the alignment
146 int visAlignHeight = hiddenSeqs.findIndexWithoutHiddenSeqs(alheight);
147 int visYAsSeq = hiddenSeqs.findIndexWithoutHiddenSeqs(yAsSeq);
148 visYAsSeq = Math.max(visYAsSeq, 0); // -1 if before first visible sequence
149 if (visYAsSeq + vpheight - 1 > visAlignHeight)
151 // went past the end of the alignment, adjust backwards
152 if (ranges.getEndSeq() < visAlignHeight)
154 visYAsSeq = hiddenSeqs.findIndexWithoutHiddenSeqs(hiddenSeqs
155 .subtractVisibleRows(vpheight - 1, alheight - 1));
159 visYAsSeq = ranges.getStartSeq();
164 ranges.setStartRes(visXAsRes);
165 ranges.setStartSeq(visYAsSeq);
169 * Update the overview panel box when the associated alignment panel is
177 * viewport position properties
180 public void setBoxPosition(HiddenSequences hiddenSeqs,
181 HiddenColumns hiddenCols)
183 // work with absolute values of startRes and endRes
184 int startRes = hiddenCols.adjustForHiddenColumns(ranges.getStartRes());
185 int endRes = hiddenCols.adjustForHiddenColumns(ranges.getEndRes());
187 // work with absolute values of startSeq and endSeq
188 int startSeq = hiddenSeqs.adjustForHiddenSeqs(ranges.getStartSeq());
189 int endSeq = hiddenSeqs.adjustForHiddenSeqs(ranges.getEndSeq());
191 setBoxPosition(startRes, startSeq, endRes - startRes + 1, endSeq
196 public AlignmentColsCollectionI getColumns(AlignmentI al)
198 return new AllColsCollection(0,
199 ranges.getAbsoluteAlignmentWidth() - 1, al);
203 public AlignmentRowsCollectionI getRows(AlignmentI al)
205 return new AllRowsCollection(0,
206 ranges.getAbsoluteAlignmentHeight() - 1,
211 protected void resetAlignmentDims()
213 alwidth = ranges.getAbsoluteAlignmentWidth();
214 alheight = ranges.getAbsoluteAlignmentHeight();