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.

84 lines
2.1KB

  1. /* -- Comment Interfaces -- */
  2. @interface RKComment
  3. @property(assign,nonatomic) NSString *body;
  4. @property(assign,nonatomic) NSString *bodyHTML;
  5. @property(assign,nonatomic) NSString *author;
  6. @property(assign,nonatomic) NSString *fullName;
  7. @end
  8. @interface CommentCellNode
  9. @property(assign,nonatomic)id view;
  10. -(BOOL) isSelected;
  11. -(void) _layoutSublayouts;
  12. -(void) didLoad;
  13. -(void) calculatedLayoutDidChange;
  14. //custom elements
  15. @property(strong,nonatomic) UIButton *undeleteButton;
  16. -(void) undeleteCellWasSelected;
  17. @end
  18. /* -- Post Interfaces -- */
  19. @interface RKLink
  20. @property(assign,nonatomic) NSString *selfText;
  21. @property(assign,nonatomic) NSString *author;
  22. @property(assign,nonatomic) NSString *fullName;
  23. -(BOOL) isSelfPost;
  24. //custom elements
  25. @property(strong, nonatomic) NSString *undeleteAuthor;
  26. @end
  27. @interface CommentsHeaderCellNode
  28. @property(strong, nonatomic) id undeleteButton;
  29. @property(strong, nonatomic) id closestViewController;
  30. @end
  31. @interface CommentsViewController
  32. //custom elements
  33. @property(strong, nonatomic) id headerCellNode;
  34. -(void) undeleteCellWasSelected;
  35. @end
  36. /* -- Other Interfaces -- */
  37. @interface MarkdownRenderer
  38. +(id) attributedStringFromMarkdown:(id) arg1 withAttributes:(id) arg2;
  39. @end
  40. @interface ActionController
  41. -(id) tableView:(id) arg1 cellForRowAtIndexPath:(NSIndexPath *)arg2;
  42. -(NSInteger) tableView:(id) arg1 numberOfRowsInSection:(NSInteger) arg2;
  43. @end
  44. @interface IconActionTableViewCell : UITableViewCell
  45. @end
  46. /* -- ASyncDisplayKit Interfaces -- */
  47. @interface _ASDisplayView : UIView
  48. @end
  49. @interface ASImageNode
  50. @property(assign,nonatomic)id image;
  51. @property(assign,nonatomic) CGRect frame;
  52. @property(assign,nonatomic) id view;
  53. -(CGRect)_frameInWindow;
  54. @end
  55. @interface ASTextNode
  56. @property(assign,nonatomic) CGRect frame;
  57. @property(assign,nonatomic) NSAttributedString *attributedString;
  58. @property(assign,nonatomic) NSAttributedString *attributedText;
  59. @end
  60. @interface ApolloButtonNode
  61. @property(assign,nonatomic) ASTextNode *titleNode;
  62. -(void) setAttributedTitle:(id) arg1 forState:(NSInteger) arg2;
  63. -(id) attributedTitleForState:(NSInteger) arg1;
  64. @end