diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2011-08-07 19:39:15 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2011-08-07 19:39:15 +1000 |
commit | 0a1253d3507bec6a9dcab1006822aad3aacf5a58 (patch) | |
tree | 3509c11a6fe82cfb29b4acdfdd55b17cfac12901 | |
parent | 59c0c0ebdffd339a2b1ae764358b1d2e2d708ae7 (diff) | |
download | scintilla-mirror-0a1253d3507bec6a9dcab1006822aad3aacf5a58.tar.gz |
Support a range of weights on Cocoa.
-rw-r--r-- | cocoa/PlatCocoa.mm | 2 | ||||
-rw-r--r-- | cocoa/QuartzTextStyleAttribute.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 1972fa7a9..0965409c1 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -156,7 +156,7 @@ static int FontCharacterSet(Font &f) { /** * Creates a CTFontRef with the given properties. */ -void Font::Create(const char *faceName, int characterSet, float size, bool bold, bool italic, +void Font::Create(const char *faceName, int characterSet, float size, int weight, bool italic, int /* extraFontFlag */) { Release(); diff --git a/cocoa/QuartzTextStyleAttribute.h b/cocoa/QuartzTextStyleAttribute.h index 33c49281c..b9698645e 100644 --- a/cocoa/QuartzTextStyleAttribute.h +++ b/cocoa/QuartzTextStyleAttribute.h @@ -16,12 +16,13 @@ class QuartzFont { public: /** Create a font style from a name. */ - QuartzFont( const char* name, size_t length, float size, bool bold, bool italic ) + QuartzFont( const char* name, size_t length, float size, int weight, bool italic ) { assert( name != NULL && length > 0 && name[length] == '\0' ); CFStringRef fontName = CFStringCreateWithCString(kCFAllocatorDefault, name, kCFStringEncodingMacRoman); assert(fontName != NULL); + bool bold = weight > SC_WEIGHT_NORMAL; if (bold || italic) { |