338ee24420
git-svn-id: http://skia.googlecode.com/svn/trunk@1700 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
391 B
Objective-C
20 lines
391 B
Objective-C
#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
|
|
|
|
|