mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
35 lines
1.2 KiB
Objective-C
35 lines
1.2 KiB
Objective-C
//
|
|
// ChatConversationInfoView.h
|
|
// linphone
|
|
//
|
|
// Created by REIS Benjamin on 23/10/2017.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "UICompositeView.h"
|
|
#import "UIRoundBorderedButton.h"
|
|
|
|
@interface ChatConversationInfoView : UIViewController <UICompositeViewDelegate, UIGestureRecognizerDelegate, UITextFieldDelegate, UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property(nonatomic, strong) NSMutableDictionary *contacts;
|
|
@property(nonatomic, strong) NSMutableArray *admins;
|
|
@property(nonatomic) BOOL create;
|
|
@property(nonatomic) BOOL imAdmin;
|
|
@property(nonatomic) NSString *oldSubject;
|
|
@property(nonatomic, strong) NSMutableDictionary *oldContacts;
|
|
@property(nonatomic, strong) NSMutableArray *oldAdmins;
|
|
@property(nonatomic) LinphoneChatRoom *room;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIIconButton *nextButton;
|
|
@property (weak, nonatomic) IBOutlet UIIconButton *backButton;
|
|
@property (weak, nonatomic) IBOutlet UIRoundBorderedButton *quitButton;
|
|
@property (weak, nonatomic) IBOutlet UIIconButton *addButton;
|
|
@property (weak, nonatomic) IBOutlet UITextField *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
|
|
- (IBAction)onNextClick:(id)sender;
|
|
- (IBAction)onBackClick:(id)sender;
|
|
- (IBAction)onQuitClick:(id)sender;
|
|
|
|
@end
|