diff options
author | ritsuka <[email protected]> | 2014-12-27 10:49:35 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-27 10:49:35 +0000 |
commit | 6a17f942bfee8c4f79d893032dc0a5b6c9bdea2e (patch) | |
tree | 7e50315aea348534eb4daab15938e3029e553541 /macosx/HBPictureController.h | |
parent | 11e8c42dca071c1f4536d939adbfdb13bbd6645a (diff) |
MacGui: rename PictureController.* to HBPictureController.* .
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6657 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPictureController.h')
-rw-r--r-- | macosx/HBPictureController.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/macosx/HBPictureController.h b/macosx/HBPictureController.h new file mode 100644 index 000000000..6328cc7ab --- /dev/null +++ b/macosx/HBPictureController.h @@ -0,0 +1,27 @@ +/* $Id: PictureController.h,v 1.6 2005/04/14 20:40:05 titer Exp $ + + This file is part of the HandBrake source code. + Homepage: <http://handbrake.fr/>. + It may be used under the terms of the GNU General Public License. */ + +#import <Cocoa/Cocoa.h> + +@class HBFilters; +@class HBPicture; + +@protocol HBPictureControllerDelegate <NSObject> + +- (IBAction)showPreviewWindow:(id)sender; + +@end + +@interface HBPictureController : NSWindowController <NSWindowDelegate> + +@property (nonatomic, readwrite, retain) HBFilters *filters; +@property (nonatomic, readwrite, retain) HBPicture *picture; + +@property (nonatomic, readwrite, assign) id <HBPictureControllerDelegate> delegate; + +- (void)showPictureWindow; + +@end |