NSPoint layoutLocation = [sm_cocoaNSLayoutManager locationForGlyphAtIndex:0];
layoutLocation.x = 0.0;
layoutLocation.y *= -1.0;
+
+ // Save the location as is for underlining
+ NSPoint underlineLocation = layoutLocation;
+
+ // Offset the location by the baseline for drawing the glyphs.
layoutLocation.y += [[sm_cocoaNSLayoutManager typesetter] baselineOffsetInLayoutManager:sm_cocoaNSLayoutManager glyphIndex:0];
+
if(m_backgroundMode==wxSOLID)
[sm_cocoaNSLayoutManager drawBackgroundForGlyphRange:glyphRange atPoint:NSZeroPoint];
[sm_cocoaNSLayoutManager drawGlyphsForGlyphRange:glyphRange atPoint:layoutLocation];
+ int underlineStyle = GetFont().GetUnderlined() ? NSUnderlineStyleSingle : NSUnderlineStyleNone;
+ NSRange lineGlyphRange;
+ NSRect lineRect = [sm_cocoaNSLayoutManager lineFragmentRectForGlyphAtIndex:0 effectiveRange:&lineGlyphRange];
+
+ [sm_cocoaNSLayoutManager underlineGlyphRange:glyphRange underlineType:underlineStyle
+ lineFragmentRect:lineRect lineFragmentGlyphRange:lineGlyphRange
+ containerOrigin:underlineLocation];
+
[context restoreGraphicsState];
}
{
}
+void wxDC::SetFont(const wxFont& font)
+{
+ m_font = font;
+}
+
void wxDC::SetPen(const wxPen& pen)
{
m_pen = pen;