// // Copyright (c) 2017 Open Whisper Systems. All rights reserved. // NS_ASSUME_NONNULL_BEGIN @class SignalAttachment; @protocol ConversationInputToolbarDelegate - (void)sendButtonPressed; - (void)attachmentButtonPressed; #pragma mark - Voice Memo - (void)voiceMemoGestureDidStart; - (void)voiceMemoGestureDidEnd; - (void)voiceMemoGestureDidCancel; - (void)voiceMemoGestureDidChange:(CGFloat)cancelAlpha; #pragma mark - Attachment Approval - (void)didApproveAttachment:(SignalAttachment *)attachment; @end #pragma mark - @class ConversationInputTextView; @protocol ConversationInputTextViewDelegate; @interface ConversationInputToolbar : UIView @property (nonatomic, weak) id inputToolbarDelegate; - (void)beginEditingTextMessage; - (void)endEditingTextMessage; - (void)setInputTextViewDelegate:(id)value; - (NSString *)messageText; - (void)setMessageText:(NSString *_Nullable)value; - (void)clearTextMessage; - (nullable NSString *)textInputPrimaryLanguage; - (void)updateFontSizes; #pragma mark - Voice Memo - (void)showVoiceMemoUI; - (void)hideVoiceMemoUI:(BOOL)animated; - (void)setVoiceMemoUICancelAlpha:(CGFloat)cancelAlpha; - (void)cancelVoiceMemoIfNecessary; #pragma mark - Attachment Approval - (void)showApprovalUIForAttachment:(SignalAttachment *)attachment; - (void)viewWillAppear:(BOOL)animated; - (void)viewWillDisappear:(BOOL)animated; @end NS_ASSUME_NONNULL_END