NewsBlur/clients/ios/Classes/FeedDetailCollectionCell.h

52 lines
1.3 KiB
C
Raw Normal View History

//
2022-09-02 20:39:00 -06:00
// FeedDetailCollectionCell.h
// NewsBlur
//
// Created by Samuel Clay on 7/14/10.
// Copyright 2010 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
typedef NS_ENUM(NSUInteger, FeedDetailTextSize)
{
FeedDetailTextSizeTitleOnly = 0,
FeedDetailTextSizeShort,
FeedDetailTextSizeMedium,
FeedDetailTextSizeLong
};
2022-09-02 20:39:00 -06:00
@interface FeedDetailCollectionCell : UICollectionViewCell
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) NSString *siteTitle;
@property (nonatomic) UIImage *siteFavicon;
2012-08-10 18:10:07 -07:00
@property (readwrite) int storyScore;
@property (nonatomic, readwrite) BOOL isSaved;
@property (readwrite) BOOL isShared;
@property (nonatomic) NSString *storyTitle;
@property (nonatomic) NSString *storyAuthor;
@property (nonatomic) NSString *storyDate;
@property (nonatomic) NSString *storyContent;
@property (nonatomic) NSString *storyHash;
@property (nonatomic) NSInteger storyTimestamp;
2012-07-22 14:23:50 -07:00
@property (nonatomic) UIColor *feedColorBar;
@property (nonatomic) UIColor *feedColorBarTopBorder;
2012-07-22 14:23:50 -07:00
@property (readwrite) BOOL isRead;
@property (readwrite) BOOL isReadAvailable;
2012-08-08 18:23:48 -07:00
@property (readwrite) BOOL isShort;
@property (readwrite) BOOL isRiverOrSocial;
@property (readwrite) BOOL hasAlpha;
@property (nonatomic) FeedDetailTextSize textSize;
- (void)setupGestures;
@end