VLCPlaylistGridView.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import "AQGridViewCell.h"
  11. @class AQGridView;
  12. @class VLCLinearProgressIndicator;
  13. @interface VLCPlaylistGridView : AQGridViewCell
  14. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  15. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  16. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  17. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
  18. @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
  19. @property (nonatomic, strong) IBOutlet UIImageView *mediaIsUnreadView;
  20. @property (nonatomic, strong) IBOutlet UILabel *seriesNameLabel;
  21. @property (nonatomic, strong) IBOutlet UILabel *artistNameLabel;
  22. @property (nonatomic, strong) IBOutlet UILabel *albumNameLabel;
  23. // Temporary workaround: until better solution
  24. @property (nonatomic, weak) AQGridView *gridView;
  25. @property (nonatomic, retain) MLFile *mediaObject;
  26. - (IBAction)removeMedia:(id)sender;
  27. + (CGSize)preferredSize;
  28. @end