blob: eded2b8494bcf4dd4f12282c2562428f245c6b20 [file] [log] [blame]
#import <Cocoa/Cocoa.h>
class SkNSContainerView;
class SkView;
@interface SkNSView : NSView {
SkNSContainerView* fView;
@private
NSPoint offset, center;
CGFloat scale, rotation;
}
@property(readwrite) NSPoint offset, center;
@property(readwrite) CGFloat scale, rotation;
-(void) addSkView:(SkView*)aView;
-(void) resetTransformations;
@end