-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMyAppDelegate.h
34 lines (28 loc) · 925 Bytes
/
MyAppDelegate.h
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
28
29
30
31
32
33
34
//
// MyAppDelegate.h
// Blitz
//
// Created by Kevin Mitchell on 10/12/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Keynote.h"
@interface MyAppDelegate : NSObject {
NSMutableArray *windowControllers;
NSWindowController *preferencesWindowController;
NSTimeInterval secondsElapsed;
KeynoteApplication *keynote;
bool running;
NSTimer *timer;
}
@property (retain) NSMutableArray *windowControllers;
@property (retain) NSWindowController *preferencesWindowController;
@property (retain) KeynoteApplication *keynote;
@property (assign, setter=setSecondsElapsed:) NSTimeInterval secondsElapsed;
@property (assign) bool running;
@property (retain) NSTimer *timer;
- (IBAction)startStopReset:(id)sender;
- (void) setSecondsElapsed:(NSTimeInterval)elapsed;
- (IBAction)showFloatingCounters:(id)sender;
- (IBAction)showPreferences:(id)sender;
@end