summaryrefslogtreecommitdiff
path: root/src/osx/CALayer+DrawLabel.h
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-06 13:44:40 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-06 13:44:40 +0000
commit2ed61cfb3ad3d404b9a44bbb3f4c8083b469ae22 (patch)
tree9939c67d95720a330bd7b884363d801cc7d5811d /src/osx/CALayer+DrawLabel.h
Move everything into trunk.
Also add branches and tags directories. git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@348 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
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