blob: a9a994a45619bde923a3335a9358865f38684ab5 [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#import <Cocoa/Cocoa.h>
class SkNSContainerView;
class SkView;
@interface SkNSView : NSView {
SkNSContainerView* fView;
@private
NSPoint fOffset, fCenter;
CGFloat fScale, fRotation;
}
@property(readwrite) NSPoint fOffset, fCenter;
@property(readwrite) CGFloat fScale, fRotation;
-(void) addSkView:(SkView*)aView;
-(void) resetTransformations;
@end