mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-24 04:29:44 +00:00
27 lines
487 B
C
27 lines
487 B
C
|
//
|
||
|
// NSPrintProgressPanelController.h
|
||
|
// AppKit
|
||
|
//
|
||
|
// Created by Robert Grant on 7/25/13.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <AppKit/AppKit.h>
|
||
|
|
||
|
@interface NSPrintProgressPanelController : NSWindowController {
|
||
|
IBOutlet NSProgressIndicator *progressIndicator;
|
||
|
}
|
||
|
|
||
|
+ (NSPrintProgressPanelController *)printProgressPanelController;
|
||
|
|
||
|
- (void)setTitle:(NSString *)title;
|
||
|
|
||
|
- (void)setMaxPages:(NSInteger)maxPages;
|
||
|
|
||
|
- (void)setCurrentPage:(NSInteger)currentPage;
|
||
|
|
||
|
- (void)showPanel;
|
||
|
- (void)hidePanel;
|
||
|
|
||
|
@end
|