summaryrefslogtreecommitdiff
path: root/src/osx/CALayer+DrawLabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osx/CALayer+DrawLabel.h')
-rw-r--r--src/osx/CALayer+DrawLabel.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/osx/CALayer+DrawLabel.h b/src/osx/CALayer+DrawLabel.h
new file mode 100644
index 0000000..32282d9
--- /dev/null
+++ b/src/osx/CALayer+DrawLabel.h
@@ -0,0 +1,21 @@
+//
+// CALayer+DrawLabel.h
+// TikZiT
+//
+// Created by Aleks Kissinger on 09/05/2011.
+// Copyright 2011 Aleks Kissinger. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+#import <QuartzCore/CoreAnimation.h>
+
+@class Transformer;
+
+@interface CALayer(DrawLabel)
+
+- (void)drawLabel:(NSString*)label
+ atPoint:(NSPoint)pt
+ inContext:(CGContextRef)context
+ usingTrans:(Transformer*)t;
+
+@end