summaryrefslogtreecommitdiff
path: root/src/osx/SelectBoxLayer.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/SelectBoxLayer.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/SelectBoxLayer.h')
-rw-r--r--src/osx/SelectBoxLayer.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/osx/SelectBoxLayer.h b/src/osx/SelectBoxLayer.h
new file mode 100644
index 0000000..45b43c7
--- /dev/null
+++ b/src/osx/SelectBoxLayer.h
@@ -0,0 +1,22 @@
+//
+// SelectBoxLayer.h
+// TikZiT
+//
+// Created by Aleks Kissinger on 14/06/2010.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+#import <QuartzCore/CoreAnimation.h>
+
+@interface SelectBoxLayer : CALayer {
+ BOOL active;
+ CGRect box;
+}
+
+@property (assign) BOOL active;
+@property (assign) NSRect selectBox;
+
++ (SelectBoxLayer*)layer;
+
+@end