vlc/modules/gui/macosx/playqueue/VLCPlayQueueTableCellView.h
Claudio Cambra f4806b9d09 macosx: Rename GUI module variables, properties, methods, and strings for play queue
This makes the distinction between library playlists and the playqueue
more obvious

Signed-off-by: Claudio Cambra <developer@claudiocambra.com>
2024-11-19 13:37:11 +00:00

47 lines
1.9 KiB
Objective-C

/*****************************************************************************
* VLCPlayQueueTableViewCell.h: 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 <Cocoa/Cocoa.h>
@class VLCImageView;
@class VLCPlayQueueItem;
NS_ASSUME_NONNULL_BEGIN
@interface VLCPlayQueueTableCellView : NSTableCellView
@property (readwrite, assign, nonatomic) VLCPlayQueueItem *representedPlayQueueItem;
@property (readwrite, nonatomic) BOOL representsCurrentPlayQueueItem;
@property (readwrite, assign) IBOutlet NSTextField *artistTextField;
@property (readwrite, assign) IBOutlet NSTextField *secondaryMediaTitleTextField;
@property (readwrite, assign) IBOutlet NSTextField *mediaTitleTextField;
@property (readwrite, assign) IBOutlet NSTextField *durationTextField;
@property (readwrite, assign) IBOutlet VLCImageView *mediaImageView;
@property (readwrite, assign) IBOutlet NSTextField *audioMediaTypeIndicator;
@property (readwrite, assign) IBOutlet VLCImageView *audioArtworkImageView;
@end
NS_ASSUME_NONNULL_END