mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
555 B
C
24 lines
555 B
C
8 years ago
|
//
|
||
6 years ago
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
|
|
||
8 years ago
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
8 years ago
|
@class TSAttachmentStream;
|
||
|
|
||
8 years ago
|
// This entity is used to display upload progress for outgoing
|
||
8 years ago
|
// attachments in conversation view cells.
|
||
|
//
|
||
8 years ago
|
// During attachment uploads we want to:
|
||
|
//
|
||
|
// * Dim the media view using a mask layer.
|
||
|
// * Show and update a progress bar.
|
||
|
// * Disable any media view controls using a callback.
|
||
8 years ago
|
@interface AttachmentUploadView : UIView
|
||
8 years ago
|
|
||
6 years ago
|
- (instancetype)initWithAttachment:(TSAttachmentStream *)attachment;
|
||
8 years ago
|
|
||
|
@end
|
||
8 years ago
|
|
||
|
NS_ASSUME_NONNULL_END
|