summaryrefslogtreecommitdiff
path: root/Juick/MessageCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/MessageCell.h')
-rw-r--r--Juick/MessageCell.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/Juick/MessageCell.h b/Juick/MessageCell.h
deleted file mode 100644
index 6140e2d..0000000
--- a/Juick/MessageCell.h
+++ /dev/null
@@ -1,44 +0,0 @@
-//
-// MessageCell.h
-// Juick
-//
-// Created by Vitaly Takmazov on 29.10.13.
-// Copyright (c) 2013 com.juick. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-#import <SDWebImage/UIImageView+WebCache.h>
-#import "TTTAttributedLabel.h"
-
-#import "Message.h"
-
-#import "NSString+HTML.h"
-#import "UIImage+Utils.h"
-#import "UILabel+Utils.h"
-
-
-#define kLabelHorizontalInsets 20.0f
-
-@interface MessageCell : UITableViewCell<TTTAttributedLabelDelegate, SDWebImageManagerDelegate>
-
-@property (strong, nonatomic) IBOutlet Message *message;
-@property (strong, nonatomic) IBOutlet UILabel *titleLabel;
-@property (strong, nonatomic) IBOutlet UILabel *timestampLabel;
-@property (strong, nonatomic) IBOutlet UIImageView *avatar;
-@property (strong, nonatomic) IBOutlet UILabel *bodyLabel;
-@property (strong, nonatomic) IBOutlet UIImageView *attach;
-@property (strong, nonatomic) IBOutlet UILabel *summaryLabel;
-
-- (void) updateFonts;
-- (CGRect) avatarRect;
-- (CGRect) timestampRect;
-- (CGRect) titleRect;
-- (CGRect) bodyRect;
-- (CGRect) attachRect;
-- (CGRect) summaryRect;
-
-- (CGFloat) heightForCell;
-
-- (UITableView *) getTable;
-
-@end