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.
169 lines
5.1 KiB
169 lines
5.1 KiB
/*****************************************************************************
|
|
* VLCLibraryCarouselViewItemView.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 "VLCLibraryCarouselViewItemView.h"
|
|
|
|
#import "extensions/NSColor+VLCAdditions.h"
|
|
#import "extensions/NSFont+VLCAdditions.h"
|
|
#import "extensions/NSString+Helpers.h"
|
|
#import "extensions/NSView+VLCAdditions.h"
|
|
|
|
#import "library/VLCLibraryController.h"
|
|
#import "library/VLCLibraryDataTypes.h"
|
|
#import "library/VLCLibraryImageCache.h"
|
|
#import "library/VLCLibraryRepresentedItem.h"
|
|
|
|
#import "main/VLCMain.h"
|
|
|
|
#import "views/VLCImageView.h"
|
|
#import "views/VLCLinearProgressIndicator.h"
|
|
|
|
@implementation VLCLibraryCarouselViewItemView
|
|
|
|
+ (instancetype)fromNibWithOwner:(id)owner
|
|
{
|
|
return (VLCLibraryCarouselViewItemView *)[NSView fromNibNamed:@"VLCLibraryCarouselViewItemView"
|
|
withClass:VLCLibraryCarouselViewItemView.class
|
|
withOwner:owner];
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
[self setup];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
self = [super initWithCoder:coder];
|
|
if (self) {
|
|
[self setup];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(NSRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
[self setup];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[self setup];
|
|
}
|
|
|
|
- (void)setup
|
|
{
|
|
self.titleTextField.font = NSFont.VLCLibrarySubsectionHeaderFont;
|
|
self.detailTextField.font = NSFont.VLCLibrarySubsectionSubheaderFont;
|
|
self.annotationTextField.font = NSFont.VLCLibraryItemAnnotationFont;
|
|
self.annotationTextField.textColor = NSColor.VLClibraryAnnotationColor;
|
|
self.annotationTextField.backgroundColor = NSColor.VLClibraryAnnotationBackgroundColor;
|
|
|
|
[self prepareForReuse];
|
|
}
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
self.selected = NO;
|
|
self.highlightBox.hidden = YES;
|
|
self.playButton.hidden = YES;
|
|
self.annotationTextField.hidden = YES;
|
|
self.progressIndicator.hidden = YES;
|
|
self.titleTextField.stringValue = @"";
|
|
self.detailTextField.stringValue = @"";
|
|
self.imageView.image = nil;
|
|
}
|
|
|
|
- (void)updateRepresentation
|
|
{
|
|
[self prepareForReuse];
|
|
|
|
const id<VLCMediaLibraryItemProtocol> actualItem = self.representedItem.item;
|
|
|
|
[VLCLibraryImageCache thumbnailForLibraryItem:actualItem withCompletion:^(NSImage * const thumbnail) {
|
|
self.imageView.image = thumbnail;
|
|
}];
|
|
|
|
self.titleTextField.stringValue = actualItem.displayString;
|
|
self.detailTextField.stringValue = actualItem.primaryDetailString;
|
|
|
|
if ([actualItem isKindOfClass:VLCMediaLibraryMediaItem.class]) {
|
|
VLCMediaLibraryMediaItem * const mediaItem = (VLCMediaLibraryMediaItem *)actualItem;
|
|
|
|
if (mediaItem.mediaType == VLC_ML_MEDIA_TYPE_VIDEO) {
|
|
VLCMediaLibraryTrack * const videoTrack = mediaItem.firstVideoTrack;
|
|
[self showVideoSizeIfNeededForWidth:videoTrack.videoWidth andHeight:videoTrack.videoHeight];
|
|
}
|
|
|
|
const CGFloat position = mediaItem.progress;
|
|
if (position > 0.05 && position < 0.95) {
|
|
self.progressIndicator.progress = position;
|
|
self.progressIndicator.hidden = NO;
|
|
}
|
|
}
|
|
}
|
|
|
|
- (void)showVideoSizeIfNeededForWidth:(CGFloat)width andHeight:(CGFloat)height
|
|
{
|
|
if (width >= VLCMediaLibrary4KWidth || height >= VLCMediaLibrary4KHeight) {
|
|
_annotationTextField.stringValue = _NS("4K");
|
|
_annotationTextField.hidden = NO;
|
|
} else if (width >= VLCMediaLibrary720pWidth || height >= VLCMediaLibrary720pHeight) {
|
|
_annotationTextField.stringValue = _NS("HD");
|
|
_annotationTextField.hidden = NO;
|
|
}
|
|
}
|
|
|
|
- (void)setRepresentedItem:(VLCLibraryRepresentedItem *)representedItem
|
|
{
|
|
if (representedItem == _representedItem) {
|
|
return;
|
|
}
|
|
|
|
_representedItem = representedItem;
|
|
[self updateRepresentation];
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected
|
|
{
|
|
if (_selected == selected) {
|
|
return;
|
|
}
|
|
|
|
_selected = selected;
|
|
self.highlightBox.hidden = !selected;
|
|
}
|
|
|
|
- (void)playRepresentedItem
|
|
{
|
|
[self.representedItem play];
|
|
}
|
|
|
|
@end
|
|
|