VocalEasel/Sources/VLPDFWindow.h

24 lines
407 B
C
Raw Normal View History

2006-10-26 08:21:50 +00:00
//
2007-04-27 06:41:34 +00:00
// File: VLPDFWindow.h - Manipulate preview window
2006-10-26 08:21:50 +00:00
//
2007-04-27 06:41:34 +00:00
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2005-2007 Matthias Neeracher
2006-10-26 08:21:50 +00:00
//
#import <Cocoa/Cocoa.h>
2011-07-24 03:31:17 +00:00
@interface VLPDFWindow : NSWindowController <NSToolbarDelegate> {
2006-10-26 08:21:50 +00:00
IBOutlet id pdfView;
IBOutlet id prevPageItem;
IBOutlet id nextPageItem;
IBOutlet id zoomInItem;
IBOutlet id zoomOutItem;
}
- (void)reloadPDF;
@end