VLCPlaylistGridView.h 702 B

1234567891011121314151617181920212223242526
  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. @interface VLCPlaylistGridView : UIView
  10. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  11. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  12. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  13. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
  14. @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
  15. @property (nonatomic, retain) MLFile *mediaObject;
  16. @property (nonatomic) BOOL editable;
  17. - (IBAction)removeMedia:(id)sender;
  18. @end