mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
24 lines
407 B
Objective-C
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
|