2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
20 package jalview.appletgui;
\r
24 import jalview.datamodel.*;
\r
25 import jalview.schemes.*;
\r
27 public class SequenceRenderer
\r
31 boolean renderGaps = true;
\r
32 SequenceGroup currentSequenceGroup = null;
\r
33 SequenceGroup[] allGroups = null;
\r
36 boolean forOverview = false;
\r
38 public SequenceRenderer(AlignViewport av)
\r
43 public void renderGaps(boolean b)
\r
48 public Color getResidueBoxColour(SequenceI seq, int i)
\r
50 allGroups = av.alignment.findAllGroups(seq);
\r
52 if (inCurrentSequenceGroup(i))
\r
54 if (currentSequenceGroup.getDisplayBoxes())
\r
56 getBoxColour(currentSequenceGroup.cs, seq, i);
\r
59 else if (av.getShowBoxes())
\r
61 getBoxColour(av.globalColourScheme, seq, i);
\r
64 return resBoxColour;
\r
67 void getBoxColour(ColourSchemeI cs, SequenceI seq, int i)
\r
71 resBoxColour = cs.findColour(seq.getSequence(i, i + 1), i);
\r
73 else if(forOverview && !jalview.util.Comparison.isGap(seq.getCharAt(i)))
\r
75 resBoxColour = Color.lightGray;
\r
79 resBoxColour = Color.white;
\r
84 public Color findSequenceColour(SequenceI seq, int i)
\r
86 allGroups = av.alignment.findAllGroups(seq);
\r
87 drawBoxes(seq, i,i, 0);
\r
88 return resBoxColour;
\r
91 public void drawSequence(Graphics g, SequenceI seq, SequenceGroup[] sg,
\r
92 int start, int end, int y1)
\r
98 drawBoxes(seq, start, end, y1);
\r
100 if(av.validCharWidth)
\r
102 fm = g.getFontMetrics();
\r
103 drawText(seq, start, end, y1);
\r
107 public void drawBoxes(SequenceI seq, int start, int end, int y1)
\r
110 int length = seq.getLength();
\r
113 int curWidth = av.charWidth;
\r
115 Color tempColour = null;
\r
118 resBoxColour = Color.white;
\r
121 if (inCurrentSequenceGroup(i))
\r
123 if (currentSequenceGroup.getDisplayBoxes())
\r
125 getBoxColour(currentSequenceGroup.cs, seq, i);
\r
128 else if (av.getShowBoxes())
\r
130 getBoxColour(av.getGlobalColourScheme(), seq, i);
\r
135 if (resBoxColour != tempColour)
\r
137 if (tempColour != null)
\r
139 graphics.fillRect(av.charWidth * (curStart - start), y1, curWidth,
\r
142 graphics.setColor(resBoxColour);
\r
145 curWidth = av.charWidth;
\r
146 tempColour = resBoxColour;
\r
151 curWidth += av.charWidth;
\r
157 graphics.fillRect(av.charWidth * (curStart - start), y1, curWidth, av.charHeight);
\r
160 public void drawText(SequenceI seq, int start, int end, int y1)
\r
163 y1 += av.charHeight - av.charHeight / 5; // height/5 replaces pady
\r
165 int charOffset = 0;
\r
167 // Need to find the sequence position here.
\r
168 if(end+1>=seq.getLength())
\r
169 end = seq.getLength()-1;
\r
173 for (int i = start; i <= end; i++)
\r
175 graphics.setColor(Color.black);
\r
177 s = seq.getCharAt(i);
\r
178 if (!renderGaps && jalview.util.Comparison.isGap(s))
\r
183 if (inCurrentSequenceGroup(i))
\r
185 if (!currentSequenceGroup.getDisplayText())
\r
190 if (currentSequenceGroup.getColourText())
\r
192 getBoxColour(currentSequenceGroup.cs, seq, i);
\r
193 graphics.setColor(resBoxColour.darker());
\r
198 if (!av.getShowText())
\r
203 if (av.getColourText())
\r
205 getBoxColour(av.getGlobalColourScheme(), seq, i);
\r
206 if (av.getShowBoxes())
\r
208 graphics.setColor(resBoxColour.darker());
\r
212 graphics.setColor(resBoxColour);
\r
217 charOffset = (av.charWidth - fm.charWidth(s)) / 2;
\r
218 graphics.drawString(String.valueOf(s),
\r
219 charOffset + av.charWidth * (i - start),
\r
225 boolean inCurrentSequenceGroup(int res)
\r
227 if (allGroups == null)
\r
232 for (int i = 0; i < allGroups.length; i++)
\r
234 if (allGroups[i].getStartRes() <= res && allGroups[i].getEndRes() >= res)
\r
236 currentSequenceGroup = allGroups[i];
\r
244 public void drawHighlightedText(SequenceI seq, int start, int end, int x1,
\r
245 int y1, int width, int height)
\r
247 int pady = height / 5;
\r
248 int charOffset = 0;
\r
249 graphics.setColor(Color.black);
\r
250 graphics.fillRect(x1, y1, width * (end - start + 1), height);
\r
251 graphics.setColor(Color.white);
\r
254 // Need to find the sequence position here.
\r
255 if(av.validCharWidth)
\r
257 for (int i = start; i <= end; i++)
\r
259 if (i < seq.getLength())
\r
261 s = seq.getSequence().charAt(i);
\r
264 charOffset = (width - fm.charWidth(s)) / 2;
\r
265 graphics.drawString(String.valueOf(s),
\r
266 charOffset + x1 + width * (i - start),
\r
267 y1 + height - pady);
\r
272 public void drawCursor(SequenceI seq, int res, int x1, int y1)
\r
274 int pady = av.charHeight / 5;
\r
275 int charOffset = 0;
\r
276 graphics.setColor(Color.black);
\r
277 graphics.fillRect(x1, y1, av.charWidth, av.charHeight);
\r
278 graphics.setColor(Color.white);
\r
280 graphics.setColor(Color.white);
\r
282 char s = seq.getCharAt(res);
\r
283 if (av.validCharWidth)
\r
286 charOffset = (av.charWidth - fm.charWidth(s)) / 2;
\r
287 graphics.drawString(String.valueOf(s),
\r
289 (y1 + av.charHeight) - pady);
\r