diff options
author | handbrake <[email protected]> | 2006-01-14 13:40:38 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 13:40:38 +0000 |
commit | 56bb6ce496b475944bb9577c7586e84be1cb831e (patch) | |
tree | 7720c135a160a34f22ce8f1f911f350e18207eaa /macosx/QueueController.h | |
parent | d35a2a23fe450c88925128b9db7c63a5f1ed395d (diff) |
HandBrake 0.7.0
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@16 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/QueueController.h')
-rw-r--r-- | macosx/QueueController.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/macosx/QueueController.h b/macosx/QueueController.h new file mode 100644 index 000000000..635adc7b8 --- /dev/null +++ b/macosx/QueueController.h @@ -0,0 +1,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 |