RoomBubbleCellData: Handle live location cell and beacon info summary.

This commit is contained in:
SBiOSoftWhare
2022-04-22 11:51:22 +02:00
parent 4f3a7dcd2d
commit 0bf0af8e5a
2 changed files with 42 additions and 1 deletions
@@ -16,6 +16,8 @@
#import "MatrixKit.h"
@protocol MXBeaconInfoSummaryProtocol;
extern NSString *const URLPreviewDidUpdateNotification;
// Custom tags for MXKRoomBubbleCellDataStoring.tag
@@ -33,7 +35,8 @@ typedef NS_ENUM(NSInteger, RoomBubbleCellDataTag)
RoomBubbleCellDataTagGroupCall,
RoomBubbleCellDataTagRoomCreationIntro,
RoomBubbleCellDataTagPoll,
RoomBubbleCellDataTagLocation
RoomBubbleCellDataTagLocation,
RoomBubbleCellDataTagLiveLocation
};
/**
@@ -92,6 +95,8 @@ typedef NS_ENUM(NSInteger, RoomBubbleCellDataTag)
*/
@property(nonatomic) BOOL isKeyVerificationOperationPending;
@property(nonatomic, strong, readonly) id<MXBeaconInfoSummaryProtocol> beaconInfoSummary;
/**
Index of the component which needs a sent tick displayed. -1 if none.
*/