diff options
author | ritsuka <[email protected]> | 2014-12-23 10:26:39 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-23 10:26:39 +0000 |
commit | 9297c8f803c220c58b0cb187be8c584643ac3418 (patch) | |
tree | bd88e8e632a3121d6232eeb9d8b342e19657bb6e /macosx/HBPreviewController.h | |
parent | a66b692e29674de9c444fd54f0493d03b4900abc (diff) |
MacGui: remove some unused #import. Move again more things in HBController to HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6644 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPreviewController.h')
-rw-r--r-- | macosx/HBPreviewController.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/macosx/HBPreviewController.h b/macosx/HBPreviewController.h index 36a71faed..a90f8f957 100644 --- a/macosx/HBPreviewController.h +++ b/macosx/HBPreviewController.h @@ -11,9 +11,16 @@ @class HBCore; @class HBJob; +@protocol HBPreviewControllerDelegate <NSObject> + +- (IBAction)showPicturePanel:(id)sender; + +@end + @interface HBPreviewController : NSWindowController <NSWindowDelegate> -@property (nonatomic, assign) HBController *delegate; +- (id)initWithDelegate:(id <HBPreviewControllerDelegate>)delegate; + @property (nonatomic, assign) HBCore *core; @property (nonatomic, assign) HBJob *job; |