summaryrefslogtreecommitdiffstats
path: root/macosx/QueueController.h
blob: c86ffd4ecfc014845fe6355d2a0323356708e00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* QueueController */

#include <Cocoa/Cocoa.h>

#include "hb.h"

@interface QueueController : NSObject
{
    hb_handle_t            * fHandle;
    IBOutlet NSScrollView  * fScrollView;
    IBOutlet NSView        * fTaskView;
	
	/*Display variables for each job in view*/
	NSString               * jobFormat;
	NSString               * jobPictureDetail;
	NSString               * jobVideoDetail;
	NSString               * jobVideoCodec;
	NSString               * jobVideoQuality;
	
	NSString               * jobAudioDetail;
	NSString               * jobAudioCodec;
}

- (void)     SetHandle: (hb_handle_t *) handle;
- (IBAction) Update: (id) sender;
- (IBAction) ClosePanel: (id) sender;

@end