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.

62 lines
1.8KB

  1. #import <UIKit/UIKit.h>
  2. /* -- Comment Interfaces -- */
  3. @interface RComment
  4. @property(strong, nonatomic) NSString *subreddit;
  5. @property(strong, nonatomic) NSString *author;
  6. @property(strong, nonatomic) NSString *body;
  7. @property(strong, nonatomic) NSString *id;
  8. @end
  9. @interface CommentDepthCell
  10. - (void)showMenu:(id)arg1;
  11. //custom elements
  12. - (void)addUndeleteButtonToMenu;
  13. @end
  14. /* -- Post Interfaces -- */
  15. @interface RSubmission
  16. @property(assign, nonatomic) BOOL isSelf;
  17. @end
  18. @interface CommentViewController : UIViewController
  19. - (void)refresh:(id)arg1;
  20. //custom elements
  21. @property(strong, nonatomic) UIButton *undeleteButton;
  22. - (void)addUndeleteButtonToToolbar;
  23. - (BOOL)shouldAddUndeleteButtonToToolbar;
  24. @end
  25. /* -- Utility Interfaces -- */
  26. @interface UIColor ()
  27. + (UIColor *)colorWithHex:(NSString *)arg1;
  28. - (NSString *)hexString;
  29. @end
  30. @interface NSAttributedString ()
  31. - (void)yy_setTextHighlightRange:(NSRange)range color:(UIColor *)color backgroundColor:(UIColor *)backgroundColor userInfo:(NSDictionary *)userInfo;
  32. @end
  33. @interface ColorUtil : NSObject
  34. + (UIColor *)accentColorForSub:(NSString *)arg1;
  35. + (UIColor *)fontColorForTheme:(NSString *)arg1;
  36. + (UIColor *)backgroundColorForTheme:(NSString *)arg1;
  37. @end
  38. @interface DTHTMLAttributedStringBuilder
  39. - (id) initWithHTML:(NSData *)data options:(NSDictionary *)options documentAttributes:(NSDictionary * __autoreleasing*)docAttributes;
  40. - (NSAttributedString *)generatedAttributedString;
  41. @end
  42. @interface FontGenerator : NSObject
  43. + (UIFont *)fontOfSize:(CGFloat)arg1 submission:(BOOL)arg2 willOffset:(BOOL)arg3;
  44. + (UIFont *)boldFontOfSize:(CGFloat)arg1 submission:(BOOL)arg2 willOffset:(BOOL)arg3;
  45. + (UIFont *)italicFontOfSize:(CGFloat)arg1 submission:(BOOL)arg2 willOffset:(BOOL)arg3;
  46. @end