darling-cocotron/AppKit/NSStringDrawing.m

86 lines
3.3 KiB
Mathematica
Raw Permalink Normal View History

/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
2009 Markus Hitter <mah@jump-ing.de>
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/NSRaise.h>
#import <AppKit/NSStringDrawer.h>
#import <AppKit/NSStringDrawing.h>
2006-12-22 04:41:44 +00:00
@implementation NSString (NSStringDrawing)
2006-12-22 04:41:44 +00:00
- (void) drawAtPoint: (NSPoint) point
2020-05-12 18:51:39 +00:00
withAttributes: (NSDictionary *) attributes
2020-05-12 00:04:26 +00:00
{
[[NSStringDrawer sharedStringDrawer] drawString: self
withAttributes: attributes
atPoint: point
inSize: NSZeroSize];
2006-12-22 04:41:44 +00:00
}
- (void) drawInRect: (NSRect) rect withAttributes: (NSDictionary *) attributes {
[[NSStringDrawer sharedStringDrawer] drawString: self
withAttributes: attributes
inRect: rect];
2006-12-22 04:41:44 +00:00
}
- (NSSize) sizeWithAttributes: (NSDictionary *) attributes {
NSRect rect = [self boundingRectWithSize: NSZeroSize
options: 0
attributes: attributes];
return rect.size;
2006-12-22 04:41:44 +00:00
}
- (NSRect) boundingRectWithSize: (NSSize) size
options: (NSStringDrawingOptions) options
2020-05-12 00:04:26 +00:00
attributes: (NSDictionary *) attributes
{
NSSize s = [[NSStringDrawer sharedStringDrawer] sizeOfString: self
withAttributes: attributes
inSize: size];
return NSMakeRect(0, 0, s.width, s.height);
}
2006-12-22 04:41:44 +00:00
@end
@implementation NSAttributedString (NSStringDrawing)
2006-12-22 04:41:44 +00:00
- (void) drawAtPoint: (NSPoint) point {
[[NSStringDrawer sharedStringDrawer] drawAttributedString: self
atPoint: point
inSize: NSZeroSize];
2006-12-22 04:41:44 +00:00
}
- (void) drawInRect: (NSRect) rect {
[[NSStringDrawer sharedStringDrawer] drawAttributedString: self
inRect: rect];
2006-12-22 04:41:44 +00:00
}
- (NSSize) size {
return [[NSStringDrawer sharedStringDrawer]
2020-05-12 18:51:39 +00:00
sizeOfAttributedString: self
inSize: NSZeroSize];
2006-12-22 04:41:44 +00:00
}
- (void) drawWithRect: (NSRect) rect options: (NSStringDrawingOptions) options {
NSUnimplementedMethod();
}
2006-12-22 04:41:44 +00:00
@end