/***************************************************************************** * VLCPlaylistTableViewCell.h * VLC for iOS ***************************************************************************** * Copyright (c) 2013-2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Felix Paul Kühne * Gleb Pinigin * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import @class VLCLinearProgressIndicator; @interface VLCPlaylistTableViewCell : UITableViewCell @property (nonatomic, strong) IBOutlet UILabel *titleLabel; @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel; @property (nonatomic, strong) IBOutlet UILabel *metaDataLabel; @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView; @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressIndicator; @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView; @property (nonatomic, strong) IBOutlet UIImageView *folderIconView; @property (readonly) BOOL isExpanded; @property (nonatomic, strong) NSManagedObject *mediaObject; + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident; + (CGFloat)heightOfCell; - (void)collapsWithAnimation:(BOOL)animate; @end