1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /*****************************************************************************
- * VLCLocalNetworkListCell.m
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Pierre SAGASPE <pierre.sagaspe # me.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCLocalNetworkListCell.h"
- @implementation VLCLocalNetworkListCell
- + (VLCLocalNetworkListCell *)cellWithReuseIdentifier:(NSString *)ident
- {
- NSArray *nibContentArray = [[NSBundle mainBundle] loadNibNamed:@"VLCLocalNetworkListCell" owner:nil options:nil];
- NSAssert([nibContentArray count] == 1, @"meh");
- NSAssert([[nibContentArray lastObject] isKindOfClass:[VLCLocalNetworkListCell class]], @"meh meh");
- VLCLocalNetworkListCell *cell = (VLCLocalNetworkListCell *)[nibContentArray lastObject];
- return cell;
- }
- - (void)awakeFromNib
- {
- self.titleLabel.text = @"";
- self.subtitleLabel.text = @"";
- self.thumbnailView.contentMode = UIViewContentModeScaleAspectFit;
- self.downloadButton.hidden = YES;
- }
- - (void)setIsDirectory:(BOOL)isDirectory
- {
- self.titleLabel.hidden = self.subtitleLabel.hidden = isDirectory;
- self.folderTitleLabel.hidden = !isDirectory;
- _isDirectory = isDirectory;
- }
- - (void)setTitle:(NSString *)title
- {
- BOOL isDir = self.isDirectory;
- self.folderTitleLabel.text = self.titleLabel.text = title;
- self.titleLabel.hidden = self.subtitleLabel.hidden = isDir;
- self.folderTitleLabel.hidden = !isDir;
- _title = title;
- }
- - (void)setSubtitle:(NSString *)subtitle
- {
- self.subtitleLabel.text = subtitle;
- }
- - (void)setIcon:(UIImage *)icon
- {
- self.thumbnailView.image = icon;
- }
- - (void)setIconURL:(NSURL *)iconURL
- {
- _iconURL = iconURL;
- [self performSelectorInBackground:@selector(_updateIconFromURL) withObject:@""];
- }
- - (void)_updateIconFromURL
- {
- NSData* imageData = [[NSData alloc]initWithContentsOfURL:self.iconURL];
- UIImage* image = [[UIImage alloc] initWithData:imageData];
- [self setIcon:image];
- }
- - (void)setIsDownloadable:(BOOL)isDownloadable
- {
- self.downloadButton.hidden = !isDownloadable;
- }
- - (void)triggerDownload:(id)sender
- {
- if ([self.delegate respondsToSelector:@selector(triggerDownloadForCell:)])
- [self.delegate triggerDownloadForCell:self];
- }
- + (CGFloat)heightOfCell
- {
- if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad)
- return 80.;
- return 68.;
- }
- @end
|