mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
22 lines
393 B
Objective-C
22 lines
393 B
Objective-C
//
|
|
// File: VLPDFWindow.h - Manipulate preview window
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2005-2011 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <Quartz/Quartz.h>
|
|
|
|
@interface VLPDFWindow : NSWindowController <NSToolbarDelegate> {
|
|
IBOutlet NSWindowController * sheetWin;
|
|
IBOutlet PDFView * pdfView;
|
|
}
|
|
|
|
- (void)reloadPDF;
|
|
|
|
@end
|