summaryrefslogtreecommitdiffstats
path: root/macosx/HBPictureViewController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-07-27 08:51:30 +0000
committerritsuka <[email protected]>2015-07-27 08:51:30 +0000
commitaa4f592e9a991144e1ecac601858eefbf12a853c (patch)
treecb599cf44204baccde988182beae546f86e22e52 /macosx/HBPictureViewController.h
parent0f53167a48fdb049021d0ea9128970c2a4e27e32 (diff)
MacGui: move the picture and filters settings to the main window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7379 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPictureViewController.h')
-rw-r--r--macosx/HBPictureViewController.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/macosx/HBPictureViewController.h b/macosx/HBPictureViewController.h
new file mode 100644
index 000000000..4ee956fae
--- /dev/null
+++ b/macosx/HBPictureViewController.h
@@ -0,0 +1,19 @@
+//
+// HBPictureViewController.h
+// HandBrake
+//
+// Created by Damiano Galassi on 24/07/15.
+//
+//
+
+#import <Cocoa/Cocoa.h>
+
+@class HBPicture;
+@class HBFilters;
+
+@interface HBPictureViewController : NSViewController
+
+@property (nonatomic, readwrite, weak) HBPicture *picture;
+@property (nonatomic, readwrite, weak) HBFilters *filters;
+
+@end