summaryrefslogtreecommitdiff
path: root/src/osx/SelectBoxLayer.h
diff options
context:
space:
mode:
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