diff options
Diffstat (limited to 'macosx/HBPreviewController.h')
-rw-r--r-- | macosx/HBPreviewController.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/macosx/HBPreviewController.h b/macosx/HBPreviewController.h index ed7fd19ab..36a71faed 100644 --- a/macosx/HBPreviewController.h +++ b/macosx/HBPreviewController.h @@ -5,19 +5,22 @@ It may be used under the terms of the GNU General Public License. */ #import <Cocoa/Cocoa.h> -#include "hb.h" @class HBController; -@interface HBPreviewController : NSWindowController <NSWindowDelegate> +@class HBCore; +@class HBJob; -@property (nonatomic) BOOL deinterlacePreview; -@property (nonatomic, readonly) NSString *pictureSizeInfoString; +@interface HBPreviewController : NSWindowController <NSWindowDelegate> @property (nonatomic, assign) HBController *delegate; -@property (nonatomic, assign) hb_handle_t *handle; -@property (nonatomic, assign) hb_title_t *title; - -- (void) reload; +@property (nonatomic, assign) HBCore *core; +@property (nonatomic, assign) HBJob *job; + +/** + * Reloads the preview images. + * Usually called after a picture setting changes. + */ +- (void)reloadPreviews; @end |