You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4KB

  1. /* -- Comment Interfaces -- */
  2. @interface RComment
  3. @property(strong, nonatomic) NSString *subreddit;
  4. @property(strong, nonatomic) NSString *author;
  5. @property(strong, nonatomic) NSString *body;
  6. @property(strong, nonatomic) NSString *id;
  7. @end
  8. @interface CommentDepthCell
  9. -(void) showMenu:(id) arg1;
  10. //custom elements
  11. -(void) addUndeleteButtonToMenu;
  12. @end
  13. /* -- Utility Interfaces -- */
  14. @interface UIColor ()
  15. +(UIColor *) colorWithHex:(NSString *) arg1;
  16. -(NSString *) hexString;
  17. @end
  18. @interface NSAttributedString ()
  19. -(void) yy_setTextHighlightRange:(NSRange) range color:(UIColor *) color backgroundColor:(UIColor *) backgroundColor userInfo:(NSDictionary *) userInfo;
  20. @end
  21. @interface ColorUtil : NSObject
  22. +(UIColor *) accentColorForSub:(NSString *) arg1;
  23. +(UIColor *) fontColorForTheme:(NSString *) arg1;
  24. +(UIColor *) backgroundColorForTheme:(NSString *) arg1;
  25. @end
  26. @interface DTHTMLAttributedStringBuilder
  27. -(id) initWithHTML:(NSData *)data options:(NSDictionary *)options documentAttributes:(NSDictionary * __autoreleasing*)docAttributes;
  28. -(NSAttributedString *) generatedAttributedString;
  29. @end
  30. @interface FontGenerator : NSObject
  31. +(UIFont *) fontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  32. +(UIFont *) boldFontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  33. +(UIFont *) italicFontOfSize:(CGFloat) arg1 submission:(BOOL) arg2 willOffset:(BOOL) arg3;
  34. @end