aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/mac/HelloWorldDelegate.h
blob: 40e910b7702e36b9b6798b1edf864bbfe49b8970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

/*
 * 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 HelloWorldDelegate : 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;

- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender;

@end