VLCPlaylistTableViewCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /*****************************************************************************
  2. * VLCPlaylistTableViewCell.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import <Foundation/Foundation.h>
  14. @class VLCLinearProgressIndicator;
  15. @interface VLCPlaylistTableViewCell : UITableViewCell
  16. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  17. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  18. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  19. @property (nonatomic, strong) IBOutlet VLCLinearProgressIndicator *progressIndicator;
  20. @property (nonatomic, strong) IBOutlet UIView *mediaIsUnreadView;
  21. @property (nonatomic, strong) IBOutlet UIImageView *folderIconView;
  22. @property (nonatomic, strong) NSManagedObject *mediaObject;
  23. + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  24. + (CGFloat)heightOfCell;
  25. @end