blob: 7ba85c505d0f4334a32e93ab1e08430697644b96 [file] [log] [blame]
#import <UIKit/UIKit.h>
#import "SkView.h"
#import "SkOSWindow_iOS.h"
class SkUIContainerView;
@interface SkUIView_shell : UIView {
UINavigationItem* fTitle;
SkOSWindow* fSkWind;
@private
CGPoint fOffset, fCenter;
CGFloat fScale, fRotation;
}
@property(assign) CGPoint fOffset, fCenter;
@property(assign) CGFloat fScale, fRotation;
@property(retain) UINavigationItem* fTitle;
- (void)resetTransformations;
- (void)setSkWindow:(SkOSWindow*)anSkWindow;
- (void)setSkTitle:(const char*)title;
- (void)postInvalWithRect:(const SkIRect*)rectOrNil;
- (BOOL)onHandleEvent:(const SkEvent&)event;
@end