diff options
author | dynaflash <[email protected]> | 2010-01-12 21:22:54 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-01-12 21:22:54 +0000 |
commit | 08485e0ceb1477500971719cdea1d7f80eb9421c (patch) | |
tree | 9e44b2d84aed140123cf905ee7a0b4a2b7436d0b /macosx/HBPreferencesController.h | |
parent | b1a380c995965f816a70431a582634549801cdc7 (diff) |
MacGui: Add the ability to send the finished encode to any application the user chooses instead of just "Send to MetaX".
- Retains a checkbox to acivate sending the finished encode
- Adds a file name textfield and a browse button so user can choose the app to send the finished encode to.
- Defaults to MetaX as this would be the only app already existing in the users prefs.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3068 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPreferencesController.h')
-rw-r--r-- | macosx/HBPreferencesController.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/macosx/HBPreferencesController.h b/macosx/HBPreferencesController.h index 297fe5725..ca1ad5ab4 100644 --- a/macosx/HBPreferencesController.h +++ b/macosx/HBPreferencesController.h @@ -8,9 +8,13 @@ @interface HBPreferencesController : NSWindowController { IBOutlet NSView * fGeneralView, * fPictureView, * fAudioView, * fAdvancedView; + IBOutlet NSTextField * fSendEncodeToAppField; } + (void)registerUserDefaults; - (id)init; - +/* Manage the send encode to xxx.app windows and field */ +- (IBAction) browseSendToApp: (id) sender; +- (void) browseSendToAppDone: (NSOpenPanel *) sheet + returnCode: (int) returnCode contextInfo: (void *) contextInfo; @end |