summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r--macosx/HBAudioController.h36
1 files changed, 7 insertions, 29 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h
index 9088e5b92..2dcb94427 100644
--- a/macosx/HBAudioController.h
+++ b/macosx/HBAudioController.h
@@ -1,40 +1,18 @@
-//
-// HBAudioController.h
-// HandBrake
-//
-// Created on 2010-08-24.
-//
+/* HBAudioController.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>
-@class HBJob;
-@class HBAudioTrack;
+@class HBAudio;
/**
* 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;
+@property (nonatomic, readwrite, assign) HBAudio *audio;
@end