mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
40 lines
1.2 KiB
Objective-C
40 lines
1.2 KiB
Objective-C
//
|
|
// ChatConversationImdnView.h
|
|
// linphone
|
|
//
|
|
// Created by REIS Benjamin on 25/04/2018.
|
|
//
|
|
|
|
#ifndef ChatConversationImdnView_h
|
|
#define ChatConversationImdnView_h
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "UICompositeView.h"
|
|
#import "UIRoundBorderedButton.h"
|
|
|
|
@interface ChatConversationImdnView : UIViewController <UICompositeViewDelegate, UITableViewDelegate, UITableViewDataSource>
|
|
{
|
|
@private
|
|
NSString *messageText;
|
|
}
|
|
|
|
@property(nonatomic) LinphoneChatMessage *msg;
|
|
@property(nonatomic) bctbx_list_t *displayedList;
|
|
@property(nonatomic) bctbx_list_t *receivedList;
|
|
@property(nonatomic) bctbx_list_t *notReceivedList;
|
|
@property(nonatomic) bctbx_list_t *errorList;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *msgView;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *msgBackgroundColorImage;
|
|
@property (weak, nonatomic) IBOutlet UIRoundedImageView *msgAvatarImage;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *msgBottomBar;
|
|
@property (weak, nonatomic) IBOutlet UILabel *msgDateLabel;
|
|
@property (weak, nonatomic) IBOutlet UITextViewNoDefine *msgText;
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
|
|
- (IBAction)onBackClick:(id)sender;
|
|
|
|
@end
|
|
|
|
#endif /* ChatConversationImdnView_h */
|