You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

94 lines
3.5 KiB

/*****************************************************************************
* VLCInputNodePathControl.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2023 VLC authors and VideoLAN
*
* Authors: Claudio Cambra <developer@claudiocambra.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#import "VLCInputNodePathControl.h"
#import "VLCInputNodePathControlItem.h"
@implementation VLCInputNodePathControl
- (void)appendInputNodePathControlItem:(VLCInputNodePathControlItem *)inputNodePathControlItem
{
if (_inputNodePathControlItems == nil) {
_inputNodePathControlItems = [NSMutableDictionary dictionary];
}
if ([inputNodePathControlItem.image.name isEqualToString:@""]) {
return;
}
[_inputNodePathControlItems setObject:inputNodePathControlItem forKey:inputNodePathControlItem.image.name];
NSMutableArray *pathItems = [NSMutableArray arrayWithArray:self.pathItems];
[pathItems addObject:inputNodePathControlItem];
self.pathItems = pathItems;
}
- (void)removeLastInputNodePathControlItem
{
if (self.pathItems.count == 0) {
_inputNodePathControlItems = [NSMutableDictionary dictionary];
return;
}
NSMutableArray *pathItems = [NSMutableArray arrayWithArray:self.pathItems];
NSPathControlItem *lastItem = pathItems.lastObject;
[pathItems removeLastObject];
self.pathItems = pathItems;
[_inputNodePathControlItems removeObjectForKey:lastItem.image.name];
}
- (void)clearInputNodePathControlItems
{
_inputNodePathControlItems = [NSMutableDictionary dictionary];
self.pathItems = @[];
}
- (void)clearPathControlItemsAheadOf:(NSPathControlItem *)item
{
if ([item.image.name isEqualToString:@""]) {
return;
}
NSUInteger indexOfItem = [self.pathItems indexOfObjectPassingTest:^BOOL(NSPathControlItem *searchItem, NSUInteger idx, BOOL *stop) {
return [searchItem.image.name isEqualToString:item.image.name];
}];
if (indexOfItem == NSNotFound) {
return;
}
NSMutableArray<NSPathControlItem *> *pathItems = [NSMutableArray arrayWithArray:self.pathItems];
NSArray<NSPathControlItem *> *itemsToRemove = [pathItems subarrayWithRange:NSMakeRange(indexOfItem + 1, pathItems.count - indexOfItem - 1)];
NSMutableArray<NSString *> *itemMrlsToRemove = [NSMutableArray arrayWithCapacity:itemsToRemove.count];
for (NSPathControlItem *searchItem in itemsToRemove) {
NSString *searchItemMrl = searchItem.image.name;
[itemMrlsToRemove addObject:searchItemMrl];
};
self.pathItems = [pathItems subarrayWithRange:NSMakeRange(0, indexOfItem + 1)];
[_inputNodePathControlItems removeObjectsForKeys:itemMrlsToRemove];
}
@end