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.
 
 
 
 
 
 

105 lines
3.5 KiB

/*****************************************************************************
* VLCLibraryItemInternalMediaItemsDataSource.m: MacOS X interface module
*****************************************************************************
* Copyright (C) 2019 VLC authors and VideoLAN
*
* Authors: Felix Paul Kühne <fkuehne # videolan -dot- org>
*
* 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 "VLCLibraryItemInternalMediaItemsDataSource.h"
#import "extensions/NSPasteboardItem+VLCAdditions.h"
#import "library/VLCLibraryDataTypes.h"
const CGFloat VLCLibraryInternalMediaItemRowHeight = 40.;
@interface VLCLibraryItemInternalMediaItemsDataSource ()
@property (readwrite, atomic) id<VLCMediaLibraryItemProtocol> internalItem;
@property (readwrite, atomic) NSArray<VLCMediaLibraryMediaItem*> *internalMediaItems;
@end
@implementation VLCLibraryItemInternalMediaItemsDataSource
// TODO: Connect to library model
- (id<VLCMediaLibraryItemProtocol>)representedItem
{
return self.internalItem;
}
- (void)setRepresentedItem:(id<VLCMediaLibraryItemProtocol>)representedItem
{
[self setRepresentedItem:representedItem withCompletion:nil];
}
- (void)setRepresentedItem:(id<VLCMediaLibraryItemProtocol>)item
withCompletion:(nullable void (^)(void))completionHandler
{
self.internalItem = item;
dispatch_async(dispatch_get_global_queue(QOS_CLASS_USER_INTERACTIVE, 0), ^{
self.internalMediaItems = item.mediaItems;
dispatch_async(dispatch_get_main_queue(), ^{
if (completionHandler != nil) {
completionHandler();
}
});
});
}
- (NSInteger)numberOfRowsInTableView:(NSTableView *)tableView
{
return self.representedItem == nil ? 0 : self.internalMediaItems.count;
}
- (id<NSPasteboardWriting>)tableView:(NSTableView *)tableView pasteboardWriterForRow:(NSInteger)row
{
const id<VLCMediaLibraryItemProtocol> libraryItem =
[self libraryItemAtRow:row forTableView:tableView];
return [NSPasteboardItem pasteboardItemWithLibraryItem:libraryItem];
}
- (id<VLCMediaLibraryItemProtocol>)libraryItemAtRow:(NSInteger)row
forTableView:(NSTableView *)tableView
{
if (row < 0 || (NSUInteger)row >= self.internalMediaItems.count) {
return nil;
}
return self.internalMediaItems[row];
}
- (NSInteger)rowForLibraryItem:(id<VLCMediaLibraryItemProtocol>)libraryItem
{
if (libraryItem == nil) {
return NSNotFound;
}
return [self.internalMediaItems indexOfObjectPassingTest:^BOOL(VLCMediaLibraryMediaItem * const item, const NSUInteger __unused index, BOOL * const __unused stop) {
return item.libraryID == libraryItem.libraryID;
}];
}
- (VLCMediaLibraryParentGroupType)currentParentType
{
return VLCMediaLibraryParentGroupTypeAlbum;
}
@end