summaryrefslogtreecommitdiffstats
path: root/macosx/QueueController.h
blob: 94feab4fb2c88a7b7a0b16c2da9130408c8c5dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* QueueController */

#include <Cocoa/Cocoa.h>

#include "mediafork.h"

@interface QueueController : NSObject
{
    hb_handle_t            * fHandle;
    IBOutlet NSScrollView  * fScrollView;
    IBOutlet NSView        * fTaskView;
}

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

@end