1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
|
/* HBPresetsViewController.m $
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 "HBPresetsViewController.h"
#import "HBPresetsManager.h"
#import "HBPreset.h"
// drag and drop pasteboard type
#define kHandBrakePresetPBoardType @"handBrakePresetPBoardType"
@interface HBPresetsViewController () <NSOutlineViewDelegate>
@property (nonatomic, strong) HBPresetsManager *presets;
@property (nonatomic, unsafe_unretained) IBOutlet NSTreeController *treeController;
/**
* Helper var for drag & drop
*/
@property (nonatomic, strong) NSArray *dragNodesArray;
/**
* The status (expanded or not) of the folders.
*/
@property (nonatomic, strong) NSMutableArray *expandedNodes;
@property (unsafe_unretained) IBOutlet NSOutlineView *outlineView;
@end
@implementation HBPresetsViewController
@synthesize enabled = _enabled;
- (instancetype)initWithPresetManager:(HBPresetsManager *)presetManager
{
self = [super initWithNibName:@"Presets" bundle:nil];
if (self)
{
_presets = presetManager;
_expandedNodes = [[NSArray arrayWithArray:[[NSUserDefaults standardUserDefaults]
objectForKey:@"HBPreviewViewExpandedStatus"]] mutableCopy];
}
return self;
}
- (void)loadView
{
[super loadView];
// drag and drop support
[self.outlineView registerForDraggedTypes:@[kHandBrakePresetPBoardType]];
// Re-expand the items
[self expandNodes:[self.treeController.arrangedObjects childNodes]];
[self.treeController setSelectionIndexPath:[self.presets indexPathOfPreset:self.presets.defaultPreset]];
}
- (BOOL)validateUserInterfaceItem:(id < NSValidatedUserInterfaceItem >)anItem
{
SEL action = anItem.action;
if (action == @selector(exportPreset:))
{
if (![[self.treeController selectedObjects] firstObject])
{
return NO;
}
}
if (action == @selector(setDefault:))
{
if (![[[self.treeController selectedObjects] firstObject] isLeaf])
{
return NO;
}
}
return YES;
}
#pragma mark -
#pragma mark Import Export Preset(s)
- (IBAction)exportPreset:(id)sender
{
// Find the current selection, it can be a folder too.
HBPreset *selectedPreset = [[[self.treeController selectedObjects] firstObject] copy];
// Open a panel to let the user choose where and how to save the export file
NSSavePanel *panel = [NSSavePanel savePanel];
panel.title = NSLocalizedString(@"Export presets", nil);
// We get the current file name and path from the destination field here
NSURL *defaultExportDirectory = [[NSURL fileURLWithPath:NSHomeDirectory()] URLByAppendingPathComponent:@"Desktop"];
panel.directoryURL = defaultExportDirectory;
panel.nameFieldStringValue = [NSString stringWithFormat:@"%@.json", selectedPreset.name];
[panel beginWithCompletionHandler:^(NSInteger result)
{
if (result == NSOKButton)
{
NSURL *presetExportDirectory = [panel.URL URLByDeletingLastPathComponent];
[[NSUserDefaults standardUserDefaults] setURL:presetExportDirectory forKey:@"LastPresetExportDirectoryURL"];
[selectedPreset writeToURL:panel.URL atomically:YES format:HBPresetFormatJson removeRoot:NO];
}
}];
}
- (IBAction)importPreset:(id)sender
{
NSOpenPanel *panel = [NSOpenPanel openPanel];
panel.title = NSLocalizedString(@"Import presets", nil);
panel.allowsMultipleSelection = YES;
panel.canChooseFiles = YES;
panel.canChooseDirectories = NO;
panel.allowedFileTypes = @[@"plist", @"xml", @"json"];
if ([[NSUserDefaults standardUserDefaults] URLForKey:@"LastPresetImportDirectoryURL"])
{
panel.directoryURL = [[NSUserDefaults standardUserDefaults] URLForKey:@"LastPresetImportDirectoryURL"];
}
else
{
panel.directoryURL = [[NSURL fileURLWithPath:NSHomeDirectory()] URLByAppendingPathComponent:@"Desktop"];
}
[panel beginWithCompletionHandler:^(NSInteger result)
{
[[NSUserDefaults standardUserDefaults] setURL:panel.directoryURL forKey:@"LastPresetImportDirectoryURL"];
for (NSURL *url in panel.URLs)
{
HBPreset *import = [[HBPreset alloc] initWithContentsOfURL:url];
for (HBPreset *child in import.children)
{
[self.presets addPreset:child];
}
}
}];
}
#pragma mark - UI Methods
- (IBAction)clicked:(id)sender
{
if (self.delegate && [[self.treeController.selectedObjects firstObject] isLeaf])
{
[self.delegate selectionDidChange];
}
}
- (IBAction)addNewPreset:(id)sender
{
if (self.delegate)
{
[self.delegate showAddPresetPanel:sender];
}
}
- (IBAction)deletePreset:(id)sender
{
if ([self.treeController canRemove])
{
// Save the current selection path and apply it again after the deletion
NSIndexPath *currentSelection = [self.treeController selectionIndexPath];
/* Alert user before deleting preset */
NSAlert *alert = [NSAlert alertWithMessageText:@"Warning!"
defaultButton:@"OK"
alternateButton:@"Cancel"
otherButton:nil
informativeTextWithFormat:@"Are you sure that you want to delete the selected preset?"];
[alert setAlertStyle:NSCriticalAlertStyle];
NSInteger status = [alert runModal];
if (status == NSAlertDefaultReturn)
{
[self.presets deletePresetAtIndexPath:[self.treeController selectionIndexPath]];
}
[self.treeController setSelectionIndexPath:currentSelection];
}
}
- (IBAction)insertFolder:(id)sender
{
NSIndexPath *selectionIndexPath = [self.treeController selectionIndexPath];
if (!selectionIndexPath || [[[self.treeController selectedObjects] firstObject] isBuiltIn])
{
selectionIndexPath = [NSIndexPath indexPathWithIndex:self.presets.root.children.count];
}
HBPreset *node = [[HBPreset alloc] initWithFolderName:@"New Folder" builtIn:NO];
[self.treeController insertObject:node atArrangedObjectIndexPath:selectionIndexPath];
}
- (IBAction)setDefault:(id)sender
{
HBPreset *selectedNode = [[self.treeController selectedObjects] firstObject];
if ([[selectedNode valueForKey:@"isLeaf"] boolValue])
{
self.presets.defaultPreset = selectedNode;
}
}
- (void)deselect
{
[self.treeController setSelectionIndexPath:nil];
}
- (void)setSelection:(HBPreset *)preset
{
NSIndexPath *idx = [self.presets indexPathOfPreset:preset];
if (idx)
{
[self.treeController setSelectionIndexPath:idx];
}
}
- (HBPreset *)selectedPreset
{
HBPreset *selectedNode = [[self.treeController selectedObjects] firstObject];
if ([[selectedNode valueForKey:@"isLeaf"] boolValue])
{
return selectedNode;
}
else
{
return self.presets.defaultPreset;
}
}
- (IBAction)updateBuiltInPresets:(id)sender
{
[self.presets generateBuiltInPresets];
// Re-expand the items
[self expandNodes:[self.treeController.arrangedObjects childNodes]];
}
#pragma mark - Added Functionality (optional)
/* We use this to provide tooltips for the items in the presets outline view */
- (NSString *)outlineView:(NSOutlineView *)fPresetsOutlineView
toolTipForCell:(NSCell *)cell
rect:(NSRectPointer)rect
tableColumn:(NSTableColumn *)tc
item:(id)item
mouseLocation:(NSPoint)mouseLocation
{
return [[item representedObject] presetDescription];
}
/* Use to customize the font and display characteristics of the title cell */
- (void)outlineView:(NSOutlineView *)outlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
{
NSColor *fontColor;
if ([self.outlineView selectedRow] == [self.outlineView rowForItem:item])
{
fontColor = [NSColor blackColor];
}
else
{
if ([[item representedObject] isBuiltIn])
{
fontColor = [NSColor blueColor];
}
else // User created preset, use a black font
{
fontColor = [NSColor blackColor];
}
}
[cell setTextColor:fontColor];
}
#pragma mark - Expanded node persistence methods
- (void)expandNodes:(NSArray *)childNodes
{
for (id node in childNodes)
{
[self expandNodes:[node childNodes]];
if ([self.expandedNodes containsObject:@([[node representedObject] hash])])
[self.outlineView expandItem:node expandChildren:YES];
}
}
- (void)outlineViewItemDidExpand:(NSNotification *)notification
{
HBPreset *node = [[[notification userInfo] valueForKey:@"NSObject"] representedObject];
if (![self.expandedNodes containsObject:@(node.hash)])
{
[self.expandedNodes addObject:@(node.hash)];
[[NSUserDefaults standardUserDefaults] setObject:self.expandedNodes forKey:@"HBPreviewViewExpandedStatus"];
}
}
- (void)outlineViewItemDidCollapse:(NSNotification *)notification
{
HBPreset *node = [[[notification userInfo] valueForKey:@"NSObject"] representedObject];
[self.expandedNodes removeObject:@(node.hash)];
[[NSUserDefaults standardUserDefaults] setObject:self.expandedNodes forKey:@"HBPreviewViewExpandedStatus"];
}
#pragma mark - Drag & Drops
/**
* draggingSourceOperationMaskForLocal <NSDraggingSource override>
*/
- (NSDragOperation)draggingSession:(NSDraggingSession *)session sourceOperationMaskForDraggingContext:(NSDraggingContext)context
{
return NSDragOperationMove;
}
/**
* outlineView:writeItems:toPasteboard
*/
- (BOOL)outlineView:(NSOutlineView *)ov writeItems:(NSArray *)items toPasteboard:(NSPasteboard *)pboard
{
// Return no if we are trying to drag a built-in preset
for (id item in items) {
if ([[item representedObject] isBuiltIn])
return NO;
}
[pboard declareTypes:@[kHandBrakePresetPBoardType] owner:self];
// keep track of this nodes for drag feedback in "validateDrop"
self.dragNodesArray = items;
return YES;
}
/**
* outlineView:validateDrop:proposedItem:proposedChildrenIndex:
*
* This method is used by NSOutlineView to determine a valid drop target.
*/
- (NSDragOperation)outlineView:(NSOutlineView *)ov
validateDrop:(id <NSDraggingInfo>)info
proposedItem:(id)item
proposedChildIndex:(NSInteger)index
{
NSDragOperation result = NSDragOperationNone;
if (!item)
{
if (index == 0)
{
// don't allow to drop on top
result = NSDragOperationNone;
}
else
{
// no item to drop on
result = NSDragOperationGeneric;
}
}
else
{
if (index == -1 || [[item representedObject] isBuiltIn] || [self.dragNodesArray containsObject:item])
{
// don't allow dropping on a child
result = NSDragOperationNone;
}
else
{
// drop location is a container
result = NSDragOperationMove;
}
}
return result;
}
/**
* handleInternalDrops:pboard:withIndexPath:
*
* The user is doing an intra-app drag within the outline view.
*/
- (void)handleInternalDrops:(NSPasteboard *)pboard withIndexPath:(NSIndexPath *)indexPath
{
// user is doing an intra app drag within the outline view:
NSArray *newNodes = self.dragNodesArray;
// move the items to their new place (we do this backwards, otherwise they will end up in reverse order)
NSInteger idx;
for (idx = ([newNodes count] - 1); idx >= 0; idx--)
{
[self.treeController moveNode:newNodes[idx] toIndexPath:indexPath];
// Call manually this because the NSTreeController doesn't call
// the KVC accessors method for the root node.
if (indexPath.length == 1)
{
[self.presets performSelector:@selector(nodeDidChange:) withObject:nil];
}
}
// keep the moved nodes selected
NSMutableArray *indexPathList = [NSMutableArray array];
for (NSUInteger i = 0; i < [newNodes count]; i++)
{
[indexPathList addObject:[newNodes[i] indexPath]];
}
[self.treeController setSelectionIndexPaths: indexPathList];
}
/**
* outlineView:acceptDrop:item:childIndex
*
* This method is called when the mouse is released over an outline view that previously decided to allow a drop
* via the validateDrop method. The data source should incorporate the data from the dragging pasteboard at this time.
* 'index' is the location to insert the data as a child of 'item', and are the values previously set in the validateDrop: method.
*
*/
- (BOOL)outlineView:(NSOutlineView *)ov acceptDrop:(id <NSDraggingInfo>)info item:(id)targetItem childIndex:(NSInteger)index
{
// note that "targetItem" is a NSTreeNode proxy
//
BOOL result = NO;
// find the index path to insert our dropped object(s)
NSIndexPath *indexPath;
if (targetItem)
{
// drop down inside the tree node:
// feth the index path to insert our dropped node
indexPath = [[targetItem indexPath] indexPathByAddingIndex:index];
}
else
{
// drop at the top root level
if (index == -1) // drop area might be ambibuous (not at a particular location)
indexPath = [NSIndexPath indexPathWithIndex:self.presets.root.children.count]; // drop at the end of the top level
else
indexPath = [NSIndexPath indexPathWithIndex:index]; // drop at a particular place at the top level
}
NSPasteboard *pboard = [info draggingPasteboard]; // get the pasteboard
// check the dragging type -
if ([pboard availableTypeFromArray:@[kHandBrakePresetPBoardType]])
{
// user is doing an intra-app drag within the outline view
[self handleInternalDrops:pboard withIndexPath:indexPath];
result = YES;
}
return result;
}
@end
|