aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/views/mac/SampleAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/mac/SampleAppDelegate.h')
-rw-r--r--src/views/mac/SampleAppDelegate.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/views/mac/SampleAppDelegate.h b/src/views/mac/SampleAppDelegate.h
new file mode 100644
index 0000000000..8f2bead7bd
--- /dev/null
+++ b/src/views/mac/SampleAppDelegate.h
@@ -0,0 +1,24 @@
+
+/*
+ * 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>
+#import "SkSampleNSView.h"
+#import "SkOptionsTableView.h"
+@interface SampleAppDelegate : NSObject <NSApplicationDelegate> {
+ NSWindow* fWindow;
+ SkSampleNSView* fView;
+ SkOptionsTableView* fOptions;
+}
+
+@property (assign) IBOutlet NSWindow* fWindow;
+@property (assign) IBOutlet SkSampleNSView* fView;
+@property (assign) IBOutlet SkOptionsTableView* fOptions;
+
+- (IBAction)toiPadSize:(id)sender;
+@end