2007-01-01 21:11:21 +00:00
|
|
|
/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
|
2006-12-22 04:41:44 +00:00
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
2006-12-22 04:41:44 +00:00
|
|
|
|
|
|
|
// Original - Christopher Lloyd <cjwl@objc.net>
|
|
|
|
#import <AppKit/NSFontMetric.h>
|
2020-05-11 15:52:05 +00:00
|
|
|
#import <AppKit/NSFontTypeface.h>
|
2006-12-22 04:41:44 +00:00
|
|
|
|
|
|
|
@implementation NSFontTypeface
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- initWithName: (NSString *) name
|
2020-05-12 18:51:39 +00:00
|
|
|
displayName: (NSString *) displayName
|
|
|
|
traitName: (NSString *) traitName
|
|
|
|
traits: (NSFontTraitMask) traits
|
2020-05-12 00:04:26 +00:00
|
|
|
{
|
2020-05-11 15:52:05 +00:00
|
|
|
_name = [name copy];
|
|
|
|
_displayName = [displayName copy];
|
|
|
|
_traitName = [traitName copy];
|
|
|
|
_traits = traits;
|
|
|
|
_metrics = [NSMutableArray new];
|
|
|
|
return self;
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- initWithName: (NSString *) name
|
2020-05-12 18:51:39 +00:00
|
|
|
traitName: (NSString *) traitName
|
|
|
|
traits: (NSFontTraitMask) traits
|
2020-05-12 00:04:26 +00:00
|
|
|
{
|
2020-05-11 15:52:05 +00:00
|
|
|
return [self initWithName: name
|
|
|
|
displayName: name
|
|
|
|
traitName: traitName
|
|
|
|
traits: traits];
|
2012-01-27 12:53:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) dealloc {
|
|
|
|
[_name release];
|
|
|
|
[_displayName release];
|
|
|
|
[_traitName release];
|
|
|
|
[_metrics release];
|
|
|
|
[super dealloc];
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) name {
|
|
|
|
return _name;
|
2012-01-27 12:53:41 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) displayName {
|
|
|
|
return _displayName;
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) traitName {
|
|
|
|
return _traitName;
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSFontTraitMask) traits {
|
|
|
|
return _traits;
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) addMetric: (NSFontMetric *) metric {
|
|
|
|
[_metrics addObject: metric];
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) description {
|
|
|
|
return [NSString stringWithFormat: @"<%@ 0x%x %@ %@ %@>", [self class],
|
|
|
|
self, _name, _displayName, _traitName];
|
2006-12-22 04:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|