summaryrefslogtreecommitdiffstats
path: root/macosx/HBSubtitlesController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-21 06:34:10 +0000
committerritsuka <[email protected]>2014-12-21 06:34:10 +0000
commit01b16be689edd6ade8a348466a9cb362b0d3a949 (patch)
tree79e629a396e7cf62f5c7f80a7b59f84c2166003d /macosx/HBSubtitlesController.h
parentb4a65e7027fc060c8df9deae30a2a3ab460be520 (diff)
MacGui: use HBJob when possible.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6633 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesController.h')
-rw-r--r--macosx/HBSubtitlesController.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/macosx/HBSubtitlesController.h b/macosx/HBSubtitlesController.h
index dd41d1d81..d44d514b1 100644
--- a/macosx/HBSubtitlesController.h
+++ b/macosx/HBSubtitlesController.h
@@ -21,21 +21,20 @@ extern NSString *keySubTrackSrtOffset;
extern NSString *keySubTrackSrtFilePath;
extern NSString *keySubTrackSrtCharCode;
-@class HBSubtitlesDefaults;
+@class HBJob;
/**
* HBSubtitlesController
- * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications.
+ * Responds to HBContainerChangedNotification.
*/
@interface HBSubtitlesController : NSViewController <HBViewValidation>
- (void)addTracksFromQueue:(NSArray *)queueSubtitleArray;
-
- (void)applySettingsFromPreset:(NSDictionary *)preset;
+@property (nonatomic, readwrite, assign) HBJob *job;
+
// Get the list of subtitles tracks
@property (readonly, nonatomic, copy) NSArray *subtitles;
-@property (nonatomic, readonly) HBSubtitlesDefaults *settings;
-
@end