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.
32 lines
1.1 KiB
Objective-C
32 lines
1.1 KiB
Objective-C
//
|
|
// MessagesViewController.h
|
|
// Signal
|
|
//
|
|
// Created by Dylan Bourgeois on 28/10/14.
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "JSQMessagesViewController.h"
|
|
#import "JSQMessages.h"
|
|
#import "TSGroupModel.h"
|
|
#import <MediaPlayer/MediaPlayer.h>
|
|
#import "APNavigationController.h"
|
|
#import <AVFoundation/AVFoundation.h>
|
|
@class TSThread;
|
|
|
|
@interface MessagesViewController : JSQMessagesViewController <UIImagePickerControllerDelegate,
|
|
UINavigationControllerDelegate,
|
|
UITextViewDelegate,AVAudioRecorderDelegate,AVAudioPlayerDelegate, UIGestureRecognizerDelegate>
|
|
|
|
|
|
@property (nonatomic, retain) APNavigationController *navController;
|
|
|
|
@property (nonatomic,strong) MPMoviePlayerController* videoPlayer;
|
|
@property (nonatomic,strong) AVAudioPlayer* audioPlayer;
|
|
@property (nonatomic,strong) AVAudioRecorder* audioRecorder;
|
|
- (void)setupWithThread:(TSThread*)thread;
|
|
- (void)setupWithTSIdentifier:(NSString*)identifier;
|
|
- (void)setupWithTSGroup:(TSGroupModel*)model;
|
|
|
|
@end
|