Skip to content

Commit

Permalink
Issue #932: [cocoa] implementation for StyledText.setFixedLineMetrics
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandr Miloslavskiy <alexandr.miloslavskiy@syntevo.com>
  • Loading branch information
SyntevoAlex committed Jan 31, 2024
1 parent 8c00514 commit 70e7624
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ public final class FontMetrics {
FontMetrics() {
}

/**
* Convenience method to make a copy of receiver.
*
* @since 3.125
*/
public FontMetrics clone () {
FontMetrics fontMetrics = new FontMetrics();
fontMetrics.ascent = this.ascent;
fontMetrics.descent = this.descent;
fontMetrics.averageCharWidth = this.averageCharWidth;
fontMetrics.leading = this.leading;
fontMetrics.height = this.height;
return fontMetrics;
}

public static FontMetrics cocoa_new (int ascent, int descent, int averageCharWidth, int leading, int height) {
FontMetrics fontMetrics = new FontMetrics();
fontMetrics.ascent = ascent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ public final class TextLayout extends Resource {
int wrapWidth;
int orientation;
private double defaultTabWidth;
private FontMetrics fixedLineMetrics;
private double fixedLineMetricsDy;

int[] lineOffsets;
NSRect[] lineBounds;
Expand Down Expand Up @@ -349,6 +351,16 @@ void computeRuns() {
OS.memmove(lineRange, rangePtr, NSRange.sizeof);
offsets[numberOfLines] = (int)lineRange.location;
index = lineRange.location + lineRange.length;
if (fixedLineMetrics != null) {
// Preserve baseline location for best visual results
final int lineOffset = untranslateOffset(offsets[numberOfLines]);
final double realHeight = bounds[numberOfLines].height;
final double realDescent = layoutManager.typesetter().baselineOffsetInLayoutManager(layoutManager, lineOffset);
final double realAscent = realHeight - realDescent;
final double wantAscent = fixedLineMetrics.ascent;
fixedLineMetricsDy = wantAscent - realAscent;
bounds[numberOfLines].height = fixedLineMetrics.height;
}
}
if (numberOfLines == 0) {
Font font = this.font != null ? this.font : device.systemFont;
Expand Down Expand Up @@ -484,6 +496,7 @@ public void draw(GC gc, int x, int y, int selectionStart, int selectionEnd, Colo
fixRect(rect);
rect.x += pt.x;
rect.y += pt.y;
if (fixedLineMetrics != null) rect.height = fixedLineMetrics.height;
rect.height = Math.max(rect.height, ascent + descent);
path.appendBezierPathWithRect(rect);
}
Expand Down Expand Up @@ -515,9 +528,13 @@ public void draw(GC gc, int x, int y, int selectionStart, int selectionEnd, Colo
layoutManager.addTemporaryAttribute(OS.NSForegroundColorAttributeName, gc.data.fg, range);
}
}
NSPoint ptGlyphs = new NSPoint();
ptGlyphs.x = pt.x;
ptGlyphs.y = pt.y;
if (fixedLineMetrics != null) ptGlyphs.y += fixedLineMetricsDy;
range.location = 0;
range.length = numberOfGlyphs;
layoutManager.drawGlyphsForGlyphRange(range, pt);
layoutManager.drawGlyphsForGlyphRange(range, ptGlyphs);
if (!defaultFg) {
range.location = 0;
range.length = length;
Expand Down Expand Up @@ -754,6 +771,7 @@ public Rectangle getBounds() {
NSFont nsFont = font.handle;
rect.height = layoutManager.defaultLineHeightForFont(nsFont);
}
if (fixedLineMetrics != null) rect.height = fixedLineMetrics.height;
rect.height = Math.max(rect.height, ascent + descent) + spacing;
return new Rectangle(0, 0, (int)Math.ceil(rect.width), (int)Math.ceil(rect.height) + getVerticalIndent());
} finally {
Expand Down Expand Up @@ -804,6 +822,7 @@ public Rectangle getBounds(int start, int end) {
top = Math.min(top, (int)rect.y);
bottom = Math.max(bottom, (int)Math.ceil(rect.y + rect.height));
}
if (fixedLineMetrics != null) bottom = top + fixedLineMetrics.height;
return new Rectangle(left, top, right - left, bottom - top + getVerticalIndent());
} finally {
if (pool != null) pool.release();
Expand Down Expand Up @@ -1043,6 +1062,7 @@ public FontMetrics getLineMetrics (int lineIndex) {
computeRuns();
int lineCount = getLineCount();
if (!(0 <= lineIndex && lineIndex < lineCount)) SWT.error(SWT.ERROR_INVALID_RANGE);
if (fixedLineMetrics != null) return fixedLineMetrics.clone();
int length = text.length();
if (length == 0) {
Font font = this.font != null ? this.font : device.systemFont;
Expand Down Expand Up @@ -1798,8 +1818,12 @@ public void setDescent (int descent) {
* @since 3.125
*/
public void setFixedLineMetrics (FontMetrics metrics) {
if (metrics == null) return;
SWT.error(SWT.ERROR_NOT_IMPLEMENTED);
if (metrics == null) {
fixedLineMetrics = null;
return;
}

fixedLineMetrics = metrics.clone();
}

/**
Expand Down

0 comments on commit 70e7624

Please sign in to comment.