blob: 9088e5b924b2d5ddf80709c66b7890851055a563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
//
// HBAudioController.h
// HandBrake
//
// Created on 2010-08-24.
//
#import <Cocoa/Cocoa.h>
@class HBJob;
@class HBAudioTrack;
/**
* HBAudioController
*
* Responds to HBContainerChangedNotification.
*/
@interface HBAudioController : NSViewController
@property (nonatomic, readonly, retain) NSArray *masterTrackArray;
@property (nonatomic, readonly) NSDictionary *noneTrack;
@property (nonatomic, readwrite, assign) HBJob *job;
- (void) applySettingsFromPreset:(NSDictionary *)preset;
- (BOOL) anyCodecMatches: (int) aCodecValue;
- (void) settingTrackToNone: (HBAudioTrack *) newNoneTrack;
- (void) switchingTrackFromNone: (HBAudioTrack *) noLongerNoneTrack;
@end
@interface HBAudioController (KVC)
- (NSUInteger) countOfAudioArray;
- (HBAudioTrack *) objectInAudioArrayAtIndex: (NSUInteger) index;
- (void) insertObject: (HBAudioTrack *) audioObject inAudioArrayAtIndex: (NSUInteger) index;
- (void) removeObjectFromAudioArrayAtIndex: (NSUInteger) index;
@end
|