diff options
Diffstat (limited to 'macosx/HBSubtitlesController.h')
-rw-r--r-- | macosx/HBSubtitlesController.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/macosx/HBSubtitlesController.h b/macosx/HBSubtitlesController.h new file mode 100644 index 000000000..66428bf39 --- /dev/null +++ b/macosx/HBSubtitlesController.h @@ -0,0 +1,21 @@ +/* $Id: HBSubtitles.h + + 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> + +/** + * HBSubtitlesController + * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications. + */ +@interface HBSubtitlesController : NSViewController + +- (void)enableUI:(BOOL)b; +- (void)addTracksFromQueue:(NSMutableArray *)newSubtitleArray; + +// Get the list of subtitles tracks +@property (readonly, nonatomic) NSArray *subtitleArray; + +@end |