darling-cocotron/AppKit/NSFontTypeface.m

83 lines
2.4 KiB
Mathematica
Raw Normal View History

/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
2006-12-22 04:41:44 +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>
#import <AppKit/NSFontTypeface.h>
2006-12-22 04:41:44 +00:00
@implementation NSFontTypeface
- 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
{
_name = [name copy];
_displayName = [displayName copy];
_traitName = [traitName copy];
_traits = traits;
_metrics = [NSMutableArray new];
return self;
2006-12-22 04:41:44 +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
{
return [self initWithName: name
displayName: name
traitName: traitName
traits: traits];
}
- (void) dealloc {
[_name release];
[_displayName release];
[_traitName release];
[_metrics release];
[super dealloc];
2006-12-22 04:41:44 +00:00
}
- (NSString *) name {
return _name;
}
- (NSString *) displayName {
return _displayName;
2006-12-22 04:41:44 +00:00
}
- (NSString *) traitName {
return _traitName;
2006-12-22 04:41:44 +00:00
}
- (NSFontTraitMask) traits {
return _traits;
2006-12-22 04:41:44 +00:00
}
- (void) addMetric: (NSFontMetric *) metric {
[_metrics addObject: metric];
2006-12-22 04:41:44 +00:00
}
- (NSString *) description {
return [NSString stringWithFormat: @"<%@ 0x%x %@ %@ %@>", [self class],
self, _name, _displayName, _traitName];
2006-12-22 04:41:44 +00:00
}
@end