blob: ca1ad5ab4733662ba2cd49d39a623c5b3d27f94e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* @file
* Interface of class HBPreferencesController.
*/
#import <Cocoa/Cocoa.h>
@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
|