public
Description: 20 slides. 15 seconds each. 5 minutes total. Go.
Homepage:
Clone URL: git://github.com/rentzsch/Blitz.git
Blitz / MyDocument.h
100644 21 lines (14 sloc) 0.392 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import <Cocoa/Cocoa.h>
#import <Quartz/Quartz.h>
 
@interface MyDocument : NSDocument {
@private PDFDocument *pdfDocument;
@private NSTimer *timer;
    @private BOOL isInFullScreenMode;
    
    
    NSUInteger secondsElapsed;
    NSUInteger pageIndex;
    BOOL running;
}
 
@property (readwrite) NSUInteger pageIndex;
@property (readonly) BOOL running;
 
- (IBAction)start:(id)sender;
 
@end