another.im-ios/Monal/Classes/MLContactCell.h
2024-11-18 15:53:52 +01:00

30 lines
993 B
Objective-C

//
// MLContactCell.h
// Monal
//
// Created by Anurodh Pokharel on 7/7/13.
//
//
#import "MLAttributedLabel.h"
#import "MLContact.h"
#import "MLMessage.h"
@interface MLContactCell : UITableViewCell
@property (nonatomic, weak) IBOutlet UILabel* _Nullable displayName;
@property (nonatomic, weak) IBOutlet UILabel* _Nullable centeredDisplayName;
@property (nonatomic, weak) IBOutlet UILabel* _Nullable time;
@property (nonatomic, weak) IBOutlet MLAttributedLabel* _Nullable statusText;
@property (nonatomic, weak) IBOutlet UIImageView* _Nullable userImage;
@property (nonatomic, weak) IBOutlet UIButton* _Nullable badge;
@property (nonatomic, weak) IBOutlet UIImageView* _Nullable muteBadge;
@property (nonatomic, weak) IBOutlet UIImageView* _Nullable mentionBadge;
@property (weak, nonatomic) IBOutlet UIImageView* _Nullable pinBadge;
@property (nonatomic, assign) BOOL isPinned;
-(void) initCell:(MLContact* _Nonnull) contact withLastMessage:(MLMessage* _Nullable) lastMessage;
@end