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.

140 lines
3.4KB

  1. /* -- Comment Interfaces -- */
  2. @interface Comment
  3. @property(assign,nonatomic) id bodyRichTextAttributed;
  4. @property(assign,nonatomic) id pk;
  5. @end
  6. @interface CommentTreeNode
  7. @property(assign,nonatomic) id comment;
  8. //custom elements
  9. @property(assign,nonatomic) id commentTreeHeaderNode;
  10. @property(assign,nonatomic) id commentTreeCommandBarNode;
  11. @property(assign,nonatomic) BOOL isLoadingArchivedComment;
  12. @end
  13. @interface CommentTreeDisplayNode
  14. @property(assign,nonatomic) id commentNode;
  15. @end
  16. @interface CommentTreeHeaderNode
  17. @property(assign,nonatomic) id commentTreeNode;
  18. -(void) updateContentViewsForData:(id)arg1;
  19. @end
  20. @interface CommentTreeCommandBarNode
  21. @property(assign,nonatomic) id commentTreeNode;
  22. @property(assign,nonatomic) id delegate;
  23. @property(assign,nonatomic) UIView* view;
  24. @property(assign,nonatomic) id overflowButtonNode;
  25. @property(assign,nonatomic) CGRect frame;
  26. //custom elements
  27. @property(assign,nonatomic) id activityIndicator;
  28. @property(assign,nonatomic) id undeleteButton;
  29. @end
  30. @interface CommentActionSheetViewController : UIViewController
  31. @property(assign,nonatomic) id comment;
  32. @property(assign,nonatomic) id commentTreeNode;
  33. -(id)animationControllerForDismissedController:(id) arg1;
  34. @end
  35. /* -- Post Interfaces -- */
  36. @interface Post
  37. @property(assign,nonatomic) id author;
  38. @property(assign,nonatomic) BOOL isSelfPost;
  39. @property(assign,nonatomic) id selfText;
  40. @property(assign,nonatomic) id selfTextAttributed;
  41. @property(assign,nonatomic) id selfPostRichTextAttributed;
  42. @end
  43. @interface PostDetailViewController
  44. @property(assign,nonatomic) id selfTextNode;
  45. -(void) configureSelfTextNode;
  46. //custom elements
  47. @property(assign,nonatomic) id feedPostTextWithThumbnailNode;
  48. @property(assign,nonatomic) id feedPostDetailCellNode;
  49. @end
  50. @interface PostActionSheetViewController : UIViewController
  51. @property(assign,nonatomic) id post;
  52. @property(assign,nonatomic) id postActionSheetDelegate;
  53. @end
  54. @interface PostDetailNavigationItemHandler
  55. @property(assign,nonatomic) id controller;
  56. @property(assign,nonatomic) id presenter;
  57. @end
  58. @interface FeedPostDetailCellNode
  59. @property(assign,nonatomic) id textNode;
  60. @property(assign,nonatomic) id delegate;
  61. @end
  62. @interface FeedPostDetailDelegator
  63. @property(assign,nonatomic) id viewController;
  64. @end
  65. /* -- Other Interfaces -- */
  66. @interface RichTextDisplayNode
  67. @property(assign,nonatomic) id attributedText;
  68. @end
  69. @interface RUIActionSheetItem : NSObject
  70. @property(assign,nonatomic) id leftIconImage;
  71. -(id) initWithLeftIconImage:(id) arg1 text:(id) arg2 identifier:(id) arg3 context:(id) arg4;
  72. @end
  73. @interface RUITheme
  74. @property(assign,nonatomic) id bodyTextColor;
  75. @end
  76. @interface NSAttributedStringMarkdownParser
  77. +(id) currentConfig;
  78. +(id) attributedStringUsingCurrentConfig:(id) arg1;
  79. -(id) attributedStringFromMarkdownString:(id) arg1;
  80. -(id) initWithConfig:(id) arg1;
  81. @end
  82. @interface ThemeManager
  83. @property(assign,nonatomic) id dayTheme;
  84. @property(assign,nonatomic) id nightTheme;
  85. -(id) initWithTraitCollection:(id) arg1 appSettings:(id) arg2;
  86. @end
  87. @interface AppSettings
  88. +(id) sharedSettings;
  89. @end
  90. /* -- ActivityIndicator Interfaces -- */
  91. @interface AccountManager
  92. @property(assign,nonatomic) id defaults;
  93. +(id) sharedManager;
  94. @end
  95. @interface _ASCollectionViewCell
  96. @property(assign,nonatomic) id node;
  97. @end
  98. @interface CellDisplayNodeWrapper
  99. @property(assign,nonatomic) id contentNode;
  100. @end