diff options
author | ritsuka <[email protected]> | 2014-08-04 07:12:12 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-08-04 07:12:12 +0000 |
commit | 3fdfc2d020d300bee991b4aa5c931bb9e33c3c10 (patch) | |
tree | 88c6296081a2076d71fe59a67fd272995889e199 /macosx/HBAudioDefaultsController.h | |
parent | 49a49b9d4664b33dc3d7a723fe421a7b695e2052 (diff) |
MacGui: Adds a new sheet for audio defaults (presets), uses the same preset keys as the LinGui.
The built-in presets still use the languages from the Audio preferences.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6264 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioDefaultsController.h')
-rw-r--r-- | macosx/HBAudioDefaultsController.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/HBAudioDefaultsController.h b/macosx/HBAudioDefaultsController.h new file mode 100644 index 000000000..c592ea6eb --- /dev/null +++ b/macosx/HBAudioDefaultsController.h @@ -0,0 +1,17 @@ +/* HBAudioDefaultsController.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 HBAudioSettings; + +@interface HBAudioDefaultsController : NSWindowController + +- (instancetype)initWithSettings:(HBAudioSettings *)settings; + +@property (nonatomic, readwrite, assign) id delegate; + +@end |