VLCPlaylistGridView.h 982 B

123456789101112131415161718192021222324252627282930313233
  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 "VLCLinearProgressIndicator.h"
  11. #import "AQGridViewCell.h"
  12. @class AQGridView;
  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. // Temporary workaround: until better solution
  21. @property (nonatomic, weak) AQGridView *gridView;
  22. @property (nonatomic, retain) MLFile *mediaObject;
  23. - (IBAction)removeMedia:(id)sender;
  24. + (CGSize)preferredSize;
  25. @end