michael@0: michael@0: /* michael@0: * Copyright 2011 Google Inc. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #import michael@0: #import "SkSampleNSView.h" michael@0: #import "SkOptionsTableView.h" michael@0: @interface SampleAppDelegate : NSObject { michael@0: NSWindow* fWindow; michael@0: SkSampleNSView* fView; michael@0: SkOptionsTableView* fOptions; michael@0: } michael@0: michael@0: @property (assign) IBOutlet NSWindow* fWindow; michael@0: @property (assign) IBOutlet SkSampleNSView* fView; michael@0: @property (assign) IBOutlet SkOptionsTableView* fOptions; michael@0: michael@0: - (IBAction)toiPadSize:(id)sender; michael@0: @end