Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

126 lines
3.1KB

  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 NSAttributedStringMarkdownParser
  74. +(id) currentConfig;
  75. +(id) attributedStringUsingCurrentConfig:(id) arg1;
  76. -(id) attributedStringFromMarkdownString:(id) arg1;
  77. -(id) initWithConfig:(id) arg1;
  78. @end
  79. /* -- ActivityIndicator Interfaces -- */
  80. @interface AccountManager
  81. @property(assign,nonatomic) id defaults;
  82. +(id) sharedManager;
  83. @end
  84. @interface _ASCollectionViewCell
  85. @property(assign,nonatomic) id node;
  86. @end
  87. @interface CellDisplayNodeWrapper
  88. @property(assign,nonatomic) id contentNode;
  89. @end