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.
 
 
 
 
 
 

238 lines
8.0 KiB

/*****************************************************************************
* VLCLibraryMenuController.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 "VLCLibraryMenuController.h"
#import "extensions/NSMenu+VLCAdditions.h"
#import "extensions/NSString+Helpers.h"
#import "library/VLCInputItem.h"
#import "library/VLCLibraryController.h"
#import "library/VLCLibraryDataTypes.h"
#import "library/VLCLibraryInformationPanel.h"
#import "main/VLCMain.h"
#import "playlist/VLCPlaylistController.h"
#import <vlc_input.h>
#import <vlc_url.h>
@interface VLCLibraryMenuController ()
{
VLCLibraryInformationPanel *_informationPanel;
NSHashTable<NSMenuItem*> *_mediaItemRequiringMenuItems;
NSHashTable<NSMenuItem*> *_inputItemRequiringMenuItems;
NSHashTable<NSMenuItem*> *_localInputItemRequiringMenuItems;
}
@end
@implementation VLCLibraryMenuController
- (instancetype)init
{
self = [super init];
if (self) {
[self createLibraryMenu];
}
return self;
}
- (void)createLibraryMenu
{
NSMenuItem *playItem = [[NSMenuItem alloc] initWithTitle:_NS("Play") action:@selector(play:) keyEquivalent:@""];
playItem.target = self;
NSMenuItem *appendItem = [[NSMenuItem alloc] initWithTitle:_NS("Append to Playlist") action:@selector(appendToPlaylist:) keyEquivalent:@""];
appendItem.target = self;
NSMenuItem *addItem = [[NSMenuItem alloc] initWithTitle:_NS("Add Media Folder...") action:@selector(addMedia:) keyEquivalent:@""];
addItem.target = self;
NSMenuItem *revealItem = [[NSMenuItem alloc] initWithTitle:_NS("Reveal in Finder") action:@selector(revealInFinder:) keyEquivalent:@""];
revealItem.target = self;
NSMenuItem *deleteItem = [[NSMenuItem alloc] initWithTitle:_NS("Delete from Library") action:@selector(moveToTrash:) keyEquivalent:@""];
deleteItem.target = self;
NSMenuItem *informationItem = [[NSMenuItem alloc] initWithTitle:_NS("Information...") action:@selector(showInformation:) keyEquivalent:@""];
informationItem.target = self;
_libraryMenu = [[NSMenu alloc] initWithTitle:@""];
[_libraryMenu addMenuItemsFromArray:@[playItem, appendItem, revealItem, deleteItem, informationItem, [NSMenuItem separatorItem], addItem]];
_mediaItemRequiringMenuItems = [NSHashTable weakObjectsHashTable];
[_mediaItemRequiringMenuItems addObject:playItem];
[_mediaItemRequiringMenuItems addObject:appendItem];
[_mediaItemRequiringMenuItems addObject:revealItem];
[_mediaItemRequiringMenuItems addObject:deleteItem];
[_mediaItemRequiringMenuItems addObject:informationItem];
_inputItemRequiringMenuItems = [NSHashTable weakObjectsHashTable];
[_inputItemRequiringMenuItems addObject:playItem];
[_inputItemRequiringMenuItems addObject:appendItem];
_localInputItemRequiringMenuItems = [NSHashTable weakObjectsHashTable];
[_localInputItemRequiringMenuItems addObject:revealItem];
[_localInputItemRequiringMenuItems addObject:deleteItem];
}
- (void)menuItems:(NSHashTable<NSMenuItem*>*)menuItems
setHidden:(BOOL)hidden
{
for (NSMenuItem *menuItem in menuItems) {
menuItem.hidden = hidden;
}
}
- (void)updateMenuItems
{
if (_representedItem != nil) {
[self menuItems:_inputItemRequiringMenuItems setHidden:YES];
[self menuItems:_localInputItemRequiringMenuItems setHidden:YES];
[self menuItems:_mediaItemRequiringMenuItems setHidden:NO];
} else if (_representedInputItem != nil) {
[self menuItems:_mediaItemRequiringMenuItems setHidden:YES];
[self menuItems:_inputItemRequiringMenuItems setHidden:NO];
[self menuItems:_localInputItemRequiringMenuItems setHidden:_representedInputItem.isStream];
}
}
- (void)popupMenuWithEvent:(NSEvent *)theEvent forView:(NSView *)theView
{
[NSMenu popUpContextMenu:_libraryMenu withEvent:theEvent forView:theView];
}
#pragma mark - actions
- (void)addToPlaylist:(BOOL)playImmediately
{
if (_representedItem != nil) {
[self addMediaLibraryItemToPlaylist:_representedItem
playImmediately:playImmediately];
} else if (_representedInputItem != nil) {
[self addInputItemToPlaylist:_representedInputItem
playImmediately:playImmediately];
}
}
- (void)addMediaLibraryItemToPlaylist:(id<VLCMediaLibraryItemProtocol>)mediaLibraryItem
playImmediately:(BOOL)playImmediately
{
NSParameterAssert(mediaLibraryItem);
// We want to add all the tracks to the playlist but only play the first one immediately,
// otherwise we will skip straight to the last track of the last album from the artist
__block BOOL beginPlayImmediately = playImmediately;
[mediaLibraryItem iterateMediaItemsWithBlock:^(VLCMediaLibraryMediaItem* childMediaItem) {
[VLCMain.sharedInstance.libraryController appendItemToPlaylist:childMediaItem
playImmediately:beginPlayImmediately];
if(beginPlayImmediately) {
beginPlayImmediately = NO;
}
}];
}
- (void)addInputItemToPlaylist:(VLCInputItem*)inputItem
playImmediately:(BOOL)playImmediately
{
NSParameterAssert(inputItem);
[VLCMain.sharedInstance.playlistController addInputItem:_representedInputItem.vlcInputItem
atPosition:-1
startPlayback:playImmediately];
}
- (void)play:(id)sender
{
[self addToPlaylist:YES];
}
- (void)appendToPlaylist:(id)sender
{
[self addToPlaylist:NO];
}
- (void)addMedia:(id)sender
{
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel setCanChooseFiles: NO];
[openPanel setCanChooseDirectories: YES];
[openPanel setAllowsMultipleSelection: YES];
NSModalResponse modalResponse = [openPanel runModal];
if (modalResponse == NSModalResponseOK) {
VLCLibraryController *libraryController = [[VLCMain sharedInstance] libraryController];
for (NSURL *url in [openPanel URLs]) {
[libraryController addFolderWithFileURL:url];
}
}
}
- (void)revealInFinder:(id)sender
{
if (_representedItem != nil) {
[_representedItem revealInFinder];
} else if (_representedInputItem != nil) {
[_representedInputItem revealInFinder];
}
}
- (void)moveToTrash:(id)sender
{
if (_representedItem != nil) {
[_representedItem moveToTrash];
} else if (_representedInputItem != nil) {
[_representedInputItem moveToTrash];
}
}
- (void)showInformation:(id)sender
{
if (!_informationPanel) {
_informationPanel = [[VLCLibraryInformationPanel alloc] initWithWindowNibName:@"VLCLibraryInformationPanel"];
}
[_informationPanel setRepresentedItem:_representedItem];
[_informationPanel showWindow:self];
}
- (void)setRepresentedItem:(id<VLCMediaLibraryItemProtocol>)item
{
_representedItem = item;
_representedInputItem = nil;
[self updateMenuItems];
}
- (void)setRepresentedInputItem:(VLCInputItem *)representedInputItem
{
_representedInputItem = representedInputItem;
_representedItem = nil;
[self updateMenuItems];
}
@end