VLCPlaylistTableViewCell.h 989 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // VLCPlaylistTableViewCell.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 01.04.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 <Foundation/Foundation.h>
  11. @class VLCLinearProgressIndicator;
  12. @interface VLCPlaylistTableViewCell : UITableViewCell
  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 *progressIndicator;
  17. @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView;
  18. @property (nonatomic, strong) IBOutlet UILabel *artistNameLabel;
  19. @property (nonatomic, strong) IBOutlet UILabel *albumNameLabel;
  20. @property (nonatomic, strong) NSManagedObject *mediaObject;
  21. + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  22. + (CGFloat)heightOfCell;
  23. @end