File: font.cpp

package info (click to toggle)
ares 126-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 32,600 kB
  • sloc: cpp: 356,508; ansic: 20,394; makefile: 16; sh: 2
file content (46 lines) | stat: -rw-r--r-- 1,627 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#if defined(Hiro_Font)

namespace hiro {

auto pFont::size(const Font& font, const string& text) -> Size {
  if(NSFont* nsFont = create(font)) {
    return size(nsFont, text);
  }
  return {0, 0};
}

auto pFont::size(NSFont* font, const string& text) -> Size {
  NSString* cocoaText = [NSString stringWithUTF8String:text];
  NSDictionary* fontAttributes = [NSDictionary dictionaryWithObjectsAndKeys:font, NSFontAttributeName, nil];
  NSSize size = [cocoaText sizeWithAttributes:fontAttributes];
  return {(s32)ceil(size.width), (s32)ceil(size.height)};
}

auto pFont::family(const string& family) -> string {
  if(family == Font::Serif) return "Baskerville";
  if(family == Font::Mono ) return "Menlo";
  return [[[NSFont systemFontOfSize:0] familyName] UTF8String];
}

auto pFont::create(const Font& font) -> NSFont* {
  auto fontName = family(font.family());
  NSString* family = [NSString stringWithUTF8String:fontName];
  CGFloat size = Application::scale(font.size() ? font.size() : 8);
  NSFontTraitMask traits = 0;

  if(font.bold()) traits |= NSBoldFontMask;
  if(font.italic()) traits |= NSItalicFontMask;

//note: below properties are not exposed by hiro::Font; traits are saved here for possible future use
//if(font.narrow()) traits |= NSNarrowFontMask;
//if(font.expanded()) traits |= NSExpandedFontMask;
//if(font.condensed()) traits |= NSCondensedFontMask;
//if(font.smallCaps()) traits |= NSSmallCapsFontMask;

  size *= 1.5;  //scale to point sizes (for consistency with other operating systems)
  return [[NSFontManager sharedFontManager] fontWithFamily:family traits:traits weight:5 size:size];
}

}

#endif