}
// draw arrow body
unsetAntialias(g);
- fillRect(g, x1 - 1, y + 4 + iconOffset, x2 - x1 + 1, 6);
+ fillRect(g, x1, y + 4 + iconOffset, x2 - x1, 6);
}
// public void updateFromAnnotationPanel(FontMetrics annotFM, AlignViewportI
}
unsetAntialias(g);
g.setColor(GLYPHLINE_COLOR);
- g.fillRect(lastSSX, y + 6 + iconOffset, (x * charWidth) - lastSSX - 1,
- 2);
- if (!isVectorRendition())
- {
- g.drawRect(lastSSX, y + 6 + iconOffset, (x * charWidth) - lastSSX - 1,
- 2);
- }
+ g.fillRect(lastSSX, y + 6 + iconOffset, (x * charWidth) - lastSSX, 2);
}
void drawSheetAnnot(Graphics g, Annotation[] row,
g.setColor(SHEET_COLOUR);
fillRect(g, lastSSX, y + 4 + iconOffset,
- (x * charWidth) - lastSSX - 4, isVectorRendition() ? 6 : 7);
+ (x * charWidth) - lastSSX - 4, 6);
fillPolygon(g,
new int[]
{ (x * charWidth) - 6, (x * charWidth) - 6,
else
{
g.setColor(SHEET_COLOUR);
- fillRect(g, lastSSX, y + 4 + iconOffset, x * charWidth - lastSSX,
- isVectorRendition() ? 6 : 7);
+ fillRect(g, lastSSX, y + 4 + iconOffset, (x * charWidth) - lastSSX,
+ 6);
}
}
if (rightEnd)
{
- fillArc(g, (x * charWidth) - charWidth - 1, y + 3 + iconOffset,
- charWidth, 8, 270, 180);
+ fillArc(g, ((x - 1) * charWidth), y + 3 + iconOffset, charWidth, 8,
+ 270, 180);
x2 -= charWidth / 2;
}
private void fillPolygon(Graphics g, int[] xpoints, int[] ypoints, int n)
{
- unsetAntialias(g);
+ setAntialias(g);
g.fillPolygon(xpoints, ypoints, n);
- if (!isVectorRendition())
- {
- setAntialias(g);
- g.fillPolygon(xpoints, ypoints, n);
- g.drawPolygon(xpoints, ypoints, n);
- }
}
/*
private void fillRect(Graphics g, int a, int b, int c, int d)
{
+ unsetAntialias(g);
g.fillRect(a, b, c, d);
- /*
- if (false && !isVectorRendition() && drawRect)
- {
- g.drawRect(a, b, c, d);
- }
- */
}
private void fillRoundRect(Graphics g, int a, int b, int c, int d, int e,
{
setAntialias(g);
g.fillRoundRect(a, b, c, d, e, f);
- if (!isVectorRendition())
- {
- g.drawRoundRect(a, b, c, d, e, f);
- }
}
private void fillArc(Graphics g, int a, int b, int c, int d, int e, int f)
{
setAntialias(g);
g.fillArc(a, b, c, d, e, f);
- if (!isVectorRendition())
- {
- g.drawArc(a, b, c, d, e, f);
- }
}
private void drawLine(Graphics g, Stroke s, int a, int b, int c, int d)