diff options
author | ritsuka <[email protected]> | 2014-08-25 15:56:57 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-25 15:56:57 +0000 |
commit | 7f5f9fa934bf1e5afb7567badf40147c28594ff6 (patch) | |
tree | 67d9d7b861c6b1e0544822ceebae738a2d6a294e /macosx/HBSubtitlesController.h | |
parent | 68f946e7ea88e2393338716d36a90d36dc1337fb (diff) |
MacGui: store the audio and subtitles defaults in each queue item so they can be loaded back from the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6360 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitlesController.h')
-rw-r--r-- | macosx/HBSubtitlesController.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/HBSubtitlesController.h b/macosx/HBSubtitlesController.h index a117cee0f..013074cf0 100644 --- a/macosx/HBSubtitlesController.h +++ b/macosx/HBSubtitlesController.h @@ -21,6 +21,8 @@ extern NSString *keySubTrackSrtOffset; extern NSString *keySubTrackSrtFilePath; extern NSString *keySubTrackSrtCharCode; +@class HBSubtitlesDefaults; + /** * HBSubtitlesController * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications. @@ -30,9 +32,10 @@ extern NSString *keySubTrackSrtCharCode; - (void)addTracksFromQueue:(NSMutableArray *)newSubtitleArray; - (void)applySettingsFromPreset:(NSDictionary *)preset; -- (void)prepareSubtitlesForPreset:(NSMutableDictionary *)preset; // Get the list of subtitles tracks @property (readonly, nonatomic, copy) NSArray *subtitles; +@property (nonatomic, readonly) HBSubtitlesDefaults *settings; + @end |