2019-07-19 21:17:27 +02:00
|
|
|
/* 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 "HBQueueItem.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@protocol HBQueueTableViewControllerDelegate
|
|
|
|
|
2019-07-27 13:15:37 +02:00
|
|
|
- (void)tableViewDidSelectItemsAtIndexes:(NSIndexSet *)indexes;
|
2019-07-19 21:17:27 +02:00
|
|
|
- (void)tableViewEditItem:(HBQueueItem *)item;
|
2019-07-27 13:15:37 +02:00
|
|
|
- (void)tableViewResetItemsAtIndexes:(NSIndexSet *)indexes;
|
2019-07-19 21:17:27 +02:00
|
|
|
- (void)tableViewRemoveItemsAtIndexes:(NSIndexSet *)indexes;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface HBQueueTableViewController : NSViewController
|
|
|
|
|
|
|
|
- (instancetype)initWithQueue:(HBQueue *)queue delegate:(id<HBQueueTableViewControllerDelegate>)delegate;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|