/* HBTitleSelectionController.h
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import "HBTitleSelectionController.h"
@import HandBrakeKit.HBTitle;
@interface HBTitleSelection : NSObject
@property (nonatomic, readonly) HBTitle *title;
@property (nonatomic, readonly) BOOL selected;
@property (nonatomic, readonly, assign) NSUndoManager *undo;
@end
@implementation HBTitleSelection
- (instancetype)initWithTitle:(HBTitle *)title undo:(NSUndoManager *)undo
{
if (self = [super init])
{
_title = title;
_selected = YES;
_undo = undo;
}
return self;
}
- (void)setSelected:(BOOL)selected
{
if (selected != _selected)
{
[[self.undo prepareWithInvocationTarget:self] setSelected:_selected];
}
_selected = selected;
}
@end
@interface HBTitleSelectionController ()
@property (nonatomic, readwrite) NSArray *titles;
@property (nonatomic, readonly, assign) id delegate;
@property (nonatomic, readonly) NSString *message;
@end
@implementation HBTitleSelectionController
- (instancetype)initWithTitles:(NSArray *)titles presetName:(NSString *)presetName delegate:(id)delegate;
{
self = [super initWithWindowNibName:@"HBTitleSelection"];
if (self)
{
_delegate = delegate;
_message = [NSString stringWithFormat:NSLocalizedString(@"Select the titles to add to the queue using the %@ preset:" , nil), presetName];
NSMutableArray *array = [[NSMutableArray alloc] init];
for (HBTitle *title in titles)
{
[array addObject:[[HBTitleSelection alloc] initWithTitle:title undo:self.window.undoManager]];
}
self.titles = [array copy];
}
return self;
}
- (IBAction)deselectAll:(id)sender
{
for (HBTitleSelection *title in self.titles)
{
title.selected = NO;
}
}
- (IBAction)add:(id)sender
{
NSMutableIndexSet *indexes = [NSMutableIndexSet indexSet];
[self.titles enumerateObjectsUsingBlock:^(HBTitleSelection *obj, NSUInteger idx, BOOL *stop) {
if (obj.selected)
{
[indexes addIndex:obj.title.index];
}
}];
[self.delegate didSelectIndexes:indexes];
}
- (IBAction)cancel:(id)sender
{
[self.delegate didSelectIndexes:[NSIndexSet indexSet]];
}
@end