123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- //
- // VLCGridViewCell.m
- // AspenProject
- //
- // Created by Felix Paul Kühne on 11.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- // Refer to the COPYING file of the official project for license.
- //
- #import "VLCPlaylistGridView.h"
- #import "VLCAppDelegate.h"
- #import "AQGridView.h"
- @interface VLCPlaylistGridView (Hack)
- @property (nonatomic, retain) NSString *reuseIdentifier;
- @end
- @implementation VLCPlaylistGridView
- + (CGSize)preferredSize
- {
- return CGSizeMake(288, 220);
- }
- - (void)awakeFromNib {
- [super awakeFromNib];
- _contentView = self;
- self.backgroundColor = [UIColor clearColor];
- self.reuseIdentifier = @"AQPlaylistCell";
- }
- - (void)setEditing:(BOOL)editing animated:(BOOL)animated
- {
- [super setEditing:editing animated:animated];
- self.removeMediaButton.hidden = !editing;
- }
- - (void)prepareForReuse
- {
- [super prepareForReuse];
- self.removeMediaButton.hidden = YES;
- }
- - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
- {
- [self _updatedDisplayedInformation];
- }
- - (void)setMediaObject:(MLFile *)mediaObject
- {
- if (_mediaObject != mediaObject) {
- [_mediaObject removeObserver:self forKeyPath:@"computedThumbnail"];
- [_mediaObject removeObserver:self forKeyPath:@"lastPosition"];
- [_mediaObject removeObserver:self forKeyPath:@"duration"];
- [_mediaObject removeObserver:self forKeyPath:@"fileSizeInBytes"];
- [_mediaObject removeObserver:self forKeyPath:@"title"];
- [_mediaObject removeObserver:self forKeyPath:@"thumbnailTimeouted"];
- [_mediaObject removeObserver:self forKeyPath:@"unread"];
- [_mediaObject didHide];
- _mediaObject = mediaObject;
- [_mediaObject addObserver:self forKeyPath:@"computedThumbnail" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"lastPosition" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"duration" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"fileSizeInBytes" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"title" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"thumbnailTimeouted" options:0 context:nil];
- [_mediaObject addObserver:self forKeyPath:@"unread" options:0 context:nil];
- [_mediaObject willDisplay];
- }
- [self _updatedDisplayedInformation];
- }
- - (void)_updatedDisplayedInformation
- {
- self.titleLabel.text = self.mediaObject.title;
- self.subtitleLabel.text = [NSString stringWithFormat:@"%@ — %i MB", [VLCTime timeWithNumber:[self.mediaObject duration]], (int)([self.mediaObject fileSizeInBytes] / 1e6)];
- self.thumbnailView.image = self.mediaObject.computedThumbnail;
- self.progressView.progress = self.mediaObject.lastPosition.floatValue;
- self.progressView.hidden = (self.progressView.progress < 0.1f) ? YES : NO;
- self.mediaIsUnreadView.hidden = !self.mediaObject.unread.intValue;
- [self setNeedsDisplay];
- }
- - (IBAction)removeMedia:(id)sender
- {
- /* ask user if s/he really wants to delete the media file */
- UIAlertView * alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"DELETE_FILE", @"") message:[NSString stringWithFormat:NSLocalizedString(@"DELETE_FILE_LONG", @""), self.mediaObject.title] delegate:self cancelButtonTitle:NSLocalizedString(@"BUTTON_CANCEL", @"") otherButtonTitles:NSLocalizedString(@"BUTTON_DELETE", @""), nil];
- [alert show];
- }
- - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
- {
- if (buttonIndex == 1) {
- NSUInteger cellIndex = [self.gridView indexForCell:self];
- [self.gridView.delegate gridView:self.gridView commitEditingStyle:UITableViewCellEditingStyleDelete forRowAtIndex:cellIndex];
- }
- }
- @end
|