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.

61 lines
1.4KB

  1. /* -- Voteable Interfaces -- */
  2. @interface VoteableElement
  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 CommentOptionsDrawerView
  31. @property(strong, nonatomic) NSMutableArray *buttons;
  32. @property(assign, nonatomic) BOOL isPostHeader;
  33. @property(strong, nonatomic) id delegate;
  34. -(void) addButton:(id) arg1;
  35. //custom elements
  36. @property(strong, nonatomic) Comment *comment;
  37. @property(strong, nonatomic) Post *post;
  38. @property(strong, nonatomic) CommentPostHeaderNode *commentNode;
  39. @end
  40. /* -- Other Interfaces -- */
  41. @interface MarkupEngine
  42. +(id) markDownHTML:(id) arg1 forSubreddit:(id) arg2;
  43. @end
  44. @interface Resources
  45. +(BOOL) isNight;
  46. @end