blob: 3fedddd6d691dc65415e116103b4e8aa8d214ddd (
plain)
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
|
/* HBLanguagesSelection.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 "HBLanguagesSelection.h"
#include "lang.h"
@implementation HBLang
- (instancetype)init
{
@throw nil;
}
- (instancetype)initWithLanguage:(NSString *)value iso639_2code:(NSString *)code
{
self = [super init];
if (self)
{
_language = value;
_iso639_2 = code;
}
return self;
}
- (instancetype)copyWithZone:(NSZone *)zone
{
HBLang *lang = [[self class] allocWithZone:zone];
lang->_isSelected = self.isSelected;
lang->_language = self.language;
lang->_iso639_2 = self.iso639_2;
return lang;
}
- (void)setIsSelected:(BOOL)isSelected
{
if (_isSelected != isSelected)
{
[[self.undo prepareWithInvocationTarget:self] setIsSelected:_isSelected];
}
_isSelected = isSelected;
}
- (NSString *)description
{
return self.language;
}
@end
@implementation HBLanguagesSelection
- (instancetype)init
{
self = [self initWithLanguages:@[]];
return self;
}
- (instancetype)initWithLanguages:(NSArray<NSString *> *)languages
{
self = [super init];
if (self)
{
NSMutableArray<HBLang *> *internal = [[NSMutableArray alloc] init];
NSMutableArray<HBLang *> *selected = [[NSMutableArray alloc] init];
const iso639_lang_t *lang;
for (lang = lang_get_any(); lang != NULL; lang = lang_get_next(lang))
{
NSString *nativeLanguage = strlen(lang->native_name) ? @(lang->native_name) : @(lang->eng_name);
HBLang *item = [[HBLang alloc] initWithLanguage:nativeLanguage
iso639_2code:@(lang->iso639_2)];
if ([languages containsObject:item.iso639_2])
{
item.isSelected = YES;
[selected addObject:item];
}
else
{
[internal addObject:item];
}
}
// Insert the selected items
// in the original order.
[selected sortUsingComparator:^NSComparisonResult(id obj1, id obj2) {
return [languages indexOfObject:[obj1 iso639_2]] - [languages indexOfObject:[obj2 iso639_2]];
}];
[internal insertObjects:selected
atIndexes:[NSIndexSet indexSetWithIndexesInRange:(NSMakeRange(1, selected.count))]];
_languagesArray = internal;
}
return self;
}
- (NSArray *)selectedLanguages
{
NSMutableArray *selected = [[NSMutableArray alloc] init];
for (HBLang *lang in self.languagesArray)
{
if (lang.isSelected)
{
[selected addObject:lang.iso639_2];
}
}
return [selected copy];
}
- (void)setUndo:(NSUndoManager *)undo
{
_undo = undo;
for (HBLang *lang in self.languagesArray)
{
lang.undo = undo;
}
}
@end
NSString *kHBLanguagesDragRowsType = @"kHBLanguagesDragRowsType";
@implementation HBLanguageArrayController
- (void)setShowSelectedOnly:(BOOL)showSelectedOnly
{
_showSelectedOnly = showSelectedOnly;
[self rearrangeObjects];
}
- (NSArray *)arrangeObjects:(NSArray *)objects
{
if (!self.showSelectedOnly) {
return [super arrangeObjects:objects];
}
// Returns a filtered array with only the selected items
NSMutableArray *filteredObjects = [NSMutableArray arrayWithCapacity:[objects count]];
for (id item in objects)
{
if ([[item valueForKeyPath:@"isSelected"] boolValue])
{
[filteredObjects addObject:item];
}
}
return [super arrangeObjects:filteredObjects];
}
- (void)awakeFromNib
{
[self.tableView registerForDraggedTypes:@[kHBLanguagesDragRowsType]];
self.isDragginEnabled = YES;
}
#pragma mark - NSTableView Delegate
- (BOOL)tableView:(NSTableView *)tableView writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard
{
if (self.isDragginEnabled)
{
NSData *data = nil;
if (self.showSelectedOnly)
{
// If the show selected only filter
// is enabled, we need to modify the rowIndexes
// to match the position of the elements in the unfiltered array
NSArray *filteredArray = [[self arrangedObjects] copy];
self.showSelectedOnly = NO;
NSArray *unfilteredArray = [self arrangedObjects];
NSMutableIndexSet *unfilteredIndexes = [NSMutableIndexSet indexSet];
NSUInteger currentIndex = [rowIndexes firstIndex];
while (currentIndex != NSNotFound)
{
NSUInteger newIndex = [unfilteredArray indexOfObject:filteredArray[currentIndex]];
[unfilteredIndexes addIndex:newIndex];
currentIndex = [rowIndexes indexGreaterThanIndex:currentIndex];
}
data = [NSKeyedArchiver archivedDataWithRootObject:unfilteredIndexes];
}
else
{
data = [NSKeyedArchiver archivedDataWithRootObject:rowIndexes];
}
[pboard declareTypes:@[kHBLanguagesDragRowsType] owner:self];
[pboard setData:data forType:kHBLanguagesDragRowsType];
}
return self.isDragginEnabled;
}
- (NSDragOperation)tableView:(NSTableView *)view
validateDrop:(id <NSDraggingInfo>)info
proposedRow:(NSInteger)row
proposedDropOperation:(NSTableViewDropOperation)operation
{
NSDragOperation dragOp = NSDragOperationNone;
// if drag source is our own table view, it's a move or a copy
if ([info draggingSource] == view)
{
// At a minimum, allow move
dragOp = NSDragOperationMove;
}
[view setDropRow:row dropOperation:NSTableViewDropAbove];
return dragOp;
}
- (BOOL)tableView:(NSTableView *)view acceptDrop:(id <NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)operation
{
if (([info draggingSourceOperationMask] == NSDragOperationCopy))
{
return NO;
}
if ([info draggingSource] == view)
{
// Get the index set from the pasteBoard.
NSData *rowData = [[info draggingPasteboard] dataForType:kHBLanguagesDragRowsType];
NSIndexSet *indexSet = [NSKeyedUnarchiver unarchiveObjectWithData:rowData];
NSUInteger i = [indexSet countOfIndexesInRange:NSMakeRange(0, row)];
// Rearrange the objects.
[self moveObjectsInArrangedObjectsFromIndexes:indexSet toIndex:row];
// Update the selection.
row -= i;
NSIndexSet *selectionSet = [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(row, [indexSet count])];
[view selectRowIndexes:selectionSet byExtendingSelection:NO];
return YES;
}
return NO;
}
- (void)moveObjectsInArrangedObjectsFromIndexes:(NSIndexSet *)indexSet toIndex:(NSUInteger)insertIndex
{
NSArray *objects = [self arrangedObjects];
NSInteger aboveInsertIndexCount = 0;
NSInteger removeIndex;
NSUInteger thisIndex = [indexSet lastIndex];
while (thisIndex != NSNotFound)
{
if (thisIndex >= insertIndex)
{
removeIndex = thisIndex + aboveInsertIndexCount;
aboveInsertIndexCount += 1;
}
else
{
removeIndex = thisIndex;
insertIndex -= 1;
}
// Get the object we're moving
id object = objects[removeIndex];
// Move the object
[self removeObjectAtArrangedObjectIndex:removeIndex];
[self insertObject:object atArrangedObjectIndex:insertIndex];
thisIndex = [indexSet indexLessThanIndex:thisIndex];
}
}
@end
|