summaryrefslogtreecommitdiffstats
path: root/macosx/PictureController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-20 18:56:10 +0000
committerritsuka <[email protected]>2014-12-20 18:56:10 +0000
commitf1846aaeac294291862156447bff495c1f016613 (patch)
tree8e183230e25b056e87c406d3eb1c9bf9332219f4 /macosx/PictureController.h
parent4ced50fce98afc403c48a1f06a2f8f05d2d79c96 (diff)
MacGui: integrated HBPicture in HBPictureController and started to move things over to HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6628 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r--macosx/PictureController.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h
index 777868efb..c2ea23d5c 100644
--- a/macosx/PictureController.h
+++ b/macosx/PictureController.h
@@ -5,28 +5,23 @@
It may be used under the terms of the GNU General Public License. */
#import <Cocoa/Cocoa.h>
+
#import "HBFilters.h"
-#include "hb.h"
+#import "HBPicture.h"
@protocol HBPictureControllerDelegate <NSObject>
-- (void) pictureSettingsDidChange;
+- (IBAction)showPreviewWindow:(id)sender;
@end
@interface HBPictureController : NSWindowController <NSWindowDelegate>
@property (nonatomic, readwrite, retain) HBFilters *filters;
-@property (nonatomic, readwrite) BOOL autoCrop;
+@property (nonatomic, readwrite, retain) HBPicture *picture;
@property (nonatomic, readwrite, assign) id <HBPictureControllerDelegate> delegate;
-- (void) setHandle:(hb_handle_t *) handle;
-- (void) setTitle:(hb_title_t *) title;
-
-- (IBAction) showPictureWindow: (id)sender;
-- (IBAction) showPreviewWindow: (id)sender;
-
-- (NSString *) pictureSizeInfoString;
+- (void)showPictureWindow;
@end