123456789101112131415161718192021222324252627 |
- //
- // VLCGridViewCell.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 11.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "VLCLinearProgressIndicator.h"
- #import "AQGridViewCell.h"
- @interface VLCPlaylistGridView : AQGridViewCell
- @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, strong) IBOutlet UIImageView *mediaIsUnreadView;
- @property (nonatomic, retain) MLFile *mediaObject;
- - (IBAction)removeMedia:(id)sender;
- + (CGSize)preferredSize;
- @end
|