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.4KB

  1. /* -- Voteable Interfaces -- */
  2. @interface VoteableElement : NSObject
  3. @property(strong, nonatomic) NSString *ident;
  4. @property(strong, nonatomic) NSString *author;
  5. @end
  6. @interface Comment : VoteableElement
  7. @property(strong, nonatomic) NSString *body;
  8. @property(strong, nonatomic) NSString *bodyHTML;
  9. @end
  10. @interface Post : VoteableElement
  11. @property(strong, nonatomic) NSString *selftext;
  12. @property(strong, nonatomic) NSString *selftextHtml;
  13. @property(assign, nonatomic) BOOL selfPost;
  14. @end
  15. /* -- UI Interfaces -- */
  16. @interface NCommentCell
  17. @property(strong, nonatomic) Comment *comment;
  18. @end
  19. @interface NCommentPostHeaderCell
  20. @property(strong, nonatomic) Post *post;
  21. @property(strong, nonatomic) id node;
  22. @end
  23. @interface CommentsViewController
  24. -(void) respondToStyleChange;
  25. @end
  26. @interface CommentPostHeaderNode
  27. @property(strong, nonatomic) Comment *comment;
  28. @property(strong, nonatomic) Post *post;
  29. @end
  30. @interface CommentNode
  31. @property(strong, nonatomic) Comment *comment;
  32. @property(strong, nonatomic) Post *post;
  33. @end
  34. @interface CommentOptionsDrawerView
  35. @property(strong, nonatomic) NSMutableArray *buttons;
  36. @property(assign, nonatomic) BOOL isPostHeader;
  37. @property(strong, nonatomic) id delegate;
  38. @property(strong, nonatomic) id node;
  39. -(void) addButton:(id) arg1;
  40. @end
  41. /* -- Other Interfaces -- */
  42. @interface MarkupEngine
  43. +(id) markDownHTML:(id) arg1 forSubreddit:(id) arg2;
  44. @end
  45. @interface Resources
  46. +(BOOL) isNight;
  47. @end