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.
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
11 years ago
|
//
|
||
9 years ago
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
11 years ago
|
//
|
||
|
|
||
10 years ago
|
#import <AVFoundation/AVFoundation.h>
|
||
11 years ago
|
#import <MediaPlayer/MediaPlayer.h>
|
||
9 years ago
|
#import <JSQMessagesViewController/JSQMessagesViewController.h>
|
||
10 years ago
|
#import "TSGroupModel.h"
|
||
11 years ago
|
@class TSThread;
|
||
11 years ago
|
|
||
9 years ago
|
extern NSString *const OWSMessagesViewControllerDidAppearNotification;
|
||
|
|
||
9 years ago
|
@interface OWSMessagesComposerTextView : JSQMessagesComposerTextView
|
||
|
|
||
|
@end
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
|
@interface OWSMessagesToolbarContentView : JSQMessagesToolbarContentView
|
||
|
|
||
|
@end
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
|
@interface OWSMessagesInputToolbar : JSQMessagesInputToolbar
|
||
|
|
||
|
@end
|
||
|
|
||
|
#pragma mark -
|
||
|
|
||
10 years ago
|
@interface MessagesViewController : JSQMessagesViewController <UIImagePickerControllerDelegate,
|
||
|
UINavigationControllerDelegate,
|
||
|
UITextViewDelegate,
|
||
|
AVAudioRecorderDelegate,
|
||
|
AVAudioPlayerDelegate,
|
||
|
UIGestureRecognizerDelegate>
|
||
11 years ago
|
|
||
11 years ago
|
|
||
10 years ago
|
@property (nonatomic, readonly) TSThread *thread;
|
||
10 years ago
|
@property (nonatomic, strong) MPMoviePlayerController *videoPlayer;
|
||
|
@property (nonatomic, strong) AVAudioPlayer *audioPlayer;
|
||
|
@property (nonatomic, strong) AVAudioRecorder *audioRecorder;
|
||
11 years ago
|
|
||
10 years ago
|
- (void)configureForThread:(TSThread *)thread keyboardOnViewAppearing:(BOOL)keyboardAppearing;
|
||
|
- (void)popKeyBoard;
|
||
|
|
||
|
#pragma mark 3D Touch Methods
|
||
11 years ago
|
|
||
10 years ago
|
- (void)peekSetup;
|
||
|
- (void)popped;
|
||
|
|
||
11 years ago
|
@end
|