1234567891011121314151617181920212223242526 |
- //
- // VLCGridViewCell.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 11.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "VLCLinearProgressIndicator.h"
- @interface VLCPlaylistGridView : UIView
- @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
- @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
- @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
- @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressView;
- @property (nonatomic, strong) IBOutlet UIButton *removeMediaButton;
- @property (nonatomic, retain) MLFile *mediaObject;
- @property (nonatomic) BOOL editable;
- - (IBAction)removeMedia:(id)sender;
- @end
|