VLCPlaylistTableViewCell.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*****************************************************************************
  2. * VLCPlaylistTableViewCell.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013-2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import <UIKit/UIKit.h>
  14. static NSString *kPlaylistCellIdentifier = @"PlaylistCell";
  15. @class VLCLinearProgressIndicator;
  16. @interface VLCPlaylistTableViewCell : UITableViewCell
  17. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  18. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  19. @property (nonatomic, strong) IBOutlet UILabel *metaDataLabel;
  20. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  21. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressIndicator;
  22. @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView;
  23. @property (nonatomic, strong) IBOutlet UIImageView *folderIconView;
  24. @property (readonly) BOOL isExpanded;
  25. @property (nonatomic, strong) NSManagedObject *mediaObject;
  26. + (CGFloat)heightOfCell;
  27. - (void)collapsWithAnimation:(BOOL)animate;
  28. @end