OSDN Git Service

Merge the 5.1 branch into the trunk.
[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
14 - (void)     SetHandle: (hb_handle_t *) handle;
15 - (IBAction) Update: (id) sender;
16 - (IBAction) ClosePanel: (id) sender;
17
18 @end