VLCGoogleDriveTableViewCell.h 1022 B

1234567891011121314151617181920212223242526272829
  1. /*****************************************************************************
  2. * VLCGoogleDriveTableViewCell.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Carola Nitz <nitz.carola # googlemail.com>
  9. * Felix Paul Kühne <fkuehne # videolan.org>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import "GTLDrive.h"
  14. @interface VLCGoogleDriveTableViewCell : UITableViewCell
  15. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  16. @property (nonatomic, strong) IBOutlet UILabel *folderTitleLabel;
  17. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  18. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  19. @property (nonatomic) GTLDriveFile *driveFile;
  20. + (VLCGoogleDriveTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  21. + (CGFloat)heightOfCell;
  22. @end