mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 11:14:00 +00:00
22 lines
372 B
C
22 lines
372 B
C
|
//
|
||
|
// VLPDFWindow.h
|
||
|
// Vocalese
|
||
|
//
|
||
|
// Created by Matthias Neeracher on 5/29/05.
|
||
|
// Copyright 2005 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface VLPDFWindow : NSWindowController {
|
||
|
IBOutlet id pdfView;
|
||
|
IBOutlet id prevPageItem;
|
||
|
IBOutlet id nextPageItem;
|
||
|
IBOutlet id zoomInItem;
|
||
|
IBOutlet id zoomOutItem;
|
||
|
}
|
||
|
|
||
|
- (void)reloadPDF;
|
||
|
|
||
|
@end
|