diff --git a/matrixConsole/Base.lproj/Main.storyboard b/matrixConsole/Base.lproj/Main.storyboard index b557e4f37..48f7f2e79 100644 --- a/matrixConsole/Base.lproj/Main.storyboard +++ b/matrixConsole/Base.lproj/Main.storyboard @@ -96,15 +96,44 @@ + + + @@ -134,6 +163,9 @@ + + + @@ -166,6 +198,33 @@ + @@ -194,7 +253,9 @@ + + @@ -224,6 +285,9 @@ + + + diff --git a/matrixConsole/View/RoomMessageTableCell.h b/matrixConsole/View/RoomMessageTableCell.h index a15e2393d..d97c1f62f 100644 --- a/matrixConsole/View/RoomMessageTableCell.h +++ b/matrixConsole/View/RoomMessageTableCell.h @@ -17,6 +17,7 @@ #import #import "CustomImageView.h" #import "RoomMessage.h" +#import "PieChartView.h" // Room Message Table View Cell @interface RoomMessageTableCell : UITableViewCell @@ -25,6 +26,11 @@ @property (strong, nonatomic) IBOutlet CustomImageView *attachmentView; @property (strong, nonatomic) IBOutlet UIImageView *playIconView; @property (weak, nonatomic) IBOutlet UIView *dateTimeLabelContainer; + +@property (weak, nonatomic) IBOutlet UIView *progressView; +@property (weak, nonatomic) IBOutlet UILabel *statsLabel; +@property (weak, nonatomic) IBOutlet PieChartView *progressChartView; + @property (weak, nonatomic) IBOutlet NSLayoutConstraint *msgTextViewTopConstraint; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachViewWidthConstraint; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachViewTopConstraint;