diff options
author | ritsuka <[email protected]> | 2008-01-30 12:28:55 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2008-01-30 12:28:55 +0000 |
commit | 70de68d465248336a1d68e5932ac00f60882a612 (patch) | |
tree | 0207bd6c451bc97780597226292420e654af8db7 /macosx/InstantHandBrake/DeviceController.h | |
parent | 0ec912f5fd9008e4643bf375db3088f29c389304 (diff) |
IHB: - Various bugfix
- IHB can loads .ihbdevice presets from a directory inside the application bundle, and from ~/Application Support/Instant Handbrake
- A .ihbdevice file can contain multiple presets, but IHB only reads the first at the moment. I am not sure how to handle multiple presets yet.
- The only way to create an .ihbprofile file is to edit DeviceController.m , another thing I still need to think about.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1239 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/InstantHandBrake/DeviceController.h')
-rw-r--r-- | macosx/InstantHandBrake/DeviceController.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/macosx/InstantHandBrake/DeviceController.h b/macosx/InstantHandBrake/DeviceController.h index 5adf39dc1..7f8b47c4b 100644 --- a/macosx/InstantHandBrake/DeviceController.h +++ b/macosx/InstantHandBrake/DeviceController.h @@ -4,7 +4,7 @@ // // Created by Damiano Galassi on 23/01/08. // This file is part of the HandBrake source code. -// Homepage: <http://handbrake.m0k.org/>. +// Homepage: <http://handbrake.fr/>. // It may be used under the terms of the GNU General Public License. // // @@ -13,11 +13,16 @@ #import "device.h" @interface DeviceController : NSObject { - NSMutableArray * deviceArray; + NSMutableArray *devicesArray; + NSString *appSupportPath; } - (id)init; +- (BOOL) loadDevices; +- (BOOL) loadBuiltInDevices; - (id)populateList; -- (NSArray *) deviceList; +- (NSArray *) devicesList; +- (BOOL) saveDevices; + @end |