summaryrefslogtreecommitdiffstats
path: root/macosx/QueueController.h
blob: 635adc7b89ef7902b795f8d2c03d30f2c6bbfacc (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 "hb.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