VLCRemoteBrowsingTVCell.h 932 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. #import "VLCServerBrowsingController.h"
  13. #import "VLCNetworkImageView.h"
  14. extern NSString *const VLCRemoteBrowsingTVCellIdentifier;
  15. @interface VLCRemoteBrowsingTVCell : UICollectionViewCell <VLCRemoteBrowsingCell>
  16. @property (nonatomic, weak) IBOutlet VLCNetworkImageView *thumbnailImageView;
  17. @property (nonatomic, weak) IBOutlet UILabel *titleLabel;
  18. @property (nonatomic, weak) IBOutlet UILabel *subtitleLabel;
  19. @property (nonatomic) BOOL downloadArtwork;
  20. @end