/*
 *
 *  ZDCVisitorAttachmentCell.h
 *  ZDCChat
 *
 *  Created by Zendesk on 24/09/2014.
 *
 *  Copyright (c) 2016 Zendesk. All rights reserved.
 *
 *  By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master
 *  Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License
 *  Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and
 *  acknowledge that such terms govern Your use of and access to the Mobile SDK.
 *
 */


#import "ZDCVisitorChatCell.h"


@interface ZDCVisitorAttachmentCell : ZDCVisitorChatCell <ZDCUploadDelegate>


/**
 * The image view for the attachment.
 */
@property (nonatomic, strong) UIImageView *attachmentImage;

/**
 * Upload progress bar.
 */
@property (nonatomic, strong) UIView *progressBar;

/**
 * Progress indicator for downloads.
 */
@property (nonatomic, strong) UIActivityIndicatorView *spinner;


/**
 * The style for the activity indicator (UIActivityIndicatorViewStyle).
 */
@property (nonatomic, strong) NSNumber *activityIndicatorViewStyle UI_APPEARANCE_SELECTOR;

/**
 * Color of the upload progress bar.
 */
@property (nonatomic, strong) UIColor *progressBarColor UI_APPEARANCE_SELECTOR;

@end

