/* * 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 #import #import #import #import #import #import #include "SkOSWindow_ios.h" class SkEvent; @class SkUIView; @protocol SkUIViewOptionsDelegate @optional // Called when the view needs to handle adding an SkOSMenu - (void) view:(SkUIView*)view didAddMenu:(const SkOSMenu*)menu; - (void) view:(SkUIView*)view didUpdateMenu:(const SkOSMenu*)menu; @end @interface SkUIView : UIView { UINavigationItem* fTitleItem; SkOSWindow* fWind; id fOptionsDelegate; } @property (nonatomic, readonly) SkOSWindow *fWind; @property (nonatomic, retain) UINavigationItem* fTitleItem; @property (nonatomic, assign) id fOptionsDelegate; - (id)initWithDefaults; - (void)setUpWindow; - (void)forceRedraw; - (void)drawInRaster; - (void)setSkTitle:(const char*)title; - (void)onAddMenu:(const SkOSMenu*)menu; - (void)onUpdateMenu:(const SkOSMenu*)menu; - (void)postInvalWithRect:(const SkIRect*)rectOrNil; - (BOOL)onHandleEvent:(const SkEvent&)event; - (void)getAttachmentInfo:(SkOSWindow::AttachmentInfo*)info; @end