diff options
author | dynaflash <[email protected]> | 2007-12-05 17:08:32 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-12-05 17:08:32 +0000 |
commit | df09b14480943f36a76baecd7385d95061ed617d (patch) | |
tree | 2ccda5d68003c7140055ebc3c15f84815e1cd6ba /macosx/HBPresets.h | |
parent | 9639cbcff49ff4afb5d4f1c9471f0d958a8eaaec (diff) |
MacGui: Built-In Presets moved to new class: HBPresets
- Built In Presets are now created and defined in the methods in HBPresets.h and HBPresets.m
- May move other preset methods here in the future as well.
- Updated Jamfile as appropriate
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1098 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPresets.h')
-rw-r--r-- | macosx/HBPresets.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/macosx/HBPresets.h b/macosx/HBPresets.h new file mode 100644 index 000000000..0ab2d3968 --- /dev/null +++ b/macosx/HBPresets.h @@ -0,0 +1,34 @@ +/* HBPresets.h $ + + This file is part of the HandBrake source code. + Homepage: <http://handbrake.m0k.org/>. + It may be used under the terms of the GNU General Public License. */ + +#import <Cocoa/Cocoa.h> + + +@interface HBPresets : NSObject { + +} +/* Called by -addFactoryPresets in Controller.mm */ +- (NSMutableArray *) generateBuiltinPresets: (NSMutableArray *) UserPresets; + +/* Built-In Preset Dictionaries (one for each built in preset) */ +- (NSDictionary *)createIpodLowPreset; +- (NSDictionary *)createIpodHighPreset; +- (NSDictionary *)createAppleTVPreset; +- (NSDictionary *)createPSThreePreset; +- (NSDictionary *)createPSPPreset; +- (NSDictionary *)createNormalPreset; +- (NSDictionary *)createClassicPreset; +- (NSDictionary *)createQuickTimePreset; +- (NSDictionary *)createFilmPreset; +- (NSDictionary *)createTelevisionPreset; +- (NSDictionary *)createAnimationPreset; +- (NSDictionary *)createBedlamPreset; +- (NSDictionary *)createiPhonePreset; +- (NSDictionary *)createDeuxSixQuatrePreset; +- (NSDictionary *)createBrokePreset; +- (NSDictionary *)createBlindPreset; +- (NSDictionary *)createCRFPreset; +@end |