mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
19 lines
403 B
Objective-C
19 lines
403 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Cocoa;
|
|
@import CoreText;
|
|
|
|
@interface TextDrawer : NSObject
|
|
|
|
- (void)drawString:(NSString *_Nonnull)theString
|
|
positions:(CGPoint *_Nonnull)positions
|
|
font:(NSFont *_Nonnull)font
|
|
foreground:(int)foreground
|
|
background:(int)background
|
|
context:(CGContextRef _Nonnull)context;
|
|
|
|
@end
|