diff options
author | ritsuka <[email protected]> | 2014-08-10 16:05:07 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-10 16:05:07 +0000 |
commit | 6aee3b7518264af46fd7d2f4580579313e2eaf72 (patch) | |
tree | 9e2839ae202e1c07baeb181abba643714ae71b21 /macosx/HBAudioController.h | |
parent | c50899dd7361801c04463fe1630392500608ebab (diff) |
MacGui: implemented the HBViewValidation protocol in each of the main window view controllers.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6285 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r-- | macosx/HBAudioController.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h index 8655a0792..b77b3ad20 100644 --- a/macosx/HBAudioController.h +++ b/macosx/HBAudioController.h @@ -6,6 +6,7 @@ // #import <Cocoa/Cocoa.h> +#import "HBViewValidation.h" extern NSString *keyAudioTrackIndex; extern NSString *keyAudioTrackName; @@ -24,7 +25,7 @@ extern NSString *HBMixdownChangedNotification; * * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications. */ -@interface HBAudioController : NSViewController +@interface HBAudioController : NSViewController <HBViewValidation> @property (nonatomic, readonly, retain) NSArray *masterTrackArray; @property (nonatomic, readonly) NSDictionary *noneTrack; @@ -34,8 +35,6 @@ extern NSString *HBMixdownChangedNotification; // Get the list of audio tracks @property (readonly, nonatomic, copy) NSArray *audioTracks; -- (void) enableUI: (BOOL) b; - - (void) applySettingsFromPreset:(NSDictionary *)preset; - (void) addTracksFromQueue: (NSMutableDictionary *) aQueue; |