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.

117 lines
3.0KB

  1. #import <UIKit/UIKit.h>
  2. /* -- Comment Interfaces -- */
  3. @interface RKComment
  4. @property(strong, nonatomic) NSString *body;
  5. @property(strong, nonatomic) NSString *bodyHTML;
  6. @property(strong, nonatomic) NSString *author;
  7. @property(strong, nonatomic) NSString *fullName;
  8. @end
  9. @interface RDKComment
  10. @property(strong, nonatomic) NSString *body;
  11. @property(strong, nonatomic) NSString *bodyHTML;
  12. @property(strong, nonatomic) NSString *author;
  13. @property(strong, nonatomic) NSString *fullName;
  14. @end
  15. @interface CommentCellNode
  16. @property(strong, nonatomic) id view;
  17. @property(strong, nonatomic) id actionDelegate;
  18. - (BOOL)isSelected;
  19. - (void)_layoutSublayouts;
  20. - (void)didLoad;
  21. - (void)calculatedLayoutDidChange;
  22. //custom elements
  23. @property(strong,nonatomic) UIButton *undeleteButton;
  24. - (void)undeleteCellWasSelected;
  25. @end
  26. @interface CommentSectionController : NSObject
  27. //custom elements
  28. @property(strong, nonatomic) id commentCellNode;
  29. @end
  30. /* -- Post Interfaces -- */
  31. @interface RKLink
  32. @property(strong, nonatomic) NSString *selfText;
  33. @property(strong, nonatomic) NSString *author;
  34. @property(strong, nonatomic) NSString *fullName;
  35. - (BOOL)isSelfPost;
  36. //custom elements
  37. @property(strong, nonatomic) NSString *undeleteAuthor;
  38. @end
  39. @interface RDKLink
  40. @property(strong, nonatomic) NSString *selfText;
  41. @property(strong, nonatomic) NSString *author;
  42. @property(strong, nonatomic) NSString *fullName;
  43. - (BOOL)isSelfPost;
  44. //custom elements
  45. @property(strong, nonatomic) NSString *undeleteAuthor;
  46. @end
  47. @interface CommentsHeaderCellNode
  48. @property(strong, nonatomic) id undeleteButton;
  49. @property(strong, nonatomic) id closestViewController;
  50. @end
  51. @interface CommentsViewController
  52. //custom elements
  53. @property(strong, nonatomic) id headerCellNode;
  54. - (void)undeleteCellWasSelected;
  55. @end
  56. @interface CommentsHeaderSectionController : NSObject
  57. @end
  58. /* -- Other Interfaces -- */
  59. @interface MarkdownRenderer
  60. + (id)attributedStringFromMarkdown:(id)arg1 withAttributes:(id)arg2;
  61. @end
  62. @interface ActionController
  63. - (id)tableView:(id)arg1 cellForRowAtIndexPath:(NSIndexPath *)arg2;
  64. - (NSInteger)tableView:(id)arg1 numberOfRowsInSection:(NSInteger)arg2;
  65. @end
  66. @interface UIImage (ios13)
  67. + (id)systemImageNamed:(NSString *)arg1;
  68. @end
  69. @interface IconActionTableViewCell : UITableViewCell
  70. @end
  71. /* -- ASyncDisplayKit Interfaces -- */
  72. @interface _ASDisplayView : UIView
  73. @end
  74. @interface ASImageNode
  75. @property(strong, nonatomic) id image;
  76. @property(assign, nonatomic) CGRect frame;
  77. @property(strong, nonatomic) id view;
  78. - (CGRect)_frameInWindow;
  79. @end
  80. @interface ASTextNode
  81. @property(assign, nonatomic) CGRect frame;
  82. @property(strong, nonatomic) NSAttributedString *attributedString;
  83. @property(strong, nonatomic) NSAttributedString *attributedText;
  84. @end
  85. @interface ApolloButtonNode
  86. @property(strong, nonatomic) ASTextNode *titleNode;
  87. - (void) setAttributedTitle:(id)arg1 forState:(NSInteger)arg2;
  88. - (id) attributedTitleForState:(NSInteger)arg1;
  89. @end