OSDN Git Service

Enable jam to work by changing the error handling to use a callback rather than a...
[handbrake-jp/handbrake-jp-git.git] / macosx / QueueController.h
1 /* QueueController */
2
3 #include <Cocoa/Cocoa.h>
4
5 #include "hb.h"
6
7 @interface QueueController : NSObject
8 {
9     hb_handle_t            * fHandle;
10     IBOutlet NSScrollView  * fScrollView;
11     IBOutlet NSView        * fTaskView;
12         
13         /*Display variables for each job in view*/
14         NSString               * jobFormat;
15         NSString               * jobPictureDetail;
16         NSString               * jobVideoDetail;
17         NSString               * jobVideoCodec;
18         NSString               * jobVideoQuality;
19         
20         NSString               * jobAudioDetail;
21         NSString               * jobAudioCodec;
22 }
23
24 - (void)     SetHandle: (hb_handle_t *) handle;
25 - (IBAction) Update: (id) sender;
26 - (IBAction) ClosePanel: (id) sender;
27
28 @end