// // NCGridCell.swift // Nextcloud // // Created by Marino Faggiana on 08/10/2018. // Copyright © 2018 Marino Faggiana. All rights reserved. // // Author Marino Faggiana // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // import Foundation import UIKit class NCGridCell: UICollectionViewCell, NCImageCellProtocol { @IBOutlet weak var imageItem: UIImageView! @IBOutlet weak var imageSelect: UIImageView! @IBOutlet weak var imageStatus: UIImageView! @IBOutlet weak var imageFavorite: UIImageView! @IBOutlet weak var imageLocal: UIImageView! @IBOutlet weak var labelTitle: UILabel! @IBOutlet weak var buttonMore: UIButton! @IBOutlet weak var progressView: UIProgressView! var filePreviewImageView : UIImageView { get{ return imageItem } } var delegate: NCGridCellDelegate? var objectId = "" var indexPath = IndexPath() var namedButtonMore = "" override func awakeFromNib() { super.awakeFromNib() imageItem.layer.cornerRadius = 6 imageItem.layer.masksToBounds = true progressView.tintColor = NCBrandColor.sharedInstance.brandElement progressView.transform = CGAffineTransform(scaleX: 1.0, y: 0.5) progressView.trackTintColor = .clear setButtonMore(named: "more") } override func prepareForReuse() { super.prepareForReuse() imageItem.backgroundColor = nil } @IBAction func touchUpInsideMore(_ sender: Any) { delegate?.tapMoreGridItem(with: objectId, namedButtonMore: namedButtonMore, sender: sender) } func setButtonMore(named: String) { namedButtonMore = named buttonMore.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: named), width: 50, height: 50, color: NCBrandColor.sharedInstance.optionItem), for: UIControl.State.normal) } } protocol NCGridCellDelegate { func tapMoreGridItem(with objectId: String, namedButtonMore: String, sender: Any) }