VLCPlaylistCollectionViewCell.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*****************************************************************************
  2. * VLCPlaylistCollectionViewCell.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. * Tamas Timar <ttimar.vlc # gmail.com>
  10. * Gleb Pinigin <gpinigin # gmail.com>
  11. *
  12. * Refer to the COPYING file of the official project for license.
  13. *****************************************************************************/
  14. #import <UIKit/UIKit.h>
  15. #import "VLCLinearProgressIndicator.h"
  16. @interface VLCPlaylistCollectionViewCell : UICollectionViewCell
  17. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  18. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  19. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  20. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
  21. @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView;
  22. @property (nonatomic, strong) IBOutlet UIImageView *isSelectedView;
  23. @property (nonatomic, strong) IBOutlet UIImageView *folderIconView;
  24. @property (nonatomic, strong) IBOutlet UILabel *metaDataLabel;
  25. @property (nonatomic, retain) MLFile *mediaObject;
  26. @property (nonatomic, weak) UICollectionView *collectionView;
  27. @property (readonly) BOOL showsMetaData;
  28. - (void)setEditing:(BOOL)editing animated:(BOOL)animated;
  29. - (void)selectionUpdate;
  30. - (void)shake:(BOOL)shake;
  31. - (void)showMetadata:(BOOL)showMeta;
  32. @end