rentzsch / Blitz

20 slides. 15 seconds each. 5 minutes total. Go.

This URL has Read+Write access

Blitz / SpeakerNotesWindowController.h
100644 33 lines (25 sloc) 0.664 kb
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
//
// SpeakerNotesWindowController.h
// Blitz
//
// Created by Timothy J. Wood on 9/19/09.
// Copyright 2009 The Omni Group. All rights reserved.
//
 
#import <AppKit/NSWindowController.h>
 
@class PDFDocument;
@class WebView;
@class SpeakerSlidesView;
 
@interface SpeakerNotesWindowController : NSWindowController
{
@private
    WebView *_webView;
    NSData *_htmlData;
    NSUInteger _pageIndex;
    SpeakerSlidesView *_slidesView;
}
 
- initWithHTMLData:(NSData *)htmlData;
 
@property(retain) IBOutlet WebView *webView;
@property(retain) IBOutlet SpeakerSlidesView *slidesView;
@property(readwrite) NSUInteger pageIndex;
 
- (void)changeFont:(id)sender;
 
@end