VLCPlaylistGridView.h 795 B

123456789101112131415161718192021222324252627
  1. //
  2. // VLCGridViewCell.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 11.04.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import "VLCLinearProgressIndicator.h"
  9. #import "AQGridViewCell.h"
  10. @interface VLCPlaylistGridView : AQGridViewCell
  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 *progressView;
  15. @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
  16. @property (nonatomic, strong) IBOutlet UIImageView *mediaIsUnreadView;
  17. @property (nonatomic, retain) MLFile *mediaObject;
  18. - (IBAction)removeMedia:(id)sender;
  19. + (CGSize)preferredSize;
  20. @end