// // Copyright (c) 2018 Open Whisper Systems. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @class SignalAttachment; @protocol ConversationInputTextViewDelegate - (void)didPasteAttachment:(SignalAttachment *_Nullable)attachment; - (void)inputTextViewSendMessagePressed; - (void)textViewDidChange:(UITextView *)textView; @end #pragma mark - @protocol ConversationTextViewToolbarDelegate - (void)textViewDidChange:(UITextView *)textView; @end #pragma mark - @interface ConversationInputTextView : OWSTextView @property (weak, nonatomic) id inputTextViewDelegate; @property (weak, nonatomic) id textViewToolbarDelegate; - (NSString *)trimmedText; @end NS_ASSUME_NONNULL_END