VLCPlaylistTableViewCell.h 790 B

1234567891011121314151617181920212223242526
  1. //
  2. // VLCPlaylistTableViewCell.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 01.04.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "VLCLinearProgressIndicator.h"
  10. @interface VLCPlaylistTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  12. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  13. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  14. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator*progressIndicator;
  15. @property (nonatomic, strong) IBOutlet UIImageView *mediaIsUnreadView;
  16. @property (nonatomic, retain) MLFile *mediaObject;
  17. + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  18. + (CGFloat)heightOfCell;
  19. @end