summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/SelectBoxLayer.h
blob: 45b43c7e2a5feef6135d62b4f5bb89acd47f19be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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