VLCPlaylistCollectionViewCell.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // VLCPlaylistCollectionViewCell.h
  3. // VLC for iOS
  4. //
  5. // Created by Tamas Timar on 8/30/13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "VLCLinearProgressIndicator.h"
  12. @interface VLCPlaylistCollectionViewCell : UICollectionViewCell
  13. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  14. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  15. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  16. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
  17. @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
  18. @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView;
  19. @property (nonatomic, strong) IBOutlet UILabel *seriesNameLabel;
  20. @property (nonatomic, strong) IBOutlet UILabel *artistNameLabel;
  21. @property (nonatomic, strong) IBOutlet UILabel *albumNameLabel;
  22. @property (nonatomic, retain) MLFile *mediaObject;
  23. @property (nonatomic, weak) UICollectionView *collectionView;
  24. - (void)setEditing:(BOOL)editing animated:(BOOL)animated;
  25. - (IBAction)removeMedia:(id)sender;
  26. @end