VocalEasel/Sources/VLPDFWindow.h
2011-07-24 03:31:17 +00:00

24 lines
407 B
Objective-C

//
// File: VLPDFWindow.h - Manipulate preview window
//
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2005-2007 Matthias Neeracher
//
#import <Cocoa/Cocoa.h>
@interface VLPDFWindow : NSWindowController <NSToolbarDelegate> {
IBOutlet id pdfView;
IBOutlet id prevPageItem;
IBOutlet id nextPageItem;
IBOutlet id zoomInItem;
IBOutlet id zoomOutItem;
}
- (void)reloadPDF;
@end