VLCPlaylistGridView.h 913 B

12345678910111213141516171819202122232425262728293031
  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. @class AQGridView;
  11. @interface VLCPlaylistGridView : AQGridViewCell
  12. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  13. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  14. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  15. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
  16. @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
  17. @property (nonatomic, strong) IBOutlet UIImageView *mediaIsUnreadView;
  18. // Temporary workaround: until better solution
  19. @property (nonatomic, weak) AQGridView *gridView;
  20. @property (nonatomic, retain) MLFile *mediaObject;
  21. - (IBAction)removeMedia:(id)sender;
  22. + (CGSize)preferredSize;
  23. @end