HandBrake/macosx/HBQueueTableViewController.h

30 lines
732 B
C
Raw Normal View History

/* HBQueueTableViewController.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Cocoa/Cocoa.h>
#import "HBQueue.h"
#import "HBDistributedArray.h"
#import "HBQueueItem.h"
NS_ASSUME_NONNULL_BEGIN
@protocol HBQueueTableViewControllerDelegate
- (void)tableViewDidSelectItem:(nullable HBQueueItem *)item;
- (void)tableViewEditItem:(HBQueueItem *)item;
- (void)tableViewRemoveItemsAtIndexes:(NSIndexSet *)indexes;
@end
@interface HBQueueTableViewController : NSViewController
- (instancetype)initWithQueue:(HBQueue *)queue delegate:(id<HBQueueTableViewControllerDelegate>)delegate;
@end
NS_ASSUME_NONNULL_END